Overview
**NOTE: This plug-in is deprecated and no longer recommended for use for sites running on Appian 21.4 or later. The functionality of this component is available in Appian without installing the plug-in. You can use a!update() and a!keys() in Appian 21.4 or later.**
Dictionaries are one of the most useful data structures available in Appian. This plug-in provides tools to dynamically create dictionaries from key-value pairs, update dictionaries with new values (including nested dictionaries), and understand what keys are available in a dictionary to help with dynamic control.
Key Features & Functionality
FUNCTIONS
DEPRECATED FUNCTIONS
Is it expected that createdictionary would return the resulting dictionary list in the order of the provided keys? For example createdictionary( keys: { today(), today()-1,...}, values: { 0, 0,.. } ) , depending on the number of days added to keys and values the order appears to be nondeterministic.
joinCdt has been deprecated in the latest version due to functional issues and lack of interest. It will continue to work as it did but will no longer be discoverable or maintained. There are some great new functions though!
expandCdt has been deprecated in the latest version due to functional issues and lack of interest. It will continue to work as it did but will no longer be discoverable or maintained. There are some great new functions though!
joinCdt is not working in 18.4
I tried using the example given in the download and that did not even work:
local!a: { {a:1,b:{1,2}} , {a:2,b:2} },
local!b: { {c:1,d:5} , {c:3,d:6} },
joincdts("INNER", local!a, {"a"}, local!b, {"d"}, "a", "c", "a", "b")
get the following error: Expression evaluation error at function 'joincdts'
Hi,
I am trying to expand my CDT using expandcdt() function. It is given that the expand field parameter accepts input in "???function.expandcdt.param.expandField.description???" format. I am unable to figure out the input.
My CDT structure looks something like below,
empId: ""
empDepartment: Department(nested CDT)
dId:
dName: ""
empGender: Gender(nested CDT)
gId:
gName: ""
lastName: ""
firstName: ""
Could you please help me with an example.
Thanks in advance.