Forum Post: RE: Create Object Records Via Trigger than then creates records on another object

  • Thread starter Thread starter Orchid Corpin
  • Start date Start date
Status
Not open for further replies.
O

Orchid Corpin

Guest
You can use Data map Conversion Map Trigger 1: Create a trigger with type "Create New Record" and use the created Conversion Map (if you are creating multiple records do not specify a timing to this, put that in trigger 2). Specify name on Integration name e.g. "trigger1". Trigger 2: Create a trigger with type "Object Script" and you can loop inside this trigger. e.g. below code. for(i=0; i 10; i++) { rbv_api.runTrigger("currentObject", {!id}, "trigger1"); //This will run trigger 1 } Do this on Object 2 too. Let me know if you still have trigger error. Regards, Orchid

Continue reading...
 
Status
Not open for further replies.
Back
Top