cancel
Showing results for 
Search instead for 
Did you mean: 

Failed to Select dependencies of a process

vinodchinthakin
Level 9
HI

While make a Release file, I failed to select dependencies of a process on BP 7.1.1
It throws following error. 

18717.png

I tried for different processes as well. Got same error while selecting dependencies.
Any one assist here.

------------------------------
vinod chinthakindi
------------------------------
11 REPLIES 11

Thanks @Eric Wilson,

I was able to follow an online guide to get the list of dependencies by

  • Clicking on the Edit Button inside Process Studio
  • Clicking on Dependencies
  • Expanding the "Objects" section.
  • Successfully exported a release via this route.

 In addition, I have also logged a support ticket as advised. 

Thanks



------------------------------
Kingsley David
------------------------------

Thanks @Eric Wilson and everyone else.

I logged it as a support ticket, and it turned out a particular VBO had two instances, which created the error.

This VBO was identified by this script provided by the Support Team.


SELECT name, COUNT(*)
FROM BPAProcess
GROUP BY name
HAVING COUNT(*) > 1

On deletion of the duplicate instance of that VBO, I was able to tick the "Export Dependencies" option and obtain successful exports.

Thanks again.



------------------------------
Kingsley David
------------------------------