How to use multi select attribute an update in BMQL.
Summary:
We want to push the value of a multi select attribute into a data table using BMQL.
Content (please ensure you mask any confidential information):
results = bmql("UPDATE PrintOptionPrefs SET printOptions = 'ABC_attr', lineItemOptions = 'GHI_attr' WHERE username = $userName AND templateName = 'DEFAULT'");
here
ABC_attr and GHI_attr are multiselect attributes.
We want to update PrintOptionPrefs table with the menu entries from these ABC_attr and GHI_attr attributes.
Instead of the values of these attributes, we get literal values "ABC_attr" , "GHI_attr"
Version (include the version you are using, if applicable):
25A
Code Snippet (add any code snippets that support your topic, if applicable):
0