Skip to main content
shukurs0001
June 27, 2022
Question

write to multiple data store entity through process model.

  • June 27, 2022
  • 6 replies
  • 0 views

I have three flat cdt's. I need to sent the data(pv variables) to the entities at a time through process model. I can pass the data through the interface using a!writeToMultipleDatastoreEntity () smart service. But not through the process model. How can I configure in the process model.

6 replies

shukurs0001
June 27, 2022
={
a!entityData(entity: pv!ENTITY_OPPORTUNITIES,
 data: {pv!RadiationOpp,pv!NewBusinessOpp}),
a!entityData(entity: pv!ENTITY_ACCOUNT,
 data: {pv!AcmeAccount}),
a!entityData(entity:pv!ENTITY_AE_NOTES,
 data:{pv!ListOfNotesFromAccountExec})
}


In which parameter should I pass above expression.
Like in WRMDE smart service, it has valueToStore parameter (entity, data).
where should I write the above expression?

I have sent the data through the interface like below
a!writeToMultipleDataStoreEntities(
valuesToStore: {
a!entityData(
entity: cons!ELS_Application_Details_DSE,
data: ri!apldata_RI
),
a!entityData(
entity: cons!ELS_Borrower_Details,
data: ri!bwrData_RI
),
a!entityData(
entity: cons!ELS_document_Details,
data: ri!docData_RI
)
}
)

But unable to configure in Process model.

stefanhelzle0001
Brainy
June 27, 2022

Tab Data -> Inputs -> Value to store

Same as with the smart service function.