Get all message definitions

get

/fscmRestApi/resources/11.13.18.05/b2bMessageDefinitions

Request

Query Parameters
  • When this parameter is provided, the specified children are included in the resource payload (instead of just a link). The value of this query parameter is "all" or "". More than one child can be specified using comma as a separator. Example: ?expand=Employees,Localizations. Nested children can also be provided following the format "Child.NestedChild" (Example: ?expand=Employees.Managers). If a nested child is provided (Example: Employees.Managers), the missing children will be processed implicitly. For example, "?expand=Employees.Managers" is the same as "?expand=Employees,Employees.Managers" (which will expand Employees and Managers).
  • This parameter filters the resource fields. Only the specified fields are returned, which means that if no fields are specified, no fields are returned (useful to get only the links). If an indirect child resource is provided (Example: Employees.Managers), the missing children will be processed implicitly. For example, "?fields=Employees.Managers:Empname" is the same as "?fields=;Employees:;Employees.Managers:Empname" (which will only return the "Empname" field for Managers). the value of this query parameter is a list of resource fields. The attribute can be a direct (Example: Employees) or indirect (Example: Employees.Managers) child. It cannot be combined with expand query parameter. If both are provided, only fields will be considered.

    Format: ?fields=Attribute1,Attribute2

    Format for fields in child resource: ?fields=Accessor1:Attribute1,Attribute2
  • Used as a predefined finder to search the collection.

    Format: ?finder=<finderName>;<variableName>=<variableValue>,<variableName2>=<variableValue2>

    The following are the available finder names and corresponding finder variables:

    • PrimaryKey: Finds message definitions according to the unique message identifier.
      Finder Variables:
      • MessageId; integer; Value that uniquely identifies the collaboration message. It's a primary key that the application generates when it creates a message definition record. This attribute is required.
    • findByMessageName: Finds message definitions according to the unique message name.
      Finder Variables:
      • MessageName; string; Name of the collaboration message.
    • findByProviderOrNullProvider: Finds message definitions based on the provider or when the provider is null.
      Finder Variables:
      • bindProviderId; integer; Value that uniquely identifies the provider associated with the message definition.
    • findByWord: Finds message definitions based on the provided text.
      Finder Variables:
      • SearchTerms; string; Text used to search for message definitions.
    • hcmSearch: Finds all the message definitions that match the message name, GenericXsltFileName, messaging standard, user-defined flag, document ID, service provider ID, and direction.
      Finder Variables:
      • bindDirection; string; Value that identifies the direction of the message definition.
      • bindDocumentId; integer; Value that unqiuely identifies the document associated with the message definition.
      • bindInput; string; Values provided to search for message definitions may include the message name or the generic XSL file name.
      • bindMessageStandard; string; Message standard of the collaboration message.
      • bindServiceProviderId; integer; Value that uniquely identifies the service provider associated with the message definition.
      • bindUserDefined; string; Value that indicates whether the message definition is user-defined.
  • This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.
  • This parameter can be used to show only certain links while accessing a singular resource or a resource collection. The parameter value format is a comma-separated list of : <link_relation>

    Example:
    self,canonical
  • Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.
  • The resource item payload will be filtered in order to contain only data (no links section, for example).
  • This parameter orders a resource collection based on the specified fields. The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and "asc" or "desc". Specify "asc" for ascending and "desc" for descending. The default value is "asc". For example, ?orderBy=field1:asc,field2:desc
  • This query parameter defines the where clause. The resource collection will be queried using the provided expressions. The value of this query parameter is one or more expressions. Example: ?q=Deptno>=10 and <= 30;Loc!=NY

    Format: ?q=expression1;expression2

    You can use these queryable attributes to filter this collection resource using the q query parameter:
    • ApplicationPartnerCodeXpath; string; Value that stores the sender application partner code cross reference path.
    • AttachmentsFlag; boolean; Contains one of the following values: true or false. If true, then the document supports attachments. If false, then the document doesn???t support attachments. The default value is false.
    • DefaultEmailSubject; string; Subject of the message email, for example Purchase Order.
    • Direction; string; Value that indicates the direction of the message, either inbound or outbound.
    • DirectionDescription; string; Description for the direction of the message.
    • DocumentDescription; string; Description of the transient collaboration document.
    • DocumentId; integer; Value that uniquely identifies the collaboration document.
    • DocumentName; string; Name of the collaboration document associated with the message definition.
    • DocumentType; string; Value that uniquely identifies the type of document being sent, such as 'ProcessPurchaseOrder'.
    • DocumentTypeDescription; string; Type of document being sent, such as a Process Purchase Order.
    • ExternalMessageTypeId; integer; Value that uniquely identifies the external message definition associated with the collaboration message definition.
    • ExternalMessageTypeName; string; Name of the external message definition associated with the collaboration message definition.
    • GenericXsltFileName; string; Name of the XSLT file that contains the transformation to be applied, if any, for the message.
    • MessageDescription; string; Description of the collaboration message definition.
    • MessageId; integer; Value that uniquely identifies the collaboration message definition.
    • MessageName; string; Name of the collaboration message definition.
    • MessageStandard; string; Value that identifies the code of the messaging standard.
    • MessageStandardDescription; string; Value that describes the messaging standard; for example, OracleB2B.
    • MessageSubtype; string; A unique value used to identify a message when multiple messages share the same root element.
    • MessageType; string; The name of a unique XML schema definition for a document, representing the root element of the payload, such as Process Purchase Order.
    • MessageVersion; string; Version of the message standard, for example 10.1.
    • ObjectKeyXpath; string; Value that identifies the XPath expression locating the object key in an XML payload. For example, the invoice number is the object key in the invoice XML file.
    • RecipientEmailXpath; string; Path that identifies the email recipient in the payload.
    • ServiceProviderName; string; Name of the service provider that the message definition was created for.
    • UserDefinedFlag; boolean; Value that indicates whether the message definition is predefined. Contains one of the following values: true or false. If true, it is a predefined message; if false, it is a user-created message
  • The resource collection representation will include the "estimated row count" when "?totalResults=true", otherwise the count is not included. The default value is "false".
Header Parameters
  • If the REST API supports runtime customizations, the shape of the service may change during runtime. The REST client may isolate itself from these changes or choose to interact with the latest version of the API by specifying this header. For example: Metadata-Context:sandbox="TrackEmployeeFeature".
  • The protocol version between a REST client and service. If the client does not specify this header in the request the server will pick a default version for the API.

There's no request body for this operation.

Back to Top

Response

Supported Media Types

Default Response

The following table describes the default response for this task.
Headers
  • If the REST API supports runtime customizations, the shape of the service may change during runtime. The REST client may isolate itself from these changes or choose to interact with the latest version of the API by specifying this header. For example: Metadata-Context:sandbox="TrackEmployeeFeature".
  • The protocol version between a REST client and service. If the client does not specify this header in the request the server will pick a default version for the API.
Body ()
Root Schema : b2bMessageDefinitions
Type: object
Show Source
Nested Schema : Items
Type: array
Title: Items
The items in the collection.
Show Source
Nested Schema : b2bMessageDefinitions-item-response
Type: object
Show Source
Nested Schema : B2B Location Assignments
Type: array
Title: B2B Location Assignments
Details of the bill-to and ship-to location assignments configured for a message definition.
Show Source
Nested Schema : Email Properties
Type: array
Title: Email Properties
An email property represents the layout of attributes that are included in the body of a B2B message email. The attributes are extracted from the message payload for the email.
Show Source
Nested Schema : b2bMessageDefinitions-b2bLocationAssignments-item-response
Type: object
Show Source
Nested Schema : b2bMessageDefinitions-emailProperties-item-response
Type: object
Show Source
Back to Top

Examples

This example describes how to get all message definitions.

Example cURL Command

Use the following cURL command to submit a request on the REST resource:

curl -u username:password "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions"

Example Response Body

The following shows an example of the response body in JSON format.

{
    "items": [
        {
            "MessageId": 40011,
            "MessageName": "OAGIS_10.1_PROCESS_PO_COLLAB_MSG_OUT",
            "MessageDescription": "Purchase Order to OAGIS 10. 1 Process Purchase Order Collaboration Message transformation",
            "GenericXsltFileName": "PRC-PO-OrderResponseToOAGIS-10.1-ProcessPurchaseOrderCollaborationMessage.xsl",
            "MessageSubtype": "ProcessPurchaseOrder",
            "MessageType": "CollaborationMessage",
            "MessageStandard": "ORA_OAGIS",
            "MessageVersion": "10.1",
            "UserDefinedFlag": "false",
            "ApplicationPartnerCodeXpath": null,
            "ObjectKeyXpath": null,
            "ReferenceObjectKeyXpath": null,
            "DocumentName": "PROCESS_PO_OUT",
            "ExternalMessageTypeName": "OAGIS_10.1_PROCESS_PO_COLLAB_MSG",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_PROCESS_PO_COLLAB_MSG_OUT",
                    "name": "b2bMessageDefinitions",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000478"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_PROCESS_PO_COLLAB_MSG_OUT",
                    "name": "b2bMessageDefinitions",
                    "kind": "item"
                },
                {
                    "rel": "child",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_PROCESS_PO_COLLAB_MSG_OUT/child/b2bLocationAssignments",
                    "name": "b2bLocationAssignments",
                    "kind": "collection"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_PROCESS_PO_COLLAB_MSG_OUT/enclosure/PayloadTemplate",
                    "name": "PayloadTemplate",
                    "kind": "other"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_PROCESS_PO_COLLAB_MSG_OUT/enclosure/XsltFile",
                    "name": "XsltFile",
                    "kind": "other"
                }
            ]
        },
        {
            "MessageId": 40022,
            "MessageName": "OAGIS_10.1_CHANGE_PO_COLLAB_MSG_OUT",
            "MessageDescription": "Change Order to OAGIS 10. 1 Change Purchase Order Collaboration Message transformation",
            "GenericXsltFileName": "PRC-PO-OrderResponseToOAGIS-10.1-ChangePurchaseOrderCollaborationMessage.xsl",
            "MessageSubtype": "ChangePurchaseOrder",
            "MessageType": "CollaborationMessage",
            "MessageStandard": "ORA_OAGIS",
            "MessageVersion": "10.1",
            "UserDefinedFlag": "false",
            "ApplicationPartnerCodeXpath": null,
            "ObjectKeyXpath": null,
            "ReferenceObjectKeyXpath": null,
            "DocumentName": "CHANGE_PO_OUT",
            "ExternalMessageTypeName": "OAGIS_10.1_CHANGE_PO_COLLAB_MSG",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_CHANGE_PO_COLLAB_MSG_OUT",
                    "name": "b2bMessageDefinitions",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000278"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_CHANGE_PO_COLLAB_MSG_OUT",
                    "name": "b2bMessageDefinitions",
                    "kind": "item"
                },
                {
                    "rel": "child",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_CHANGE_PO_COLLAB_MSG_OUT/child/b2bLocationAssignments",
                    "name": "b2bLocationAssignments",
                    "kind": "collection"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_CHANGE_PO_COLLAB_MSG_OUT/enclosure/PayloadTemplate",
                    "name": "PayloadTemplate",
                    "kind": "other"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_CHANGE_PO_COLLAB_MSG_OUT/enclosure/XsltFile",
                    "name": "XsltFile",
                    "kind": "other"
                }
            ]
        },
        {
            "MessageId": 40033,
            "MessageName": "OAGIS_10.1_ACK_RCV_DEL_COLLAB_MSG_IN",
            "MessageDescription": "OAGIS 10. 1 Acknowledgment Receive Delivery Collaboration Message to Receipt Advice Confirmation transformation",
            "GenericXsltFileName": "OAGIS-10.1-AcknowledgReceiveDeliveryCollaborationMessageToSCM-LOG-AdviceConfirmation.xsl",
            "MessageSubtype": "AcknowledgeReceiveDelivery",
            "MessageType": "CollaborationMessage",
            "MessageStandard": "ORA_OAGIS",
            "MessageVersion": "10.1",
            "UserDefinedFlag": "false",
            "ApplicationPartnerCodeXpath": "AcknowledgeReceiveDelivery/DataArea/ReceiveDelivery/ReceiveDeliveryHeader/ShipToParty/Location/ID",
            "ObjectKeyXpath": null,
            "ReferenceObjectKeyXpath": null,
            "DocumentName": "ACK_RCV_ADV_IN",
            "ExternalMessageTypeName": "OAGIS_10.1_ACK_RCV_DEL_COLLAB_MSG",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_ACK_RCV_DEL_COLLAB_MSG_IN",
                    "name": "b2bMessageDefinitions",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000178"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_ACK_RCV_DEL_COLLAB_MSG_IN",
                    "name": "b2bMessageDefinitions",
                    "kind": "item"
                },
                {
                    "rel": "child",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_ACK_RCV_DEL_COLLAB_MSG_IN/child/b2bLocationAssignments",
                    "name": "b2bLocationAssignments",
                    "kind": "collection"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_ACK_RCV_DEL_COLLAB_MSG_IN/enclosure/PayloadTemplate",
                    "name": "PayloadTemplate",
                    "kind": "other"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_ACK_RCV_DEL_COLLAB_MSG_IN/enclosure/XsltFile",
                    "name": "XsltFile",
                    "kind": "other"
                }
            ]
        },
        {
            "MessageId": 40036,
            "MessageName": "OAGIS_10.1_PROCESS_INVOICE_COLLAB_MSG_IN",
            "MessageDescription": "OAGIS 10. 1 Process Invoice Collaboration Message to Accounts Payable Invoice transformation",
            "GenericXsltFileName": "OAGIS-10.1-ProcessInvoiceCollaborationMessageToFIN-AP-Invoice.xsl",
            "MessageSubtype": "ProcessInvoice",
            "MessageType": "CollaborationMessage",
            "MessageStandard": "ORA_OAGIS",
            "MessageVersion": "10.1",
            "UserDefinedFlag": "false",
            "ApplicationPartnerCodeXpath": "ProcessInvoice/DataArea/Invoice/InvoiceHeader/ShipToParty/Location/ID",
            "ObjectKeyXpath": "ProcessInvoice/DataArea/Invoice/InvoiceHeader/ID",
            "ReferenceObjectKeyXpath": "ProcessInvoice/DataArea/Invoice/InvoiceLine/PurchaseOrderReference/ID",
            "DocumentName": "PROCESS_INVOICE_IN",
            "ExternalMessageTypeName": "OAGIS_10.1_PROCESS_INVOICE_COLLAB_MSG",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_PROCESS_INVOICE_COLLAB_MSG_IN",
                    "name": "b2bMessageDefinitions",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000178"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_PROCESS_INVOICE_COLLAB_MSG_IN",
                    "name": "b2bMessageDefinitions",
                    "kind": "item"
                },
                {
                    "rel": "child",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_PROCESS_INVOICE_COLLAB_MSG_IN/child/b2bLocationAssignments",
                    "name": "b2bLocationAssignments",
                    "kind": "collection"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_PROCESS_INVOICE_COLLAB_MSG_IN/enclosure/PayloadTemplate",
                    "name": "PayloadTemplate",
                    "kind": "other"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_PROCESS_INVOICE_COLLAB_MSG_IN/enclosure/XsltFile",
                    "name": "XsltFile",
                    "kind": "other"
                }
            ]
        },
        {
            "MessageId": 40039,
            "MessageName": "OAGIS_10.1_PROCESS_SHIPMENT_COLLAB_MSG_IN",
            "MessageDescription": "OAGIS 10. 1 Process Shipment Collaboration Message to Advance Shipment Notification transformation",
            "GenericXsltFileName": "OAGIS-10.1-ProcessShipmentCollaborationMessageToSCM-LOG-AdvanceShipNotification.xsl",
            "MessageSubtype": "ProcessShipment",
            "MessageType": "CollaborationMessage",
            "MessageStandard": "ORA_OAGIS",
            "MessageVersion": "10.1",
            "UserDefinedFlag": "false",
            "ApplicationPartnerCodeXpath": "ProcessShipment/DataArea/Shipment/ShipmentHeader/ShipFromParty/ID",
            "ObjectKeyXpath": "ProcessShipment/DataArea/Shipment/ShipmentHeader/ID",
            "ReferenceObjectKeyXpath": "ProcessShipment/DataArea/Shipment/ShipmentItem/PurchaseOrderReference/ID",
            "DocumentName": "PROCESS_SHIPMENT_IN",
            "ExternalMessageTypeName": "OAGIS_10.1_PROCESS_SHIPMENT_COLLAB_MSG",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_PROCESS_SHIPMENT_COLLAB_MSG_IN",
                    "name": "b2bMessageDefinitions",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000178"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_PROCESS_SHIPMENT_COLLAB_MSG_IN",
                    "name": "b2bMessageDefinitions",
                    "kind": "item"
                },
                {
                    "rel": "child",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_PROCESS_SHIPMENT_COLLAB_MSG_IN/child/b2bLocationAssignments",
                    "name": "b2bLocationAssignments",
                    "kind": "collection"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_PROCESS_SHIPMENT_COLLAB_MSG_IN/enclosure/PayloadTemplate",
                    "name": "PayloadTemplate",
                    "kind": "other"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_PROCESS_SHIPMENT_COLLAB_MSG_IN/enclosure/XsltFile",
                    "name": "XsltFile",
                    "kind": "other"
                }
            ]
        },
        {
            "MessageId": 40056,
            "MessageName": "ORCL_CMK_SHOW_SHIPMENT_005",
            "MessageDescription": "OAGIS 7. 2. 1 Show Shipment to Advance Ship Notification transformation",
            "GenericXsltFileName": "OAGIS-7.2.1-ShowShipmentToSCM-LOG-AdvanceShipNotification.xsl",
            "MessageSubtype": "SHOW_SHIPMENT_005",
            "MessageType": "SHOW_SHIPMENT_005",
            "MessageStandard": "ORA_OAG",
            "MessageVersion": "7.2.1",
            "UserDefinedFlag": "false",
            "ApplicationPartnerCodeXpath": "SHOW_SHIPMENT_005/DATAAREA/SHOW_SHIPMENT/SHIPMENT/PARTNER[PARTNRTYPE=\"ShipFrom\"]/PARTNRIDX",
            "ObjectKeyXpath": "SHOW_SHIPMENT_005/DATAAREA/SHOW_SHIPMENT/SHIPMENT/DOCUMENTID",
            "ReferenceObjectKeyXpath": "SHOW_SHIPMENT_005/DATAAREA/SHOW_SHIPMENT/SHIPMENT/SHIPITEM/DOCUMNTREF/DOCUMENTID",
            "DocumentName": "PROCESS_SHIPMENT_IN",
            "ExternalMessageTypeName": "OAGIS-7.2.1_SHOW_SHIPMENT",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/ORCL_CMK_SHOW_SHIPMENT_005",
                    "name": "b2bMessageDefinitions",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000278"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/ORCL_CMK_SHOW_SHIPMENT_005",
                    "name": "b2bMessageDefinitions",
                    "kind": "item"
                },
                {
                    "rel": "child",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/ORCL_CMK_SHOW_SHIPMENT_005/child/b2bLocationAssignments",
                    "name": "b2bLocationAssignments",
                    "kind": "collection"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/ORCL_CMK_SHOW_SHIPMENT_005/enclosure/PayloadTemplate",
                    "name": "PayloadTemplate",
                    "kind": "other"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/ORCL_CMK_SHOW_SHIPMENT_005/enclosure/XsltFile",
                    "name": "XsltFile",
                    "kind": "other"
                }
            ]
        },
        {
            "MessageId": 40058,
            "MessageName": "ORCL_CMK_PROCESS_PO_007",
            "MessageDescription": "Purchase Order to OAGIS 7. 2. 1-Process Purchase Order transformation",
            "GenericXsltFileName": "PRC-PO-OrderResponseToOAGIS-7.2.1-ProcessPurchaseOrder.xsl",
            "MessageSubtype": "PROCESS_PO_007",
            "MessageType": "PROCESS_PO_007",
            "MessageStandard": "ORA_OAG",
            "MessageVersion": "7.2.1",
            "UserDefinedFlag": "false",
            "ApplicationPartnerCodeXpath": null,
            "ObjectKeyXpath": null,
            "ReferenceObjectKeyXpath": null,
            "DocumentName": "PROCESS_PO_OUT",
            "ExternalMessageTypeName": "OAGIS_7.2.1_PROCESS_PO",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/ORCL_CMK_PROCESS_PO_007",
                    "name": "b2bMessageDefinitions",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000378"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/ORCL_CMK_PROCESS_PO_007",
                    "name": "b2bMessageDefinitions",
                    "kind": "item"
                },
                {
                    "rel": "child",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/ORCL_CMK_PROCESS_PO_007/child/b2bLocationAssignments",
                    "name": "b2bLocationAssignments",
                    "kind": "collection"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/ORCL_CMK_PROCESS_PO_007/enclosure/PayloadTemplate",
                    "name": "PayloadTemplate",
                    "kind": "other"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/ORCL_CMK_PROCESS_PO_007/enclosure/XsltFile",
                    "name": "XsltFile",
                    "kind": "other"
                }
            ]
        },
        {
            "MessageId": 40060,
            "MessageName": "ORCL_CMK_CHANGE_PO_006",
            "MessageDescription": "Change Order to OAGIS 7. 2. 1 Change Purchase Order transformation",
            "GenericXsltFileName": "PRC-PO-OrderResponseToOAGIS-7.2.1-ChangePurchaseOrder.xsl",
            "MessageSubtype": "CHANGE_PO_006",
            "MessageType": "CHANGE_PO_006",
            "MessageStandard": "ORA_OAG",
            "MessageVersion": "7.2.1",
            "UserDefinedFlag": "false",
            "ApplicationPartnerCodeXpath": null,
            "ObjectKeyXpath": null,
            "ReferenceObjectKeyXpath": null,
            "DocumentName": "CHANGE_PO_OUT",
            "ExternalMessageTypeName": "OAGIS_7.2.1_CHANGE_PO",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/ORCL_CMK_CHANGE_PO_006",
                    "name": "b2bMessageDefinitions",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000278"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/ORCL_CMK_CHANGE_PO_006",
                    "name": "b2bMessageDefinitions",
                    "kind": "item"
                },
                {
                    "rel": "child",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/ORCL_CMK_CHANGE_PO_006/child/b2bLocationAssignments",
                    "name": "b2bLocationAssignments",
                    "kind": "collection"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/ORCL_CMK_CHANGE_PO_006/enclosure/PayloadTemplate",
                    "name": "PayloadTemplate",
                    "kind": "other"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/ORCL_CMK_CHANGE_PO_006/enclosure/XsltFile",
                    "name": "XsltFile",
                    "kind": "other"
                }
            ]
        },
        {
            "MessageId": 40062,
            "MessageName": "ORCL_CMK_PROCESS_INVOICE_002",
            "MessageDescription": "OAGIS 7. 2. 1 Process Invoice to Accounts Payable Invoice transformation",
            "GenericXsltFileName": "OAGIS-7.2.1-ProcessInvoiceToFIN-AP-Invoice.xsl",
            "MessageSubtype": "PROCESS_INVOICE_002",
            "MessageType": "PROCESS_INVOICE_002",
            "MessageStandard": "ORA_OAG",
            "MessageVersion": "7.2.1",
            "UserDefinedFlag": "false",
            "ApplicationPartnerCodeXpath": "PROCESS_INVOICE_002/DATAAREA/PROCESS_INVOICE/INVHEADER/PARTNER[PARTNRTYPE=\"Supplier\"]/PARTNRIDX",
            "ObjectKeyXpath": "PROCESS_INVOICE_002/DATAAREA/PROCESS_INVOICE/INVHEADER/DOCUMENTID",
            "ReferenceObjectKeyXpath": "PROCESS_INVOICE_002/DATAAREA/PROCESS_INVOICE/INVLINE/DOCUMNTREF/DOCUMENTID",
            "DocumentName": "PROCESS_INVOICE_IN",
            "ExternalMessageTypeName": "OAGIS_7.2.1_PROCESS_INVOICE",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/ORCL_CMK_PROCESS_INVOICE_002",
                    "name": "b2bMessageDefinitions",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000278"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/ORCL_CMK_PROCESS_INVOICE_002",
                    "name": "b2bMessageDefinitions",
                    "kind": "item"
                },
                {
                    "rel": "child",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/ORCL_CMK_PROCESS_INVOICE_002/child/b2bLocationAssignments",
                    "name": "b2bLocationAssignments",
                    "kind": "collection"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/ORCL_CMK_PROCESS_INVOICE_002/enclosure/PayloadTemplate",
                    "name": "PayloadTemplate",
                    "kind": "other"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/ORCL_CMK_PROCESS_INVOICE_002/enclosure/XsltFile",
                    "name": "XsltFile",
                    "kind": "other"
                }
            ]
        },
        {
            "MessageId": 40066,
            "MessageName": "OAGIS_10.1_CANCEL_PO_COLLAB_MSG_OUT",
            "MessageDescription": "Cancel Order to OAGIS 10. 1 Cancel Purchase Order Collaboration Message transformation",
            "GenericXsltFileName": "PRC-PO-OrderResponseToOAGIS-10.1-CancelPurchaseOrderCollaborationMessage.xsl",
            "MessageSubtype": "CancelPurchaseOrder",
            "MessageType": "CollaborationMessage",
            "MessageStandard": "ORA_OAGIS",
            "MessageVersion": "10.1",
            "UserDefinedFlag": "false",
            "ApplicationPartnerCodeXpath": null,
            "ObjectKeyXpath": null,
            "ReferenceObjectKeyXpath": null,
            "DocumentName": "CANCEL_PO_OUT",
            "ExternalMessageTypeName": "OAGIS_10.1_CANCEL_PO_COLLAB_MSG",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_CANCEL_PO_COLLAB_MSG_OUT",
                    "name": "b2bMessageDefinitions",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000278"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_CANCEL_PO_COLLAB_MSG_OUT",
                    "name": "b2bMessageDefinitions",
                    "kind": "item"
                },
                {
                    "rel": "child",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_CANCEL_PO_COLLAB_MSG_OUT/child/b2bLocationAssignments",
                    "name": "b2bLocationAssignments",
                    "kind": "collection"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_CANCEL_PO_COLLAB_MSG_OUT/enclosure/PayloadTemplate",
                    "name": "PayloadTemplate",
                    "kind": "other"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_CANCEL_PO_COLLAB_MSG_OUT/enclosure/XsltFile",
                    "name": "XsltFile",
                    "kind": "other"
                }
            ]
        },
        {
            "MessageId": 40077,
            "MessageName": "OAGIS_10.1_PROCESS_RCV_DEL_COLLAB_MSG_OUT",
            "MessageDescription": "Receipt Advice to OAGIS 10. 1 Process Receive Delivery Collaboration Message transformation",
            "GenericXsltFileName": "SCM-LOG-ReceiptAdviceToOAGIS-10.1-ProcessReceiveDeliveryCollaborationMessage.xsl",
            "MessageSubtype": "ProcessReceiveDelivery",
            "MessageType": "CollaborationMessage",
            "MessageStandard": "ORA_OAGIS",
            "MessageVersion": "10.1",
            "UserDefinedFlag": "false",
            "ApplicationPartnerCodeXpath": null,
            "ObjectKeyXpath": null,
            "ReferenceObjectKeyXpath": null,
            "DocumentName": "PROCESS_RCV_ADV_OUT",
            "ExternalMessageTypeName": "OAGIS_10.1_PROCESS_RCV_DEL_COLLAB_MSG",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_PROCESS_RCV_DEL_COLLAB_MSG_OUT",
                    "name": "b2bMessageDefinitions",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000278"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_PROCESS_RCV_DEL_COLLAB_MSG_OUT",
                    "name": "b2bMessageDefinitions",
                    "kind": "item"
                },
                {
                    "rel": "child",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_PROCESS_RCV_DEL_COLLAB_MSG_OUT/child/b2bLocationAssignments",
                    "name": "b2bLocationAssignments",
                    "kind": "collection"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_PROCESS_RCV_DEL_COLLAB_MSG_OUT/enclosure/PayloadTemplate",
                    "name": "PayloadTemplate",
                    "kind": "other"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_PROCESS_RCV_DEL_COLLAB_MSG_OUT/enclosure/XsltFile",
                    "name": "XsltFile",
                    "kind": "other"
                }
            ]
        },
        {
            "MessageId": 40071,
            "MessageName": "OAGIS_10.1_PROCESS_PO_COLLAB_MSG_IN",
            "MessageDescription": "OAGIS 10. 1 Process Purchase Order to DOO Sales Order transformation",
            "GenericXsltFileName": "OAGIS-10.1-ProcessPurchaseOrderCollaborationMessageToDOO-Order.xsl",
            "MessageSubtype": "ProcessPurchaseOrder",
            "MessageType": "CollaborationMessage",
            "MessageStandard": "ORA_OAGIS",
            "MessageVersion": "10.1",
            "UserDefinedFlag": "false",
            "ApplicationPartnerCodeXpath": null,
            "ObjectKeyXpath": "ProcessPurchaseOrder/DataArea/PurchaseOrder/PurchaseOrderHeader/ID",
            "ReferenceObjectKeyXpath": null,
            "DocumentName": "PROCESS_PO_IN",
            "ExternalMessageTypeName": "OAGIS_10.1_PROCESS_PO_COLLAB_MSG",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_PROCESS_PO_COLLAB_MSG_IN",
                    "name": "b2bMessageDefinitions",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000178"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_PROCESS_PO_COLLAB_MSG_IN",
                    "name": "b2bMessageDefinitions",
                    "kind": "item"
                },
                {
                    "rel": "child",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_PROCESS_PO_COLLAB_MSG_IN/child/b2bLocationAssignments",
                    "name": "b2bLocationAssignments",
                    "kind": "collection"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_PROCESS_PO_COLLAB_MSG_IN/enclosure/PayloadTemplate",
                    "name": "PayloadTemplate",
                    "kind": "other"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_PROCESS_PO_COLLAB_MSG_IN/enclosure/XsltFile",
                    "name": "XsltFile",
                    "kind": "other"
                }
            ]
        },
        {
            "MessageId": 40072,
            "MessageName": "OAGIS_10.1_CHANGE_PO_COLLAB_MSG_IN",
            "MessageDescription": "OAGIS 10. 1 Change Purchase Order to DOO Sales Order transformation",
            "GenericXsltFileName": "OAGIS-10.1-ChangePurchaseOrderCollaborationMessageToDOO-Order.xsl",
            "MessageSubtype": "ChangePurchaseOrder",
            "MessageType": "CollaborationMessage",
            "MessageStandard": "ORA_OAGIS",
            "MessageVersion": "10.1",
            "UserDefinedFlag": "false",
            "ApplicationPartnerCodeXpath": null,
            "ObjectKeyXpath": "ChangePurchaseOrder/DataArea/PurchaseOrder/PurchaseOrderHeader/ID",
            "ReferenceObjectKeyXpath": null,
            "DocumentName": "CHANGE_PO_IN",
            "ExternalMessageTypeName": "OAGIS_10.1_CHANGE_PO_COLLAB_MSG",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_CHANGE_PO_COLLAB_MSG_IN",
                    "name": "b2bMessageDefinitions",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000178"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_CHANGE_PO_COLLAB_MSG_IN",
                    "name": "b2bMessageDefinitions",
                    "kind": "item"
                },
                {
                    "rel": "child",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_CHANGE_PO_COLLAB_MSG_IN/child/b2bLocationAssignments",
                    "name": "b2bLocationAssignments",
                    "kind": "collection"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_CHANGE_PO_COLLAB_MSG_IN/enclosure/PayloadTemplate",
                    "name": "PayloadTemplate",
                    "kind": "other"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_CHANGE_PO_COLLAB_MSG_IN/enclosure/XsltFile",
                    "name": "XsltFile",
                    "kind": "other"
                }
            ]
        },
        {
            "MessageId": 40073,
            "MessageName": "OAGIS_10.1_CANCEL_PO_COLLAB_MSG_IN",
            "MessageDescription": "OAGIS 10. 1 Cancel Purchase Order to DOO Sales Order transformation",
            "GenericXsltFileName": "OAGIS-10.1-CancelPurchaseOrderCollaborationMessageToDOO-Order.xsl",
            "MessageSubtype": "CancelPurchaseOrder",
            "MessageType": "CollaborationMessage",
            "MessageStandard": "ORA_OAGIS",
            "MessageVersion": "10.1",
            "UserDefinedFlag": "false",
            "ApplicationPartnerCodeXpath": null,
            "ObjectKeyXpath": "CancelPurchaseOrder/DataArea/PurchaseOrder/PurchaseOrderHeader/ID",
            "ReferenceObjectKeyXpath": null,
            "DocumentName": "CANCEL_PO_IN",
            "ExternalMessageTypeName": "OAGIS_10.1_CANCEL_PO_COLLAB_MSG",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_CANCEL_PO_COLLAB_MSG_IN",
                    "name": "b2bMessageDefinitions",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000178"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_CANCEL_PO_COLLAB_MSG_IN",
                    "name": "b2bMessageDefinitions",
                    "kind": "item"
                },
                {
                    "rel": "child",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_CANCEL_PO_COLLAB_MSG_IN/child/b2bLocationAssignments",
                    "name": "b2bLocationAssignments",
                    "kind": "collection"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_CANCEL_PO_COLLAB_MSG_IN/enclosure/PayloadTemplate",
                    "name": "PayloadTemplate",
                    "kind": "other"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_CANCEL_PO_COLLAB_MSG_IN/enclosure/XsltFile",
                    "name": "XsltFile",
                    "kind": "other"
                }
            ]
        },
        {
            "MessageId": 40078,
            "MessageName": "OAGIS_10.1_PROCESS_SHIPMENT_COLLAB_MSG_OUT",
            "MessageDescription": "Shipment to OAGIS 10. 1 Process Shipment Collaboration Message transformation",
            "GenericXsltFileName": "ShipmentToOAGIS-10.1-ProcessShipmentCollaborationMessage.xsl",
            "MessageSubtype": "ProcessShipment",
            "MessageType": "CollaborationMessage",
            "MessageStandard": "ORA_OAGIS",
            "MessageVersion": "10.1",
            "UserDefinedFlag": "false",
            "ApplicationPartnerCodeXpath": null,
            "ObjectKeyXpath": null,
            "ReferenceObjectKeyXpath": null,
            "DocumentName": "PROCESS_SHIPMENT_OUT",
            "ExternalMessageTypeName": "OAGIS_10.1_PROCESS_SHIPMENT_COLLAB_MSG",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_PROCESS_SHIPMENT_COLLAB_MSG_OUT",
                    "name": "b2bMessageDefinitions",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000278"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_PROCESS_SHIPMENT_COLLAB_MSG_OUT",
                    "name": "b2bMessageDefinitions",
                    "kind": "item"
                },
                {
                    "rel": "child",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_PROCESS_SHIPMENT_COLLAB_MSG_OUT/child/b2bLocationAssignments",
                    "name": "b2bLocationAssignments",
                    "kind": "collection"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_PROCESS_SHIPMENT_COLLAB_MSG_OUT/enclosure/PayloadTemplate",
                    "name": "PayloadTemplate",
                    "kind": "other"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_PROCESS_SHIPMENT_COLLAB_MSG_OUT/enclosure/XsltFile",
                    "name": "XsltFile",
                    "kind": "other"
                }
            ]
        },
        {
            "MessageId": 40061,
            "MessageName": "OAGIS_10.1_ACK_CHANGE_PO_COLLAB_MSG_IN",
            "MessageDescription": "Change Order Acknowledgment to OAGIS 10.1 Acknowledge Purchase Order Collaboration Message transformation",
            "GenericXsltFileName": "OAGIS-10.1-ChangeAcknowledgePurchaseOrderCollaborationMessage-To-PRC-PO-AcknowledgePurchaseOrder.xsl",
            "MessageSubtype": "ChangeAcknowledgePurchaseOrder",
            "MessageType": "CollaborationMessage",
            "MessageStandard": "ORA_OAGIS",
            "MessageVersion": "10.1",
            "UserDefinedFlag": "false",
            "ApplicationPartnerCodeXpath": null,
            "ObjectKeyXpath": "ChangeAcknowledgePurchaseOrder/DataArea/PurchaseOrder/PurchaseOrderHeader/ID",
            "ReferenceObjectKeyXpath": "ChangeAcknowledgePurchaseOrder/DataArea/PurchaseOrder/PurchaseOrderHeader/ID",
            "DocumentName": "ACKNOWLEDGE_CHANGE_PO_IN",
            "ExternalMessageTypeName": "OAGIS_10.1_CHG_ACK_PO_COLLAB_MSG",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_ACK_CHANGE_PO_COLLAB_MSG_IN",
                    "name": "b2bMessageDefinitions",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000278"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_ACK_CHANGE_PO_COLLAB_MSG_IN",
                    "name": "b2bMessageDefinitions",
                    "kind": "item"
                },
                {
                    "rel": "child",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_ACK_CHANGE_PO_COLLAB_MSG_IN/child/b2bLocationAssignments",
                    "name": "b2bLocationAssignments",
                    "kind": "collection"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_ACK_CHANGE_PO_COLLAB_MSG_IN/enclosure/PayloadTemplate",
                    "name": "PayloadTemplate",
                    "kind": "other"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_ACK_CHANGE_PO_COLLAB_MSG_IN/enclosure/XsltFile",
                    "name": "XsltFile",
                    "kind": "other"
                }
            ]
        },
        {
            "MessageId": 40076,
            "MessageName": "OAGIS_10.1_ACKNOWLEDGE_INVOICE_COLLAB_MSG_OUT",
            "MessageDescription": "Accounts Payable Invoice Rejection to OAGIS 10. 1 Acknowledge Invoice Collaboration Message transformation",
            "GenericXsltFileName": "FIN-AP-Invoice-RejectedToOAGIS-10.1-AcknowledgeInvoiceCollaborationMessage.xsl",
            "MessageSubtype": "AcknowledgeInvoice",
            "MessageType": "CollaborationMessage",
            "MessageStandard": "ORA_OAGIS",
            "MessageVersion": "10.1",
            "UserDefinedFlag": "false",
            "ApplicationPartnerCodeXpath": null,
            "ObjectKeyXpath": null,
            "ReferenceObjectKeyXpath": null,
            "DocumentName": "ACK_REJECTED_INVOICE_OUT",
            "ExternalMessageTypeName": "OAGIS_10.1_ACKNOWLEDGE_INVOICE_COLLAB_MSG",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_ACKNOWLEDGE_INVOICE_COLLAB_MSG_OUT",
                    "name": "b2bMessageDefinitions",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000278"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_ACKNOWLEDGE_INVOICE_COLLAB_MSG_OUT",
                    "name": "b2bMessageDefinitions",
                    "kind": "item"
                },
                {
                    "rel": "child",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_ACKNOWLEDGE_INVOICE_COLLAB_MSG_OUT/child/b2bLocationAssignments",
                    "name": "b2bLocationAssignments",
                    "kind": "collection"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_ACKNOWLEDGE_INVOICE_COLLAB_MSG_OUT/enclosure/PayloadTemplate",
                    "name": "PayloadTemplate",
                    "kind": "other"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_ACKNOWLEDGE_INVOICE_COLLAB_MSG_OUT/enclosure/XsltFile",
                    "name": "XsltFile",
                    "kind": "other"
                }
            ]
        },
        {
            "MessageId": 300100149806970,
            "MessageName": "DUP_ORCL_CMK_PROCESS_INVOICE_002",
            "MessageDescription": "OAGIS 7. 2. 1 Process Invoice to Accounts Payable Invoice transformation",
            "GenericXsltFileName": "OAGIS-7.2.1-ProcessInvoiceToFIN-AP-Invoice.xsl",
            "MessageSubtype": "PROCESS_INVOICE_002",
            "MessageType": "PROCESS_INVOICE_002",
            "MessageStandard": "ORA_OAG",
            "MessageVersion": "7.2.1",
            "UserDefinedFlag": "true",
            "ApplicationPartnerCodeXpath": "PROCESS_INVOICE_002/DATAAREA/PROCESS_INVOICE/INVHEADER/PARTNER[PARTNRTYPE=\"Supplier\"]/PARTNRIDX",
            "ObjectKeyXpath": "PROCESS_INVOICE_002/DATAAREA/PROCESS_INVOICE/INVHEADER/DOCUMENTID",
            "ReferenceObjectKeyXpath": null,
            "DocumentName": "PROCESS_INVOICE_IN",
            "ExternalMessageTypeName": "OAGIS_7.2.1_PROCESS_INVOICE",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/DUP_ORCL_CMK_PROCESS_INVOICE_002",
                    "name": "b2bMessageDefinitions",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000D78"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/DUP_ORCL_CMK_PROCESS_INVOICE_002",
                    "name": "b2bMessageDefinitions",
                    "kind": "item"
                },
                {
                    "rel": "child",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/DUP_ORCL_CMK_PROCESS_INVOICE_002/child/b2bLocationAssignments",
                    "name": "b2bLocationAssignments",
                    "kind": "collection"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/DUP_ORCL_CMK_PROCESS_INVOICE_002/enclosure/PayloadTemplate",
                    "name": "PayloadTemplate",
                    "kind": "other"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/DUP_ORCL_CMK_PROCESS_INVOICE_002/enclosure/XsltFile",
                    "name": "XsltFile",
                    "kind": "other"
                }
            ]
        },
        {
            "MessageId": 300100166163217,
            "MessageName": "CUSTOM1_OAGIS_10.1_ACKNOWLEDGE_PLANNING_SCHEDULE_COLLAB_MSG_IN",
            "MessageDescription": "OAGIS 10. 1 Acknowledge Planning Schedule to Acknowledge Forecast Collaboration Message transformation",
            "GenericXsltFileName": "OAGIS-10.1-AcknowledgePlanningScheduleCollaborationMessageToSCC-AcknowledgeForecast.xsl",
            "MessageSubtype": "AcknowledgePlanningSchedule",
            "MessageType": "CollaborationMessage",
            "MessageStandard": "ORA_OAGIS",
            "MessageVersion": "10.1",
            "UserDefinedFlag": "true",
            "ApplicationPartnerCodeXpath": "AcknowledgePlanningSchedule/DataArea/PlanningSchedule/PlanningScheduleHeader/Party/Location/ID",
            "ObjectKeyXpath": "AcknowledgePlanningSchedule/DataArea/PlanningSchedule/PlanningScheduleHeader/ID",
            "ReferenceObjectKeyXpath": null,
            "DocumentName": "ACKNOWLEDGE_FORECAST_IN",
            "ExternalMessageTypeName": "OAGIS_10.1_ACKNOWLEDGE_PLANNING_SCHEDULE_COLLAB_MSG",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/CUSTOM1_OAGIS_10.1_ACKNOWLEDGE_PLANNING_SCHEDULE_COLLAB_MSG_IN",
                    "name": "b2bMessageDefinitions",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000D78"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/CUSTOM1_OAGIS_10.1_ACKNOWLEDGE_PLANNING_SCHEDULE_COLLAB_MSG_IN",
                    "name": "b2bMessageDefinitions",
                    "kind": "item"
                },
                {
                    "rel": "child",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/CUSTOM1_OAGIS_10.1_ACKNOWLEDGE_PLANNING_SCHEDULE_COLLAB_MSG_IN/child/b2bLocationAssignments",
                    "name": "b2bLocationAssignments",
                    "kind": "collection"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/CUSTOM1_OAGIS_10.1_ACKNOWLEDGE_PLANNING_SCHEDULE_COLLAB_MSG_IN/enclosure/PayloadTemplate",
                    "name": "PayloadTemplate",
                    "kind": "other"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/CUSTOM1_OAGIS_10.1_ACKNOWLEDGE_PLANNING_SCHEDULE_COLLAB_MSG_IN/enclosure/XsltFile",
                    "name": "XsltFile",
                    "kind": "other"
                }
            ]
        },
        {
            "MessageId": 70035,
            "MessageName": "OAGIS_10.1_ACK_PO_OUT_V2",
            "MessageDescription": "Order Acknowledgment to OAGIS 10. 1 Acknowledge Purchase Order transformation - Version2",
            "GenericXsltFileName": "DOO-OrderAckToOAGIS-10.1-AcknowledgePurchaseOrderCollaborationMessage-v2.xsl",
            "MessageSubtype": "AcknowledgePurchaseOrder",
            "MessageType": "AcknowledgePurchaseOrder",
            "MessageStandard": "ORA_OAGIS",
            "MessageVersion": "10.1",
            "UserDefinedFlag": "false",
            "ApplicationPartnerCodeXpath": null,
            "ObjectKeyXpath": null,
            "ReferenceObjectKeyXpath": null,
            "DocumentName": "ACKNOWLEDGE_PO_OUT",
            "ExternalMessageTypeName": "OAGIS_10.1_ACK_PO",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_ACK_PO_OUT_V2",
                    "name": "b2bMessageDefinitions",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000278"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_ACK_PO_OUT_V2",
                    "name": "b2bMessageDefinitions",
                    "kind": "item"
                },
                {
                    "rel": "child",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_ACK_PO_OUT_V2/child/b2bLocationAssignments",
                    "name": "b2bLocationAssignments",
                    "kind": "collection"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_ACK_PO_OUT_V2/enclosure/PayloadTemplate",
                    "name": "PayloadTemplate",
                    "kind": "other"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_ACK_PO_OUT_V2/enclosure/XsltFile",
                    "name": "XsltFile",
                    "kind": "other"
                }
            ]
        },
        {
            "MessageId": 70036,
            "MessageName": "OAGIS_10.1_CHANGE_ACK_PO_OUT_V2",
            "MessageDescription": "Change Order Acknowledgment to OAGIS 10. 1 AcknowledgePurchase Order transformation - Version2",
            "GenericXsltFileName": "DOO-ChangeOrderAckToOAGIS-10.1-ChangeAcknowledgePurchaseOrderCollaborationMessage-v2.xsl",
            "MessageSubtype": "ChangeAcknowledgePurchaseOrder",
            "MessageType": "ChangeAcknowledgePurchaseOrder",
            "MessageStandard": "ORA_OAGIS",
            "MessageVersion": "10.1",
            "UserDefinedFlag": "false",
            "ApplicationPartnerCodeXpath": null,
            "ObjectKeyXpath": null,
            "ReferenceObjectKeyXpath": null,
            "DocumentName": "ACKNOWLEDGE_CHANGE_PO_OUT",
            "ExternalMessageTypeName": "OAGIS_10.1_CHG_ACK_PO",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_CHANGE_ACK_PO_OUT_V2",
                    "name": "b2bMessageDefinitions",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000278"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_CHANGE_ACK_PO_OUT_V2",
                    "name": "b2bMessageDefinitions",
                    "kind": "item"
                },
                {
                    "rel": "child",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_CHANGE_ACK_PO_OUT_V2/child/b2bLocationAssignments",
                    "name": "b2bLocationAssignments",
                    "kind": "collection"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_CHANGE_ACK_PO_OUT_V2/enclosure/PayloadTemplate",
                    "name": "PayloadTemplate",
                    "kind": "other"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/OAGIS_10.1_CHANGE_ACK_PO_OUT_V2/enclosure/XsltFile",
                    "name": "XsltFile",
                    "kind": "other"
                }
            ]
        },
        {
            "MessageId": 300100182645093,
            "MessageName": "Payload_Test",
            "MessageDescription": null,
            "GenericXsltFileName": "Updated-18_10-PRC-PO-OrderResponseToOAGIS-7.2.1-ProcessPurchaseOrder.xsl",
            "MessageSubtype": "ProcessPurchaseOrder",
            "MessageType": "CollaborationMessage",
            "MessageStandard": "ORA_OAGIS",
            "MessageVersion": "10.1",
            "UserDefinedFlag": "true",
            "ApplicationPartnerCodeXpath": null,
            "ObjectKeyXpath": null,
            "ReferenceObjectKeyXpath": null,
            "DocumentName": "PROCESS_PO_OUT",
            "ExternalMessageTypeName": "OAGIS_10.1_PROCESS_PO_COLLAB_MSG",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/Payload_Test",
                    "name": "b2bMessageDefinitions",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000378"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/Payload_Test",
                    "name": "b2bMessageDefinitions",
                    "kind": "item"
                },
                {
                    "rel": "child",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/Payload_Test/child/b2bLocationAssignments",
                    "name": "b2bLocationAssignments",
                    "kind": "collection"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/Payload_Test/enclosure/PayloadTemplate",
                    "name": "PayloadTemplate",
                    "kind": "other"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/Payload_Test/enclosure/XsltFile",
                    "name": "XsltFile",
                    "kind": "other"
                }
            ]
        },
        {
            "MessageId": 300100184050876,
            "MessageName": "DUP2_UBL_2.1_INVOICE_IN",
            "MessageDescription": "UBL 2. 1 Invoice to Accounts Payables Invoice transformation",
            "GenericXsltFileName": "UBL-2.1-InvoiceToFIN-AP-Invoice.xsl",
            "MessageSubtype": "Invoice",
            "MessageType": "Invoice",
            "MessageStandard": "ORA_UBL",
            "MessageVersion": "2.1",
            "UserDefinedFlag": "true",
            "ApplicationPartnerCodeXpath": "Invoice/Delivery/DeliveryLocation/ID",
            "ObjectKeyXpath": "Invoice/ID",
            "ReferenceObjectKeyXpath": "Invoice/OrderReference/ID",
            "DocumentName": "PROCESS_INVOICE_IN",
            "ExternalMessageTypeName": "UBL_2.1_INVOICE",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/DUP2_UBL_2.1_INVOICE_IN",
                    "name": "b2bMessageDefinitions",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000378"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/DUP2_UBL_2.1_INVOICE_IN",
                    "name": "b2bMessageDefinitions",
                    "kind": "item"
                },
                {
                    "rel": "child",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/DUP2_UBL_2.1_INVOICE_IN/child/b2bLocationAssignments",
                    "name": "b2bLocationAssignments",
                    "kind": "collection"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/DUP2_UBL_2.1_INVOICE_IN/enclosure/PayloadTemplate",
                    "name": "PayloadTemplate",
                    "kind": "other"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/DUP2_UBL_2.1_INVOICE_IN/enclosure/XsltFile",
                    "name": "XsltFile",
                    "kind": "other"
                }
            ]
        },
        {
            "MessageId": 300100184063365,
            "MessageName": "DUP2_OAGIS_10.1_CANCEL_PO_COLLAB_MSG_OUT",
            "MessageDescription": "Cancel Order to OAGIS 10. 1 Cancel Purchase Order Collaboration Message transformation",
            "GenericXsltFileName": "PRC-PO-OrderResponseToOAGIS-10.1-CancelPurchaseOrderCollaborationMessage.xsl",
            "MessageSubtype": "CancelPurchaseOrder",
            "MessageType": "CollaborationMessage",
            "MessageStandard": "ORA_OAGIS",
            "MessageVersion": "10.1",
            "UserDefinedFlag": "true",
            "ApplicationPartnerCodeXpath": null,
            "ObjectKeyXpath": null,
            "ReferenceObjectKeyXpath": null,
            "DocumentName": "CANCEL_PO_OUT",
            "ExternalMessageTypeName": "OAGIS_10.1_CANCEL_PO_COLLAB_MSG",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/DUP2_OAGIS_10.1_CANCEL_PO_COLLAB_MSG_OUT",
                    "name": "b2bMessageDefinitions",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000378"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/DUP2_OAGIS_10.1_CANCEL_PO_COLLAB_MSG_OUT",
                    "name": "b2bMessageDefinitions",
                    "kind": "item"
                },
                {
                    "rel": "child",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/DUP2_OAGIS_10.1_CANCEL_PO_COLLAB_MSG_OUT/child/b2bLocationAssignments",
                    "name": "b2bLocationAssignments",
                    "kind": "collection"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/DUP2_OAGIS_10.1_CANCEL_PO_COLLAB_MSG_OUT/enclosure/PayloadTemplate",
                    "name": "PayloadTemplate",
                    "kind": "other"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/DUP2_OAGIS_10.1_CANCEL_PO_COLLAB_MSG_OUT/enclosure/XsltFile",
                    "name": "XsltFile",
                    "kind": "other"
                }
            ]
        },
        {
            "MessageId": 300100184063374,
            "MessageName": "DUP_OAGIS_10.1_ACKNOWLEDGE_INVOICE_COLLAB_MSG_OUT",
            "MessageDescription": "Accounts Payable Invoice Rejection to OAGIS 10. 1 Acknowledge Invoice Collaboration Message transformation",
            "GenericXsltFileName": "FIN-AP-Invoice-RejectedToOAGIS-10.1-AcknowledgeInvoiceCollaborationMessage.xsl",
            "MessageSubtype": "AcknowledgeInvoice",
            "MessageType": "CollaborationMessage",
            "MessageStandard": "ORA_OAGIS",
            "MessageVersion": "10.1",
            "UserDefinedFlag": "true",
            "ApplicationPartnerCodeXpath": null,
            "ObjectKeyXpath": null,
            "ReferenceObjectKeyXpath": null,
            "DocumentName": "ACK_REJECTED_INVOICE_OUT",
            "ExternalMessageTypeName": "OAGIS_10.1_ACKNOWLEDGE_INVOICE_COLLAB_MSG",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/DUP_OAGIS_10.1_ACKNOWLEDGE_INVOICE_COLLAB_MSG_OUT",
                    "name": "b2bMessageDefinitions",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000378"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/DUP_OAGIS_10.1_ACKNOWLEDGE_INVOICE_COLLAB_MSG_OUT",
                    "name": "b2bMessageDefinitions",
                    "kind": "item"
                },
                {
                    "rel": "child",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/DUP_OAGIS_10.1_ACKNOWLEDGE_INVOICE_COLLAB_MSG_OUT/child/b2bLocationAssignments",
                    "name": "b2bLocationAssignments",
                    "kind": "collection"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/DUP_OAGIS_10.1_ACKNOWLEDGE_INVOICE_COLLAB_MSG_OUT/enclosure/PayloadTemplate",
                    "name": "PayloadTemplate",
                    "kind": "other"
                },
                {
                    "rel": "enclosure",
                    "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions/DUP_OAGIS_10.1_ACKNOWLEDGE_INVOICE_COLLAB_MSG_OUT/enclosure/XsltFile",
                    "name": "XsltFile",
                    "kind": "other"
                }
            ]
        }
    ],
    "count": 25,
    "hasMore": true,
    "limit": 25,
    "offset": 0,
    "links": [
        {
            "rel": "self",
            "href": "https://servername/fscmRestApi/resources/version/b2bMessageDefinitions",
            "name": "b2bMessageDefinitions",
            "kind": "collection"
        }
    ]
}
Back to Top