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

SHOW HIDE not working in ARS

AS5278
Regular Contributor II
Regular Contributor II

Hi All,

We have two dynamic attributes: 'module' and 'option'.

'module' is of type 'Single Select from SQL query' and has possible values ->

Oracle HCM, Oracle Planning Cloud, Oracle RMCS, Oracle OSMC

We have a requirement that the DA 'option' which is of type 'boolean'(toggle btn), should appear only when 'Oracle HCM' is selected in DA 'module'. If anything else is selected in 'module' the 'option' DA should stay hidden.

I tried implementing this by following below steps:

1). Defined 'module' DA with parent change action as 'Mapping' and Action string as below:

SHOW###option###Oracle HCM___HIDE###option###Oracle Planning Cloud___HIDE###option###Oracle RMCS___HIDE###option###Oracle OSMC

Default value in 'module' will be 'Oracle HCM'.

2). Defined 'option' DA with parent as 'module' and Parent change action as 'Mapping'.

AS5278_0-1714680992960.png

AS5278_1-1714681017220.png

 

But this is not working. As soon as I select any other option from 'module' drop-down,, the ARS page goes completely blank and there are no error in logs as well.

I am unable to figure out what is wrong. Please advice.

Thanks,

Atul Singh

 

xurde
2 REPLIES 2

rushikeshvartak
All-Star
All-Star

Its working as expected.

Module :

Query : SELECT 'Oracle HCM' AS id from dual UNION SELECT 'Oracle Planning Cloud' AS id from dual UNION SELECT 'Oracle RMCS' AS id from dual UNION SELECT 'Oracle OSMC' AS id from dual

Default Value :  SELECT 'Oracle HCM' AS id from dual 

Action String : SHOW###option###Oracle HCM___HIDE###option###Oracle Planning Cloud___HIDE###option###Oracle RMCS___HIDE###option###Oracle OSMC

rushikeshvartak_0-1714705907895.png

 

rushikeshvartak_1-1714705988240.png

On Page Load 

rushikeshvartak_2-1714706007794.png

 

Changing option

rushikeshvartak_3-1714706054165.png

 


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

Raghu
All-Star
All-Star

@AS5278  in option DA use below action string

SHOW###module###Oracle HCM___HIDE###module###Oracle Planning Cloud___HIDE###module###Oracle RMCS___HIDE###module###Oracle OSMCSHOW###note###TRUE___HIDE###note###FALSE___###note###NONE___SHOW


Thanks,
Raghu
If this reply answered your question, Please Accept As Solution and hit Kudos.