NEW TO APPIAN TRYING TO UPDATE A Multiple Coloumns in the Database Table

Hi everyone 

i have a Table ( the name of the table is creditrequest)

and im trying to understand how can i  update coloumns values in a specific row  (with a specific id of creditrequest )  after that i inserted a row of creditrequest in the db for exemple.

i use also an interface where i saved those values, in the purpose of update the table.

 

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to yanivb0001

    If your hope is to update a row that already exists in the DB, then you'll need to query the value of that row (and/or multiple rows you want) into the PV prior to arriving at the form.  Then on the form you can save new values into the desired specific parameters, and in the subsequent process flow you can write the new state to the DB. 

    In your screenshot here, it does not appear as if the Primary Key IDs are populated in your instance's PV, meaning when it writes the PV to the database next, it will write to new rows (with new PK IDs).

Children