Hi,I'm new to appian. I created a simple employee onboarding form (1 wrapper interface contains 3 sub interfaces(personal details,address,bank).when i click submit all 3 tables in DB needs to be updated uing write to multi data store entity in interfaces itself(not using process models).the problem i'm facing is once employee details submitted then we get primary key(emp id) this needs to updated in other 2 tables(address,bank) parallelly. i dont know how to configure the on success parameter for doing this.
Discussion posts and replies are publicly visible
You'll need to create a process with 3 Write Record nodes and call it using startProcess instead of writeToMultiStoreEntity in the saveInto.
Is there any way to write into DB from interface itself without using process model?