Assigning selectable object in reference set selector

0
In reference set selector in selectable object i need to set an xpath to filter ,the attributes that are already selected should not get listed again only the unassigned attribute should be displayed how can that be done
asked
1 answers
0

The simplest solution is to create additional attribute: “Selected” of the type Boolean, with default as False, in the entity from where you are selecting the values. Once its selected, update this value to True.

In your reference set selection, then your Xpath only needs to have “Selected=false’

 

In case, you wouldn’t like to add this attribute, then your XPath will need to check for the association between the two entities exists or not for this particular record. This might get a bit tricky.

answered