Saviynt unveils its cutting-edge Intelligence Suite products to revolutionize Identity Security!
Click HERE to see how Saviynt Intelligence is transforming the industry.
Saviynt Copilot Icon

Workflow variable for account name

mridulutkarsh
New Contributor II
New Contributor II

Hello

I need to include the account name variable in Workflow. Based on account name selection (normal / adm), we have to route for approval.

What attribute needs to be specified for accountname in Workflow configuration.

Thanks in advance!

Regards,

Mridul Utkarsh

7 REPLIES 7

mridulutkarsh
New Contributor II
New Contributor II

Tried below attributes . which didn't work:

account.name.contains('ADM')

accountName.contains('ADM')

accountName.contains('ADM') eq true

task.accountName.contains('ADM')accountsMap.get(requestaccesskey).name.contains('ADM') eq true

smitg
Regular Contributor III
Regular Contributor III

Hi @mridulutkarsh 

Can you try 

accounts.name.contains('ADM')
or
accountsMap.get(requestaccesskey).name.contains('ADM')

Thanks,
Smitha

mridulutkarsh
New Contributor II
New Contributor II

Hi Smitha, 

I tried both from above, it didn't work.

 

Error Detail
Unexpected Error occurred Please try later

smitg
Regular Contributor III
Regular Contributor III

Hope you tried 'accounts.name' coz I dont see it in your previous post there you mentioned account.name 

dgandhi
All-Star
All-Star

Can you try below?

accountsMap.get(requestaccesskey).name == 'ADM'
accounts.get(requestaccesskey).name == 'ADM'

Hope you are using Parallel Workflow.

Below document for reference:

https://docs.saviyntcloud.com/bundle/SSM-Admin-v55x/page/Content/Chapter11-Workflows/Workflow-Compon...

 

Thanks,
Devang Gandhi
If this reply answered your question, please Accept As Solution and give Kudos to help others who may have a similar problem.

Hi Devang,

I tried below queries , none worked. And yes its a parallel workflow.

 

account.name.contains('ADM')
accountName.contains('ADM')
accountName.contains('ADM') eq true
task.accountName.contains('ADM')
accountsMap.get(requestaccesskey).name.contains('ADM')
accounts.name.contains('ADM')
accounts.get(requestaccesskey).name.contains('ADM')

 

Error Detail
Unexpected Error occurred Please try later...

Thank you,

Mridul

rushikeshvartak
All-Star
All-Star

Use dynamic attributes. account name might not be exposed 


Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.