Hi Dave,
Thank you for the quick reply!!
We are using v13.3 version of clarity, and browsers IE-10 & Firefox
Steps to reproduce the issue:
1) Create a static dependent lookup with 2 levels --> Lookup1
2) Add this lookup to a Custom attribute (Data type: Multivalued Lookup) on the project object (with Entry and Exit as Level1) --> Attribute 1
3) Create a parameterized dynamic lookup, which is referring to above Attribute. --> Lookup2
4) Add this dynamic lookup to a custom attribute (Data type: Multivalued Lookup) on the project object (with Lookup Parameter Mappings as Attribute 1) --> Attribute 2
5) Configure both attributes in project Edit layout.
Issue:
Once we select values in attribute 1, corresponding level 2 values will be present in the attribute 2. Till here it is fine.
Once I select the values in the attribute 2 and hit Save\Save and Return. The values in attribute 2 are no longer visible. But we can see these values on the Database level.
One more observation: When enabled audit trail on the attribute 2, the old and new values are showing blank.
Below is the dynamic lookup script used for attribute 2 (lookup 2)
SELECT @SELECT:lookup_code:lookup_code@,
@select:name:name@
from (SELECT lookup_code, name FROM cmn_lookups_v
WHERE language_code='en' and lookup_type='AD_ASSET'
AND is_active = 1
AND parent_lookup_code in (select lookup_code from cmn_lookups_v where
language_code='en' and lookup_type='AD_PLANT'
and lookup_code = (@WHERE:PARAM:USER_DEF:STRING:z_plnt_asset@))
)Where @FILTER@
Regards,
Sandeep.