S
Shiva Duriseati
Guest
Hi Navjot, Thanks for the clarification. Let's break this into an example. Ex: Assume we have A,B and C objects of which A and B are related as 1:M and C is a unrelated object. In the create new record page of A we have grid control of B.(As shown in below screenshot) Now we can map the Grid Data in object A to B(related) as well C(which is unrelated), this can be achieved in two ways. 1) Create a conversion map in object B against object C. And,once conversion map is ready create a trigger of type create new record and include this conversion map. Now whenever a record is created in B then the same record is been created in Object C. 2)Create a object script trigger and call Server Side API as follows. rbv_api.createRecord("C_object", {name:'{!name#text}'}); The above call does the same job as the previous method . Attaching app.xml for your reference I have created this app using method 1. Please let me know If this fit your requirement. Regards, Shiva (Please visit the site to view this file)
Continue reading...
Continue reading...