Project Transfer to Move Material from One Project Task to Another

You can use REST API to transfer material from one project to another.

Let's discuss these scenarios:

  1. Do a project transfer to move material from one project task to another project task.

  2. Do a project transfer to move the project material from one project and task to common inventory.

  3. Retrieve the transfer quantity for a specific header number.

  4. Update the transfer quantity for a specific header number.

  5. Delete the project transfer request for a specific header number.

Project Transfer to Move Material from One Project Task to Another

In this scenario, a warehouse manager enters the Item Number, Requested Quantity, Requested UOM, Project Number, Task Number, Transfer Project Number, Transfer Task Number, and Process Mode.

When the process mode entered is 1, it invokes a REST API that executes the project transfer transaction in Online mode.

Example URL

Use this resource URL format:

POST

curl -u username:password -X POST -H "Content-Type:application/vnd.oracle.adf.resourceitem+json" -d "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests"

Example Request

Here's an example of the request body in JSON format.
{
"Description": "CASE-1.1", 
"ProductCode":"INV",
"RequestedDate": "2022-02-11",
"ProcessMode":"1",          
"lines": [{
     	"OrganizationCode": "M1",
 "ItemNumber": "AS54888",
     	"RequestedQuantity": "1",
     	"RequestedUOMCode": "Ea", 
 "ProjectNumber":"ABC",
 "TaskNumber":"1.1",
     	"TransferProjectNumber": "zBI_Projinv-01",
 "TransferTaskNumber": "1.1"
    }]}

Example Response

Here's an example of the response body in JSON format.
{
    "HeaderId": 1007,
    "HeaderNumber": "1008",
    "Description": "CASE-1.1",
    "ProductCode": "INV",
    "RequestedDate": "2022-02-11",
    "StatusCode": "OPEN",
    "Status": "Inventory attribute update request is open.",
    "ProcessMode": "1",
    "lines": [
        {
            "HeaderId": 1007,
            "LineId": 1004,
            "LineNumber": 1,
            "SourceLineId": null,
            "OrganizationId": 207,
            "OrganizationCode": "M1",
            "InventoryItemId": 149,
            "ItemNumber": "AS54888",
            "RequestedQuantity": 1,
            "RequestedUOMCode": "Ea",
            "RequestedUnitOfMeasure": "Each",
            "TransferQuantity": null,
            "ProjectId": 2255,
            "ProjectNumber": "ABC",
            "TaskId": 3039,
            "TaskNumber": "1.1",
            "TransferProjectId": 100000015107473,
            "TransferProjectNumber": "zBI_Projinv-01",
            "TransferTaskId": 100000015107499,
            "TransferTaskNumber": "1.1",
            "StatusCode": "OPEN",
            "Status": "Inventory attribute update request is open.",
            "SecondaryRequestedQuantity": null,
            "SecondaryUOMCode": null,
            "SecondaryRequestedUnitOfMeasure": null,
            "SecondaryTransferQuantity": null,
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1007/child/lines/1004",
                    "name": "lines",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000278"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1007/child/lines/1004",
                    "name": "lines",
                    "kind": "item"
                },
                {
                    "rel": "parent",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1007",
                    "name": "inventoryAttributeTransactionRequests",
                    "kind": "item"
                }
            ]
        }
    ],
    "links": [
        {
            "rel": "self",
            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1007",
            "name": "inventoryAttributeTransactionRequests",
            "kind": "item",
            "properties": {
                "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000278"
            }
        },
        {
            "rel": "canonical",
            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1007",
            "name": "inventoryAttributeTransactionRequests",
            "kind": "item"
        },
        {
            "rel": "child",
            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1007/child/lines",
            "name": "lines",
            "kind": "collection"
        }
    ]

After the POST operation is successful, perform a GET operation using the header number on the resource to find out the status of the processing. If it processed, the status on the header and lines change to CLOSED and the transfer quantity is updated on the lines.

Example URL

Use this resource URL format:

GET

curl -u username:password "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests?q=HeaderNumber=1008&expand=all"

Example Response

Here's an example of the response body in JSON format.
{
    "items": [
        {
            "HeaderId": 1007,
            "HeaderNumber": "1008",
            "Description": "CASE-1.1",
            "ProductCode": "INV",
            "RequestedDate": "2022-02-11",
            "StatusCode": "CLOSED",
            "Status": "Inventory attribute update request is closed.",
            "ProcessMode": null,
            "lines": [
                {
                    "HeaderId": 1007,
                    "LineId": 1004,
                    "LineNumber": 1,
                    "SourceLineId": null,
                    "OrganizationId": 207,
                    "OrganizationCode": "M1",
                    "InventoryItemId": 149,
                    "ItemNumber": "AS54888",
                    "RequestedQuantity": 1,
                    "RequestedUOMCode": "Ea",
                    "RequestedUnitOfMeasure": "Each",
                    "TransferQuantity": 1,
                    "ProjectId": 2255,
                    "ProjectNumber": "ABC",
                    "TaskId": 3039,
                    "TaskNumber": "1.1",
                    "TransferProjectId": 100000015107473,
                    "TransferProjectNumber": "zBI_Projinv-01",
                    "TransferTaskId": 100000015107499,
                    "TransferTaskNumber": "1.1",
                    "StatusCode": "CLOSED",
                    "Status": "Inventory attribute update request is closed.",
                    "SecondaryRequestedQuantity": null,
                    "SecondaryUOMCode": null,
                    "SecondaryRequestedUnitOfMeasure": null,
                    "SecondaryTransferQuantity": null,
                    "links": [
                        {
                            "rel": "self",
                            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1007/child/lines/1004",
                            "name": "lines",
                            "kind": "item",
                            "properties": {
                                "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A657870000000017704000000017372001B6F7261636C652E6A626F2E646F6D61696E2E4E756C6C56616C75655899C1C58DAABEEB02000149000A6D53514C54797065496478700000000C78"
                            }
                        },
                        {
                            "rel": "canonical",
                            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1007/child/lines/1004",
                            "name": "lines",
                            "kind": "item"
                        },
                        {
                            "rel": "parent",
                            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1007",
                            "name": "inventoryAttributeTransactionRequests",
                            "kind": "item"
                        }
                    ]
                }
            ],
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1007",
                    "name": "inventoryAttributeTransactionRequests",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000378"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1007",
                    "name": "inventoryAttributeTransactionRequests",
                    "kind": "item"
                },
                {
                    "rel": "child",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1007/child/lines",
                    "name": "lines",
                    "kind": "collection"
                }
            ]
        }
    ],
    "count": 1,
    "hasMore": false,
    "limit": 25,
    "offset": 0,
    "links": [
        {
            "rel": "self",
            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests",
            "name": "inventoryAttributeTransactionRequests",
            "kind": "collection"
        }
    ]
}

When the process mode entered is 2, the records are inserted in the Inventory Attribute Update Request Header and Line table. This invokes the Inventory Attribute Transaction Request scheduled process for a header number, which inserts the records in the inventory transactions interface and processes the records.

When the number of project transfer requests is large, it is recommended that you use process mode 2 or 3 .

Example URL

Use this resource URL format.

POST

curl -u username:password -X POST -H "Content-Type:application/vnd.oracle.adf.resourceitem+json" -d "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests"

Example Request

Here's an example of the request body in JSON format.

{     
"Description": "CASE-1.2", 
"ProductCode":"INV",
"RequestedDate": "2022-02-11",
"ProcessMode":"2",          
"lines": [{
     "OrganizationCode": "M1",
     "ItemNumber": "AS54888",
     "RequestedQuantity": "1",
     "RequestedUOMCode": "Ea", 
     "ProjectNumber":"ABC",
     "TaskNumber":"1.1",
     "TransferProjectNumber": "zBI_Projinv-01",
     "TransferTaskNumber": "1.1"}]}

Example Response

Here's an example of the response body in JSON format.
{
“HeaderId”:1009,    
"HeaderNumber": "1010",
 "Description": "CASE-1.2",
 "ProductCode": "INV",
"RequestedDate": "2022-02-11",
"StatusCode": "OPEN",
"Status": "Inventory attribute update request is open.",
 "ProcessMode": "2",
 "lines": [{
            "HeaderId": 1009,
            "LineId": 1005,
            "LineNumber": 1,
            "SourceLineId": null,
            "OrganizationId": 207,
            "OrganizationCode": "M1",
            "InventoryItemId": 149,
            "ItemNumber": "AS54888",
            "RequestedQuantity": 1,
            "RequestedUOMCode": "Ea",
            "RequestedUnitOfMeasure": "Each",
            "TransferQuantity": null,
            "ProjectId": 2255,
            "ProjectNumber": "ABC",
            "TaskId": 3039,
            "TaskNumber": "1.1",
            "TransferProjectId": 100000015107473,
            "TransferProjectNumber": "zBI_Projinv-01",
            "TransferTaskId": 100000015107499,
            "TransferTaskNumber": "1.1",
            "StatusCode": "OPEN",
            "Status": "Inventory attribute update request is open.",
            "SecondaryRequestedQuantity": null,
            "SecondaryUOMCode": null,
            "SecondaryRequestedUnitOfMeasure": null,
            "SecondaryTransferQuantity": null,
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1009/child/lines/1005",
                    "name": "lines",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000278"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1009/child/lines/1005",
                    "name": "lines",
                    "kind": "item"
                },
                {
                    "rel": "parent",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1009",
                    "name": "inventoryAttributeTransactionRequests",
                    "kind": "item"
                }
            ]
        }
    ],
    "links": [
        {
            "rel": "self",
            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1009",
            "name": "inventoryAttributeTransactionRequests",
            "kind": "item",
            "properties": {
                "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000278"
            }
        },
        {
            "rel": "canonical",
            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1009",
            "name": "inventoryAttributeTransactionRequests",
            "kind": "item"
        },
        {
            "rel": "child",
            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1009/child/lines",
            "name": "lines",
            "kind": "collection"
        }
    ]
}

Perform a GET operation using the header number on the resource to find out the processing status. The status of the header and lines changes to CLOSED and the transfer quantity gets updated. The transfer quantity is not updated when the project transfer is not completed successfully. You can check the Inventory Processing Errors table for the error details.

Example URL

Use this resource URL format.

GET

curl -u username:password "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests?q=HeaderNumber=1010&expand=all"

Example Response

Here's an example of the response body in JSON format.

{
    "items": [
        {
            "HeaderId": 1009,
            "HeaderNumber": "1010",
            "Description": "CASE-1.2",
            "ProductCode": "INV",
            "RequestedDate": "2022-02-11",
            "StatusCode": "CLOSED",
            "Status": "Inventory attribute update request is closed.",
            "ProcessMode": null,
            "lines": [
                {
                    "HeaderId": 1009,
                    "LineId": 1005,
                    "LineNumber": 1,
                    "SourceLineId": null,
                    "OrganizationId": 207,
                    "OrganizationCode": "M1",
                    "InventoryItemId": 149,
                    "ItemNumber": "AS54888",
                    "RequestedQuantity": 1,
                    "RequestedUOMCode": "Ea",
                    "RequestedUnitOfMeasure": "Each",
                    "TransferQuantity": 1,
                    "ProjectId": 2255,
                    "ProjectNumber": "ABC",
                    "TaskId": 3039,
                    "TaskNumber": "1.1",
                    "TransferProjectId": 100000015107473,
                    "TransferProjectNumber": "zBI_Projinv-01",
                    "TransferTaskId": 100000015107499,
                    "TransferTaskNumber": "1.1",
                    "StatusCode": "CLOSED",
                    "Status": "Inventory attribute update request is closed.",
                    "SecondaryRequestedQuantity": null,
                    "SecondaryUOMCode": null,
                    "SecondaryRequestedUnitOfMeasure": null,
                    "SecondaryTransferQuantity": null,
                    "links": [
                        {
                            "rel": "self",
                            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1009/child/lines/1005",
                            "name": "lines",
                            "kind": "item",
                            "properties": {
                                "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A657870000000017704000000017372001B6F7261636C652E6A626F2E646F6D61696E2E4E756C6C56616C75655899C1C58DAABEEB02000149000A6D53514C54797065496478700000000C78"
                            }
                        },
                        {
                            "rel": "canonical",
                            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1009/child/lines/1005",
                            "name": "lines",
                            "kind": "item"
                        },
                        {
                            "rel": "parent",
                            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1009",
                            "name": "inventoryAttributeTransactionRequests",
                            "kind": "item"
                        }
                    ]
                }
            ],
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1009",
                    "name": "inventoryAttributeTransactionRequests",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000378"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1009",
                    "name": "inventoryAttributeTransactionRequests",
                    "kind": "item"
                },
                {
                    "rel": "child",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1009/child/lines",
                    "name": "lines",
                    "kind": "collection"
                }
            ]
        }
    ],
    "count": 1,
    "hasMore": false,
    "limit": 25,
    "offset": 0,
    "links": [
        {
            "rel": "self",
            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests",
            "name": "inventoryAttributeTransactionRequests",
            "kind": "collection"
        }
    ]
}

When the process mode entered is 3, the records are inserted in the Inventory Attribute Update Request Header and Line table. You need to invoke the Process Inventory Attribute Transaction Request scheduled process manually to execute the project transfer transactions.

Example URL

Use this resource URL format.

POST

curl -u username:password -X POST -H "Content-Type:application/vnd.oracle.adf.resourceitem+json" -d "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests"

Example Request

Here's an example of the request body in JSON format.

{          
"Description": "CASE-1.3", 
"ProductCode":"INV",
"RequestedDate": "2022-02-11",
"ProcessMode":"3",         
"lines": [{
            "OrganizationCode": "M1",
            "ItemNumber": "AS54888",
            "RequestedQuantity": "1",
           "RequestedUOMCode": "Ea", 
           "ProjectNumber":"ABC",
           "TaskNumber":"1.1",
           "TransferProjectNumber": "zBI_Projinv-01",
           "TransferTaskNumber": "1.1"}]}

Example Response

Here's an example of the response body in JSON format.

 {"HeaderId": 1011,
    "HeaderNumber": "1012",
    "Description": "CASE-1.3",
    "ProductCode": "INV",
    "RequestedDate": "2022-02-11",
    "StatusCode": "OPEN",
    "Status": "Inventory attribute update request is open.",
    "ProcessMode": "3",
    "lines": [
        {
            "HeaderId": 1011,
            "LineId": 1006,
            "LineNumber": 1,
            "SourceLineId": null,
            "OrganizationId": 207,
            "OrganizationCode": "M1",
            "InventoryItemId": 149,
            "ItemNumber": "AS54888",
            "RequestedQuantity": 1,
            "RequestedUOMCode": "Ea",
            "RequestedUnitOfMeasure": "Each",
            "TransferQuantity": null,
            "ProjectId": 2255,
            "ProjectNumber": "ABC",
            "TaskId": 3039,
            "TaskNumber": "1.1",
            "TransferProjectId": 100000015107473,
            "TransferProjectNumber": "zBI_Projinv-01",
            "TransferTaskId": 100000015107499,
            "TransferTaskNumber": "1.1",
            "StatusCode": "OPEN",
            "Status": "Inventory attribute update request is open.",
            "SecondaryRequestedQuantity": null,
            "SecondaryUOMCode": null,
            "SecondaryRequestedUnitOfMeasure": null,
            "SecondaryTransferQuantity": null,
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1011/child/lines/1006",
                    "name": "lines",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000278"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1011/child/lines/1006",
                    "name": "lines",
                    "kind": "item"
                },
                {
                    "rel": "parent",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1011",
                    "name": "inventoryAttributeTransactionRequests",
                    "kind": "item"
                }
            ]
        }
    ],
    "links": [
        {
            "rel": "self",
            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1011",
            "name": "inventoryAttributeTransactionRequests",
            "kind": "item",
            "properties": {
                "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000278"
            }
        },
        {
            "rel": "canonical",
            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1011",
            "name": "inventoryAttributeTransactionRequests",
            "kind": "item"
        },
        {
            "rel": "child",
            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1011/child/lines",
            "name": "lines",
            "kind": "collection"
        }
    ]
}

Note:

In this process mode, you have to launch the Process Inventory Attribute Transaction Request schedule process manually to process inventory attribute transaction requests.

After the scheduled job completes, perform a GET operation using the header number on the resource. The status of the header and lines change and the transfer quantity gets updated.

Example URL

Use this resource URL format.

GET

curl -u username:password "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests?q=HeaderNumber=1012&expand=all"

Example Response

Here's an example of the response body in JSON format.

{    "items": [{
            "HeaderId": 1011,
            "HeaderNumber": "1012",
            "Description": "CASE-1.3",
            "ProductCode": "INV",
            "RequestedDate": "2022-02-11",
            "StatusCode": "CLOSED",
            "Status": "Inventory attribute update request is closed.",
            "ProcessMode": null,
            "lines": [{
                   "HeaderId": 1011,
   	    "LineId": 1006,
                     "LineNumber": 1,
                     "SourceLineId": null,
                     "OrganizationId": 207,
                     "OrganizationCode": "M1",
                     "InventoryItemId": 149,
                     "ItemNumber": "AS54888",
                     "RequestedQuantity": 1,
                     "RequestedUOMCode": "Ea",
                     "RequestedUnitOfMeasure": "Each",
                    	                   "TransferQuantity": 1,
                   "ProjectId": 2255,
                    "ProjectNumber": "ABC",
                    "TaskId": 3039,
                    "TaskNumber": "1.1",
                    "TransferProjectId": 100000015107473,
                    "TransferProjectNumber": "zBI_Projinv-01",
                    "TransferTaskId": 100000015107499,
                    "TransferTaskNumber": "1.1",
                    "StatusCode": "CLOSED",
                    "Status": "Inventory attribute update request is closed.",
                    "SecondaryRequestedQuantity": null,
                    "SecondaryUOMCode": null,
                    "SecondaryRequestedUnitOfMeasure": null,
                    "SecondaryTransferQuantity": null,
                    "links": [
                        {
                            			"rel": "self",
                            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1011/child/lines/1006",
                            "name": "lines",
                            "kind": "item",
                            "properties": {
                                "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A657870000000017704000000017372001B6F7261636C652E6A626F2E646F6D61696E2E4E756C6C56616C75655899C1C58DAABEEB02000149000A6D53514C54797065496478700000000C78"
                            }
                        },
                        {
                            "rel": "canonical",
                            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1011/child/lines/1006",
                            "name": "lines",
                            "kind": "item"
                        },
                        {
                            "rel": "parent",
                            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1011",
                            "name": "inventoryAttributeTransactionRequests",
                            "kind": "item"
                        }
                    ]
                }
            ],
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1011",
                    "name": "inventoryAttributeTransactionRequests",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000378"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1011",
                    "name": "inventoryAttributeTransactionRequests",
                    "kind": "item"
                },
                {
                    "rel": "child",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1011/child/lines",
                    "name": "lines",
                    "kind": "collection"
                }
            ]
        }
    ],
    "count": 1,
    "hasMore": false,
    "limit": 25,
    "offset": 0,
    "links": [
        {
            "rel": "self",
            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests",
            "name": "inventoryAttributeTransactionRequests",
            "kind": "collection"
        }
    ]
}

Project Transfer to Move Material from One Project and Task to Common Inventory

In this scenario, the warehouse manager enters the Item Number, Requested Quantity, Requested UOM, Project Number, Task Number, Transfer Project Number, Transfer Task Number, and the process mode. The values for Transfer Project Number and Transfer Task Number are null because the material needs to be transferred to common inventory.

Example URL

Use this resource URL format.

POST

curl -u username:password -X POST -H "Content-Type:application/vnd.oracle.adf.resourceitem+json" -d "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests"

Example Request

Here's an example of the request body in JSON format.
{"Description": "CASE-2", 
"ProductCode":"INV",
"RequestedDate": "2022-02-11",
"ProcessMode":"1",          
"lines": [
    	{
     "OrganizationCode": "M1",
     "ItemNumber": "AS54888",
     "RequestedQuantity": "1",
     "RequestedUOMCode": "Ea", 
     "ProjectNumber":"ABC",
     "TaskNumber":"1.1"
    }]}

Example Response

Here's an example of the response body in JSON format.

  {"HeaderId": 1013,
    "HeaderNumber": "1014",
    "Description": "CASE-2",
    "ProductCode": "INV",
    "RequestedDate": "2022-02-11",
    "StatusCode": "OPEN",
    "Status": "Inventory attribute update request is open.",
    "ProcessMode": "1",
    "lines": [
        {
            "HeaderId": 1013,
            "LineId": 1007,
            "LineNumber": 1,
            "SourceLineId": null,
            "OrganizationId": 207,
            "OrganizationCode": "M1",
            "InventoryItemId": 149,
            "ItemNumber": "AS54888",
            "RequestedQuantity": 1,
            "RequestedUOMCode": "Ea",
            "RequestedUnitOfMeasure": "Each",
            "TransferQuantity": null,
            "ProjectId": 2255,
            "ProjectNumber": "ABC",
            "TaskId": 3039,
            "TaskNumber": "1.1",
            "TransferProjectId": null,
            "TransferProjectNumber": null,
            "TransferTaskId": null,
            "TransferTaskNumber": null,
            "StatusCode": "OPEN",
            "Status": "Inventory attribute update request is open.",
            "SecondaryRequestedQuantity": null,
            "SecondaryUOMCode": null,
            "SecondaryRequestedUnitOfMeasure": null,
            "SecondaryTransferQuantity": null,
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1013/child/lines/1007",
                    "name": "lines",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000278"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1013/child/lines/1007",
                    "name": "lines",
                    "kind": "item"
                },
                {
                    "rel": "parent",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1013",
                    "name": "inventoryAttributeTransactionRequests",
                    "kind": "item"
                }
            ]
        }
    ],
    "links": [
        {
            "rel": "self",
            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1013",
            "name": "inventoryAttributeTransactionRequests",
            "kind": "item",
            "properties": {
                "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000278"
            }
        },
        {
            "rel": "canonical",
            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1013",
            "name": "inventoryAttributeTransactionRequests",
            "kind": "item"
        },
        {
            "rel": "child",
            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1013/child/lines",
            "name": "lines",
            "kind": "collection"
        }
    ]
}

As the process mode is 1 (online), perform a GET operation using the header number on the resource to find out the status of the processing. The status of the lines and header changes and the transfer quantity is stamped on the lines.

Example URL

Use this resource URL format.

GET

curl -u username:password "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests?q=HeaderNumber=1014&expand=all"

Example Response

Here's an example of the response body in JSON format.

{
    "items": [
        {
            "HeaderId": 1013,
            "HeaderNumber": "1014",
            "Description": "CASE-2",
            "ProductCode": "INV",
            "RequestedDate": "2022-02-11",
            "StatusCode": "CLOSED",
            "Status": "Inventory attribute update request is closed.",
            "ProcessMode": null,
            "lines": [
                {
                    "HeaderId": 1013,
                    "LineId": 1007,
                    "LineNumber": 1,
                    "SourceLineId": null,
                    "OrganizationId": 207,
                    "OrganizationCode": "M1",
                    "InventoryItemId": 149,
                    "ItemNumber": "AS54888",
                    "RequestedQuantity": 1,
                    "RequestedUOMCode": "Ea",
                    "RequestedUnitOfMeasure": "Each",
                    "TransferQuantity": 1,
                    "ProjectId": 2255,
                    "ProjectNumber": "ABC",
                    "TaskId": 3039,
                    "TaskNumber": "1.1",
                    "TransferProjectId": null,
                    "TransferProjectNumber": null,
                    "TransferTaskId": null,
                    "TransferTaskNumber": null,
                    "StatusCode": "CLOSED",
                    "Status": "Inventory attribute update request is closed.",
                    "SecondaryRequestedQuantity": null,
                    "SecondaryUOMCode": null,
                    "SecondaryRequestedUnitOfMeasure": null,
                    "SecondaryTransferQuantity": null,
                    "links": [
                        {
                            "rel": "self",
                            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1013/child/lines/1007",
                            "name": "lines",
                            "kind": "item",
                            "properties": {
                                "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A657870000000017704000000017372001B6F7261636C652E6A626F2E646F6D61696E2E4E756C6C56616C75655899C1C58DAABEEB02000149000A6D53514C54797065496478700000000C78"
                            }
                        },
                        {
                            "rel": "canonical",
                            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1013/child/lines/1007",
                            "name": "lines",
                            "kind": "item"
                        },
                        {
                            "rel": "parent",
                            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1013",
                            "name": "inventoryAttributeTransactionRequests",
                            "kind": "item"
                        }
                    ]
                }
            ],
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1013",
                    "name": "inventoryAttributeTransactionRequests",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000378"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1013",
                    "name": "inventoryAttributeTransactionRequests",
                    "kind": "item"
                },
                {
                    "rel": "child",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1013/child/lines",
                    "name": "lines",
                    "kind": "collection"
                }
            ]
        }
    ],
    "count": 1,
    "hasMore": false,
    "limit": 25,
    "offset": 0,
    "links": [
        {
            "rel": "self",
            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests",
            "name": "inventoryAttributeTransactionRequests",
            "kind": "collection"
        }
    ]
}

Retrieve the Transfer Quantity for a Specific Header Number

In this scenario, the warehouse manager retrieves the quantity transferred to a project and task for a specific inventory attribute update request header number.

Example URL

Use this resource URL format.

GET

curl -u username:password "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests?q=HeaderNumber=1012&expand=all"

Example Response

Here's an example of the response body in JSON format.
{
    "items": [
        {
            "HeaderId": 1011,
            "HeaderNumber": "1012",
            "Description": "CASE-1.3",
            "ProductCode": "INV",
            "RequestedDate": "2022-02-11",
            "StatusCode": "CLOSED",
            "Status": "Inventory attribute update request is closed.",
            "ProcessMode": null,
            "lines": [
                {
                    "HeaderId": 1011,
                    "LineId": 1006,
                    "LineNumber": 1,
                    "SourceLineId": null,
                    "OrganizationId": 207,
                    "OrganizationCode": "M1",
                    "InventoryItemId": 149,
                    "ItemNumber": "AS54888",
                    "RequestedQuantity": 1,
                    "RequestedUOMCode": "Ea",
                    "RequestedUnitOfMeasure": "Each",
                    "TransferQuantity": 1,
                    "ProjectId": 2255,
                    "ProjectNumber": "ABC",
                    "TaskId": 3039,
                    "TaskNumber": "1.1",
                    "TransferProjectId": 100000015107473,
                    "TransferProjectNumber": "zBI_Projinv-01",
                    "TransferTaskId": 100000015107499,
                    "TransferTaskNumber": "1.1",
                    "StatusCode": "CLOSED",
                    "Status": "Inventory attribute update request is closed.",
                    "SecondaryRequestedQuantity": null,
                    "SecondaryUOMCode": null,
                    "SecondaryRequestedUnitOfMeasure": null,
                    "SecondaryTransferQuantity": null,
                    "links": [
                        {
                            "rel": "self",
                            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1011/child/lines/1006",
                            "name": "lines",
                            "kind": "item",
                            "properties": {
                                "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A657870000000017704000000017372001B6F7261636C652E6A626F2E646F6D61696E2E4E756C6C56616C75655899C1C58DAABEEB02000149000A6D53514C54797065496478700000000C78"
                            }
                        },
                        {
                            "rel": "canonical",
                            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1011/child/lines/1006",
                            "name": "lines",
                            "kind": "item"
                        },
                        {
                            "rel": "parent",
                            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1011",
                            "name": "inventoryAttributeTransactionRequests",
                            "kind": "item"
                        }
                    ]
                }
            ],
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1011",
                    "name": "inventoryAttributeTransactionRequests",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000378"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1011",
                    "name": "inventoryAttributeTransactionRequests",
                    "kind": "item"
                },
                {
                    "rel": "child",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1011/child/lines",
                    "name": "lines",
                    "kind": "collection"
                }
            ]
        }
    ],
    "count": 1,
    "hasMore": false,
    "limit": 25,
    "offset": 0,
    "links": [
        {
            "rel": "self",
            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests",
            "name": "inventoryAttributeTransactionRequests",
            "kind": "collection"
        }
    ]
}

Update the Transfer Quantity for a Specific Header Number

In this scenario, the warehouse manager updates the requested quantity to be transferred from one project and task to another for a specific inventory attribute update request header number.

Example URL

Use this resource URL format.

POST

curl -u username:password -X POST -H "Content-Type:application/vnd.oracle.adf.resourceitem+json" -d 'request payload' 
servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests"
"
curl -u username:password -X POST -H "Content-Type:application/vnd.oracle.adf.resourceitem+json" -d ' 
servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests"

Example Request

Here's an example of the request body in JSON format.
{"Description": "CASE-4", 
"ProductCode":"INV",
"RequestedDate": "2022-02-11",
"ProcessMode":"3",          
"lines": [{
"OrganizationCode": "M1",
     "ItemNumber": "AS54888",
     "RequestedQuantity": "1",
     "RequestedUOMCode": "Ea", 
     "ProjectNumber":"ABC",
     "TaskNumber":"1.1",
     "TransferProjectNumber":"zBI_Projinv-01",
     "TransferTaskNumber":"1.1"    }]}

Example Response

Here's an example of the response body in JSON format.

{
    "HeaderId": 1015,
    "HeaderNumber": "1016",
    "Description": "CASE-4",
    "ProductCode": "INV",
    "RequestedDate": "2022-02-11",
    "StatusCode": "OPEN",
    "Status": "Inventory attribute update request is open.",
    "ProcessMode": "3",
    "lines": [
        {
            "HeaderId": 1015,
            "LineId": 1008,
            "LineNumber": 1,
            "SourceLineId": null,
            "OrganizationId": 207,
            "OrganizationCode": "M1",
            "InventoryItemId": 149,
            "ItemNumber": "AS54888",
            "RequestedQuantity": 1,
            "RequestedUOMCode": "Ea",
            "RequestedUnitOfMeasure": "Each",
            "TransferQuantity": null,
            "ProjectId": 2255,
            "ProjectNumber": "ABC",
            "TaskId": 3039,
            "TaskNumber": "1.1",
            "TransferProjectId": 100000015107473,
            "TransferProjectNumber": "zBI_Projinv-01",
            "TransferTaskId": 100000015107499,
            "TransferTaskNumber": "1.1",
            "StatusCode": "OPEN",
            "Status": "Inventory attribute update request is open.",
            "SecondaryRequestedQuantity": null,
            "SecondaryUOMCode": null,
            "SecondaryRequestedUnitOfMeasure": null,
            "SecondaryTransferQuantity": null,
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1015/child/lines/1008",
                    "name": "lines",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000278"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1015/child/lines/1008",
                    "name": "lines",
                    "kind": "item"
                },
                {
                    "rel": "parent",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1015",
                    "name": "inventoryAttributeTransactionRequests",
                    "kind": "item"
                }
            ]
        }
    ],
    "links": [
        {
            "rel": "self",
            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1015",
            "name": "inventoryAttributeTransactionRequests",
            "kind": "item",
            "properties": {
                "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000278"
            }
        },
        {
            "rel": "canonical",
            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1015",
            "name": "inventoryAttributeTransactionRequests",
            "kind": "item"
        },
        {
            "rel": "child",
            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1015/child/lines",
            "name": "lines",
            "kind": "collection"
        }
    ]
}

The lines are not processed yet, so you can update the information if required.

Example URL

Use this resource URL format.

PATCH

curl -X PATCH -u "username:password" -H "Content-Type: application/vnd.oracle.adf.resourceitem+json" -d 'request payload'  "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1015/child/lines/1008"

Example Request

Here's an example of the request body in JSON format.

{
    "RequestedQuantity":2
}

Example Response

Here's an example of the response body in JSON format.

{
    "HeaderId": 1015,
    "LineId": 1008,
    "LineNumber": 1,
    "SourceLineId": null,
    "OrganizationId": 207,
    "OrganizationCode": "M1",
    "InventoryItemId": 149,
    "ItemNumber": "AS54888",
    "RequestedQuantity": 2,
    "RequestedUOMCode": "Ea",
    "RequestedUnitOfMeasure": "Each",
    "TransferQuantity": null,
    "ProjectId": 2255,
    "ProjectNumber": "ABC",
    "TaskId": 3039,
    "TaskNumber": "1.1",
    "TransferProjectId": 100000015107473,
    "TransferProjectNumber": "zBI_Projinv-01",
    "TransferTaskId": 100000015107499,
    "TransferTaskNumber": "1.1",
    "StatusCode": "OPEN",
    "Status": "Inventory attribute update request is open.",
    "SecondaryRequestedQuantity": null,
    "SecondaryUOMCode": null,
    "SecondaryRequestedUnitOfMeasure": null,
    "SecondaryTransferQuantity": null,
    "links": [
        {
            "rel": "self",
            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1015/child/lines/1008",
            "name": "lines",
            "kind": "item",
            "properties": {
                "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000378"
            }
        },
        {
            "rel": "canonical",
            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1015/child/lines/1008",
            "name": "lines",
            "kind": "item"
        },
        {
            "rel": "parent",
            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1015",
            "name": "inventoryAttributeTransactionRequests",
            "kind": "item"
        }
    ]
}

Delete the Project Transfer Request for a Specific Header Number

In this scenario, the warehouse manager deletes the project transfer request for a specific inventory attribute update request header number.

Example URL

Use this resource URL format.

GET

curl -u username:password "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests?q=HeaderNumber=1016&expand=all"

Example Response

Here's an example of the response body in JSON format.

{    "items": [
        {
            "HeaderId": 1015,
            "HeaderNumber": "1016",
            "Description": "CASE-4",
            "ProductCode": "INV",
            "RequestedDate": "2022-02-11",
            "StatusCode": "OPEN",
            "Status": "Inventory attribute update request is open.",
            "ProcessMode": null,
            "lines": [
                {
                    "HeaderId": 1015,
                    "LineId": 1008,
                    "LineNumber": 1,
                    "SourceLineId": null,
                    "OrganizationId": 207,
                    "OrganizationCode": "M1",
                    "InventoryItemId": 149,
                    "ItemNumber": "AS54888",
                    "RequestedQuantity": 2,
                    "RequestedUOMCode": "Ea",
                    "RequestedUnitOfMeasure": "Each",
                    "TransferQuantity": null,
                    "ProjectId": 2255,
                    "ProjectNumber": "ABC",
                    "TaskId": 3039,
                    "TaskNumber": "1.1",
                    "TransferProjectId": 100000015107473,
                    "TransferProjectNumber": "zBI_Projinv-01",
                    "TransferTaskId": 100000015107499,
                    "TransferTaskNumber": "1.1",
                    "StatusCode": "OPEN",
                    "Status": "Inventory attribute update request is open.",
                    "SecondaryRequestedQuantity": null,
                    "SecondaryUOMCode": null,
                    "SecondaryRequestedUnitOfMeasure": null,
                    "SecondaryTransferQuantity": null,
                    "links": [
                        {
                            "rel": "self",
                            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1015/child/lines/1008",
                            "name": "lines",
                            "kind": "item",
                            "properties": {
                                "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A657870000000017704000000017372001B6F7261636C652E6A626F2E646F6D61696E2E4E756C6C56616C75655899C1C58DAABEEB02000149000A6D53514C54797065496478700000000C78"
                            }
                        },
                        {
                            "rel": "canonical",
                            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1015/child/lines/1008",
                            "name": "lines",
                            "kind": "item"
                        },
                        {
                            "rel": "parent",
                            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1015",
                            "name": "inventoryAttributeTransactionRequests",
                            "kind": "item"
                        }
                    ]
                }
            ],
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1015",
                    "name": "inventoryAttributeTransactionRequests",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000278"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1015",
                    "name": "inventoryAttributeTransactionRequests",
                    "kind": "item"
                },
                {
                    "rel": "child",
                    "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests/1015/child/lines",
                    "name": "lines",
                    "kind": "collection"
                }
            ]
        }
    ],
    "count": 1,
    "hasMore": false,
    "limit": 25,
    "offset": 0,
    "links": [
        {
            "rel": "self",
            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests",
            "name": "inventoryAttributeTransactionRequests",
            "kind": "collection"
        }
    ]
}

Note:

Since the request is not processed yet, we can delete the header and lines.

To confirm the deletion of the record, perform a GET operationusing the header number on the resource.

Example URL

Use this resource URL format.

GET

curl -u username:password "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests?q=HeaderNumber=1016&expand=all"

Example Response

Here's an example of the response body in JSON format.

{
    "items": [],
    "count": 0,
    "hasMore": false,
    "limit": 25,
    "offset": 0,
    "links": [
        {
            "rel": "self",
            "href": "https://servername/fscmRestApi/resources/version/inventoryAttributeTransactionRequests",
            "name": "inventoryAttributeTransactionRequests",
            "kind": "collection"
        }
    ]
}