cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

CHANGESET_PROCESS - Defer Mode

omi1
Explorer
0 Likes
1,990

All the CRUD methods, EXECUTE_ACTION method, CREATE_DEEP_ENTITY method, CREATE_STREAM etc.. can be implemented inside CHANGESET_PROCESS using defer mode. Hence, can we say that it is best approach to always implement CAHNGESET_PROCESS instead of all other methods in DPC_EXT ?

View Entire Topic
Andre_Fischer
Product and Topic Expert
Product and Topic Expert

Yes, if you have simple operations you should just implement the simple CREATE_ENTITY , ... methods.

I agree that there are definitely advantages when dealing with multiple payloads at once. (That's what we have built it for ;-)). For example if you want to support content id referencing.

But if you have a simple application I would recommend to stick to the basic methods.

Best regards,

Andre

omi1
Explorer
0 Likes

Thank you Andre, that answers my question.