Can anyone tell me what are the values for the enu...
# suitetalkapi
m
Can anyone tell me what are the values for the enum field refname for each of the enum eg response which tells the value
Copy code
"status": {
        "id": "B",
        "refName": "Pending Fulfillment"
    }
Ref: https://system.netsuite.com/help/helpcenter/en_US/APIs/REST_API_Browser/record/v1/2023.1/index.html#/definitions/itemReceipt
i
Item Receipt's don't have a status, seems like you are doing it from a Transfer Order? • Transfer Order:Pending Approval --> A • Transfer Order:Pending Fulfillment --> B • Transfer Order:Rejected --> C • Transfer Order:Partially Fulfilled --> D • Transfer Order:Pending Receipt/Partially Fulfilled --> E • Transfer Order:Pending Receipt --> F • Transfer Order:Received --> G • Transfer Order:Closed --> H
m
Thanks @Israel Gonzalez, i was creating the item receipt to change the purchase order status. Do the status code remains same for the purchase order as well as sales order?
b
m
@battk Thanks. what's the flow of these statuses? like it hops from A to B then so on or what? where can i find this info?
b
depends on the transactions, you can try looking through the documentation for each transaction type
but honestly most of the time its learning the transaction life cycle
m
@battk thanks