OOTB activity to create a new operator ID record

Hello,

I want to create operator IDs by activity in background batch process. Per my research, CreateOperator activity seems to be a standard OOTB activity to reuse, but this activity has only limited parameters. I want to set first name, last name, full name, position, telephone, e-mail address, locale, timezone, workgroup, calendar, etc just like we create it from UI.

Is there any other approach other than calling this activity? What would be the best practice?

Regards,

Hi @CloeW938,

You can pass the parameters.

@KamineniSurya

Are you saying that I should create another new activity (Save As CreateOperator) and add parameters myself? That is one way but I was wondering if there is any better OOTB approach because setting first name, last name, full name, e-mail address, etc is very basic and I would expect that product has OOTB stuff rather than developer creating the activity by themselves.

Hi @CloeW938: Can you check if AddNewOperatorRecord helps.

Thanks.

Hi @CloeW938,

Yes.Exactly

@ArulDevan

AddNewOperatorRcord takes operatorType parameter.

I entered “User” for operatorType parameter.

I have created a DataTransform named “User” in advance as below.

I was able to create a specific operator ID. However, I would like to create ID dynamically rather than fixed one - let’s say, we have tempPage.pxResults in a clipboard and looping over this list, I would like to create many operator IDs. In order to do this, I need to pass information from temp.pxResults but I am unable to do this yet. Can you please show how to do this?

Regards,

@ArulDevan

Thanks, I was able to make it with your approach.

Hi @CloeW938: Can you try to set the data in the top level page within the loop and use the same page in your data transform?

Please let me know if this helps.

Thanks