Batching Updates: Difference between revisions
From Apps for Creatio
Created page with "Using JINT mode we can use scripting to batch inserts and updates (This uses the oData Batch api) jint di var creatiobatch=CreatioBatch(); var creatioRecord_contact = CreatioRecord('Contact'); creatioRecord_contact.Set("Name","Jane Doe"); creatioRecord_contact.Set("JobTitle","Head of Design"); creatioRecord_contact.mode="Insert"; creatiobatch.add(creatioRecord_contact); var creatioRecord_contact2 = CreatioRecord('Contact'); var id2 = di.getguid('contact','Frank Jones');..." |
No edit summary |
||
Line 1: | Line 1: | ||
Using JINT mode we can use scripting to batch inserts and updates (This uses the oData Batch api) | Using JINT mode we can use scripting to batch inserts and updates (This uses the oData Batch api) | ||
Revision as of 08:25, 5 June 2025
Using JINT mode we can use scripting to batch inserts and updates (This uses the oData Batch api)