Loop process with different credentials

HI
i have a working process in place that needs to run twice , picking a different password in the second loop.
If i want to put that in the recommended BP templates, what would be best practice, involving a get next item, to get that realised?

Thanks !
Ralph
 

sivagelli

Well-Known Member
You have to create two credentials under System -> Security -> Credentials.
Now, in the process, loop, you can use Internal Credentials VBO with Get action passing Credential Name as input to get the password.
 
Last edited:

sivagelli

Well-Known Member
hello,

Please share screenshot for better understanding/solution.
If it is only two times, you can use a data stage as counter and decision stage to achieve this.
 
Hi Sivagelli
please find attached...what it should do is go through the flow twice, where CONNECT contains three action stages to login with the three related credentials... Thanks !
 

Attachments

  • example.JPG
    48 KB · Views: 17

sivagelli

Well-Known Member
where CONNECT contains three action stages to login with

Looking at the screenshot, Connect is an action stage and i am assuming it is sending inputs to three different logins.

1. Store the credentials in Credential Manager.
2. In the process, Create a collection with Credential details, and add an action before Connect stage to get the Credential Properties using Internal Credentials VBO with Get action. So the flow will look like

Start
Loop Start
Action to get Credential Properties
Connect
.
.
.
Loop End
End
 
Top