Announcing the Saviynt Knowledge Exchange unifying the Saviynt forums, documentation, training,
and more in a single search tool across platforms. Read the announcement here.

Dynamic Attribute- Check box from multiselect

Sri1203
New Contributor II
New Contributor II

Hi,

we have dynamic attribute(company) created as multiselect. In ARS form, it showing that attribute as drop down. 

Requirement: Company attribute dropdown values wanted to show up as check box in the drop box so that user can select multiple companies or all from the drop down.

Can you advise how to achieve. 

Please note all companies are created as entitlement type

 

9 REPLIES 9

rushikeshvartak
All-Star
All-Star

Please share query and form screenshot


Regards,
Rushikesh Vartak
If you find the response useful, kindly consider selecting Accept As Solution and clicking on the kudos button.

Thank you for the response. Highlighted in yellow color where I am looking for check box .

Dynamic Attribute- 

select CONCAT(c1.customproperty1, ' : ',REPLACE(c1.Description,',',';')) as ID from customer c, users u ,customer c1 where u.userkey=${requestee} and u.jobcode=c.customproperty20 and c.customerkey = c1.parentcustomer and u.employeetype = 'employee' and c1.customproperty19 in('Open','Pre-Opening') and c1.customproperty1 not in ( '.' , '-','') and c1.customproperty1 is not null UNION select CONCAT(c1.customproperty1, ' : ',REPLACE(c1.Description,',',';')) as ID from customer c, users u , customer c1 where u.userkey=${requestee} and u.jobcode=c.customproperty21 and c.customerkey = c1.parentcustomer and u.employeetype = 'employee' and c1.customproperty19 in('Open','Pre-Opening') and c1.customproperty1 not in ( '.' , '-','') and c1.customproperty1 is not null UNION select CONCAT(c1.customproperty1, ' : ',REPLACE(c1.Description,',',';')) as ID from customer c, users u ,customer c1 where u.userkey=${requestee} and u.jobcode=c.customproperty20 and c.customproperty2 = c1.customproperty17 and c.customproperty3 in ('L', 'M', 'O') and u.employeetype = 'owner' and c1.customproperty19 in('Open','Pre-Opening') and c1.customproperty1 not in ( '.' , '-','') and c1.customproperty1 is not null UNION select CONCAT(c1.customproperty1, ' : ',REPLACE(c1.Description,',',';')) as ID from customer c, users u , customer c1 where u.userkey=${requestee} and u.jobcode=c.customproperty21 and c.customproperty3 in ('L', 'M', 'O') and c.customproperty2 = c1.customproperty17 and u.employeetype = 'owner' and c1.customproperty19 in('Open','Pre-Opening') and c1.customproperty1 not in ( '.' , '-','') and c1.customproperty1 is not null UNION select CONCAT(c.customproperty1, ' : ',REPLACE(c.Description,',',';')) as ID from customer c, users u where u.userkey=${requestee} and c.customproperty3 in ('L', 'M', 'O') and u.employeetype in ('Associate', 'Consultant' ) and c.customproperty1 not in ( '.' , '-', '')and c.customproperty1 is not null and c.customproperty19 in('Open','Pre-Opening')

Sri1203_1-1703256902620.png

 

 

Sri1203_0-1703256696020.png

 

so based on TakeCustomer Property Checklist - Company Entitlement type will be selected ? if yes share entitlement type configuration


Regards,
Rushikesh Vartak
If you find the response useful, kindly consider selecting Accept As Solution and clicking on the kudos button.

Sri1203
New Contributor II
New Contributor II

Pls ignore the ent type choice as it is missing few conditions.

We have above query with that dynamic attribute configurations, we can see below drop down with multi select. 

Sri1203_0-1704838661304.png

Requirement: Need check box for each item (with the option single item select and select all check box)

Sri1203_1-1704839067526.png

 

 

 

Sri1203
New Contributor II
New Contributor II

Yes. entitlement type is standard.  

Sri1203
New Contributor II
New Contributor II

Sri1203_0-1703273366022.png

 

You need to store dynamic attribute value in entitlements customproperty 

entitlement type- Requestable entitlements in ARS config - you need to add filter 

ev.customproperty1 IN (${DANAME})


Regards,
Rushikesh Vartak
If you find the response useful, kindly consider selecting Accept As Solution and clicking on the kudos button.

Pls ignore the ent type choice as it is missing few conditions.

We have above query with that dynamic attribute configurations, we can see below drop down with multi select. 

Sri1203_0-1704840828700.png

 

Requirement: Need check box for each item (with the option single item select and select all check box)

Sri1203_1-1704840828779.png

 

 

 

You can use request option as table 


Regards,
Rushikesh Vartak
If you find the response useful, kindly consider selecting Accept As Solution and clicking on the kudos button.