on 2021 Apr 22 7:50 AM
OData Console is a great tool for calling requests etc. I would like to know how to do batch calls from the console itself. The part that I am confused about is how to link the related fields between collections (i.e Parent Object ID)
Example Scenario:
Lead Creation including a Z1 party role into Sales Team.
Help others by sharing your knowledge.
AnswerRequest clarification before answering.
The answer is to use DEEPINSERT, at least for the same object and its child entities.
I selected the deep insert method and pasted the following payload.
{
"Name": "Your ticket subject",
"ProcessingTypeCode": "SRRQ",
"DataOriginTypeCode": "4",
"BuyerPartyID": "10000",
"BuyerMainContactPartyID": "20000",
"ServicePriorityCode": "1",
"ServiceRequestUserLifeCycleStatusCode": "1",
"ObjectServiceIssueCategoryID": "CA_01_01",
"IncidentServiceIssueCategoryID": "CA_01",
"ServiceIssueCategoryID": "CA",
"ServiceRequestTextCollection": [
{
"FormattedText": "text",
"TypeCode": "10004"
}
],
"ServiceRequestBusinessTransactionDocumentReference": []
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.