Hi Team,
We are trying to update a list within a data type pyEdit view. The list contains information related to Data-Admin-Operator-ID class details and its associated Work Queues, which are mapped to a list within the data type. We have a checkbox on the pyEdit view to select or deselect the current operator’s work queues. However, when the update action is triggered through the Savable Data Page, we are not able to see those updated details.
Whenever the view is loading, the structure correctly displays the full list and looks like this:
{
“data”: {
“dataInfo”: {
“content”: {
“classID”: “Org-Div-Data-UpdateOperator”,
“pyEmailAddress”: “[email protected]”,
“UserIdentifier”: “[email protected]”,
“pyUserName”: “XYZianne”,
“WorkQueueList”: [
{
“classID”: “Org-Div-Data-UpdateOperator”,
“pySelected”: false,
“UserWorkQueue”: “WQ:AV”,
“EmbedListUUID__”: “5c27be17-dd37-44b9-8865-a1bcf7d7bc79”
},
{
“classID”: “Org-Div-Data-UpdateOperator”,
“pySelected”: false,
“UserWorkQueue”: “WQ:T1-JLL”,
“EmbedListUUID__”: “8dabca52-c810-4560-b875-8551c58179e3”
},
{
“classID”: “Org-Div-Data-UpdateOperator”,
“pySelected”: false,
“UserWorkQueue”: “WQ:T1-RevOps”,
“EmbedListUUID__”: “573af7f2-995f-486e-9528-9468bbe1c5fa”
},
{
“classID”: “Org-Div-Data-UpdateOperator”,
“pySelected”: false,
“UserWorkQueue”: “WQ:T2-Retail Ops”,
“EmbedListUUID__”: “db977186-98b4-449d-8b30-2c1a3155e477”
},
{
“classID”: “Org-Div-Data-UpdateOperator”,
“pySelected”: false,
“UserWorkQueue”: “WQ:RSM”,
“EmbedListUUID__”: “7ad15a87-8740-46c5-9da6-f5815d4a2eef”
},
{
“classID”: “Org-Div-Data-UpdateOperator”,
“pySelected”: false,
“UserWorkQueue”: “WQ:T2-ROps”,
“EmbedListUUID__”: “44d443ec-8714-491f-af73-052835583c3e”
}
]
}
}
}
}
On update action:
{
“data”: {
“UserIdentifier”: “[email protected]”,
“pyEmailAddress”: “[email protected]”,
“pyUserName”: “Jogn Doe”,
“StoreLocation”: {
“Region”: “North America”,
“Country”: “USA”,
“State”: “DC”,
“City”: “Williamsburg”,
“Store”: “Williamsburg”
},
“WorkGroup”: “”
},
“pageInstructions”: [
{
“content”: {
“pySelected”: true
},
“target”: “.WorkQueueList”,
“listIndex”: 7,
“instruction”: “UPDATE”
},
{
“content”: {
“pySelected”: true
},
“target”: “.WorkQueueList”,
“listIndex”: 8,
“instruction”: “UPDATE”
}
]
}


