write to multiple data store entity through process model.

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.

  Discussion posts and replies are publicly visible

Parents Reply
  • ={
    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.

Children