コミュニティアチーブメントバーを展開する。

Submissions are now open for the 2026 Adobe Experience Maker Awards

Mark Solution

この会話は、活動がないためロックされています。新しい投稿を作成してください。

解決済み

Write collection : Sub-operation of operation

Avatar

Level 10

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 受け入れられたソリューション

Avatar

正解者
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

元の投稿で解決策を見る

2 返信

Avatar

正解者
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

Level 10
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