Skip to main content
July 8, 2023
Question

writeToMultiDataStoreEntity error in interface

  • July 8, 2023
  • 6 replies
  • 0 views

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.

    6 replies

    mathieud0001
    Brainy
    July 9, 2023

    You'll need to create a process with 3 Write Record nodes and call it using startProcess instead of writeToMultiStoreEntity in the saveInto.

    July 9, 2023

    Is there any way to write into DB from interface itself without using process model?