I have two records. I prepared the data attached. The records are: one is LTM GROUP and the other is LTM USER. Both are related records.
I have heard that we can store data in the base and related child record in one shot.
As GroupId is the primary key in LTM Group (autogenerated), plus LTM User has a foreign key named userGroupId, and obviously, this table also has a primary key userId which is autogenerated.
Can you please help me with storing data in tables with the help of writing records in a single shot?
/*Group*/ { recordType!LTM GROUP( LTM Group.applicationkey : 1, LTM Group.appiangroupkey : 25, LTM Group.name : "Admin", LTM Group.updatedby : "rt343", LTM Group.addedby : "rt343", LTM Group.dateadded : fn!date(2025, 2, 25), LTM Group.disabled : false ), recordType!LTM GROUP( LTM Group.applicationkey : 1, LTM Group.appiangroupkey : 26, LTM Group.name : "RTR User", LTM Group.updatedby : "rt567", LTM Group.addedby : "rt567", LTM Group.dateadded : fn!date(2025, 2, 25), LTM Group.disabled : false )}, /* User */ { recordType!LTM USER( LTM User Detail.applicationkey : 1, LTM User Detail.appianGroupKey : 25, LTM User Detail.module : "rt567", LTM User Detail.username : "Abhi", LTM User Detail.disabled : false, LTM User Detail.updatedby : "hdfgd", LTM User Detail.addedby : "hdfdf", LTM User Detail.status : "true", LTM User Detail.dateadded : fn!date(2025, 2, 25) ), recordType!LTM USER( LTM User Detail.applicationkey : 1, LTM User Detail.appianGroupKey : 25, LTM User Detail.module : "ak94718", LTM User Detail.username : "Arman", LTM User Detail.disabled : false, LTM User Detail.updatedby : "rt567", LTM User Detail.addedby : "rt567", LTM User Detail.status : "true", LTM User Detail.dateadded : fn!date(2025, 2, 25)) }
Discussion posts and replies are publicly visible
The "trick" is, to populate the defined relationship with the other records. Appian will then take care of generating the PK values as well as the FK values.
Make sure to configure the relationship to allow writes.
This might be helpful
https://docs.appian.com/suite/help/24.4/manage-record-data.html#create-records-and-related-records
hi Klaus34 I have inserted an image below. Of how you can add your code for record relationships
The yellow highlighted values are related -records, and you can see on the right side of the image how it saves relationship data in the rule inputs. and if you wanted attached this in some process and run it, you can go through the link given by Mathieu Drouin