Hi Team,
have case details and applicant details record and updating few details and storing via write record smart service for multiple record type in the process model but have to get output primary key of 2 records and how to fetch it?
thanks
Discussion posts and replies are publicly visible
Appian documented this here..https://docs.appian.com/suite/help/25.4/Write_Records_Smart_Service.html#store-updated-data-from-multiple-record-types-in-custom-variablesIf this does not work, Create typed process variables - pv!caseDetailsUpdated (Type: Case Details)pv!applicantDetailsUpdated (Type: Applicant Details)
In Data -> Outputs tab, create 2 Custom Outputs:Expression: cast(recordType!CaseDetails, ac!RecordsUpdated) -> Target: pv!caseDetailsUpdatedExpression: cast(recordType!ApplicantDetails, ac!RecordsUpdated) -> Target: pv!applicantDetailsUpdatedthen access primary key for each record.