Expand my Community achievements bar.

Announcing the launch of new sub-community for Campaign Web UI to cater specifically to the needs of Campaign Web UI users!
SOLVED

Write collection : Sub-operation of operation

Avatar

Community Advisor

Hi all,

 

below is collection which insert or update some Test table.

 

milanv69354962_0-1581084994245.png

 

How to achieve for marked field eventDate, when operation is Update, to skip update of this field?

So when operation is Insert all fields are inserted but when operation is Update skip only update of the field eventDate but perform update on other fields?

 

This is easy to achieve when GUI is used but how to do it in the JS code?

 

Regards,

Milan

 

 

 

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi,

 

In e4x you don't need to call the new XML() constructor on inlined xml (no-op), the xml can be inlined directly with the code.

The @lastModified field is managed by xtk and so can't be updated via xtk.

What you have there is correct otherwise, operation="insertOrUpdate" is upsert in Campaign.

Are you asking about applying the attributes enabledIf and enabledOperation from the workflow update activity?

 

Thanks,

-Jon

View solution in original post

2 Replies

Avatar

Correct answer by
Community Advisor

Hi,

 

In e4x you don't need to call the new XML() constructor on inlined xml (no-op), the xml can be inlined directly with the code.

The @lastModified field is managed by xtk and so can't be updated via xtk.

What you have there is correct otherwise, operation="insertOrUpdate" is upsert in Campaign.

Are you asking about applying the attributes enabledIf and enabledOperation from the workflow update activity?

 

Thanks,

-Jon

Avatar

Community Advisor
Hi @Jonathon_wodnicki, I am looking how use enabledOperation from workflow update in this JS code. In case of update, to skip update of one field only. Thanks