The CreatorCon Call for Content is officially open! Get started here.

How to add a record to an update set via script

kartikey
Tera Contributor

Hi Everyone,

I want to know how do i add a record to an update set via script?
The update set is not necessarily my current update set.

Regards,
Kartikey

3 REPLIES 3

Maik Skoddow
Tera Patron
Tera Patron

HI Maik,

like i mentioned, the update set is not necessarily my current update set .

regards,
Kartikey

Hi @kartikey 

you can specify the required update set via its Sys ID

 

var objUSM = new GlideUpdateManager2();

objUSM.loadUpdateSet(SYS_ID_OF_UPDATE_SET);

 

Maik