Hi,
I am having two business classes which are not linked/in context by any means. One is standard and other is cusom business class. When I tried to create a record in Location A business class with specific checkbox( for reference we can call it a boolean field) checked, record should get created with same credentials in Location P business class. This should be happening only when the checkbox field is checked in Location A business class. Same should be applicable for Update action as well. Can anyone help on the syntax?
I have tried in the following way:
Created one-to-one relation from Location A to Location P business class -- Testrel
if(Boolean1)
invoke Create Testrel
invoked.Company = Company
invoked.LocationP1 = LocationA1
FYI, this patch worked for me in Update action, but it's not triggering for Create action. Any ideas/suggestions on why it's not working for Create action?