i need to use transfer orders for inbound shipment...
# ask-stanley-ai
m
i need to use transfer orders for inbound shipment (it is not enabled natively) is there a way as for doing this? need a step by step on how to do this would we need a custom record and scripts?
c
AI generated answer (using internal Slack threads):
Based on the conversations, it seems that you can't natively use transfer orders for inbound shipments in NetSuite. However, you can potentially achieve this by creating a custom record and using SuiteScript to manipulate the data. Here's a step-by-step guide on how you might do this: 1. Create a custom record: This record will hold the details of your inbound shipment. You can create custom fields that match the data you need to track, such as the shipment status, items, quantities, etc. 2. Create a SuiteScript: This script will be used to manipulate the data in your custom record. For example, you can create a script that changes the 'shipmentstatus' field of your custom record to 'inTransit' when certain conditions are met. Here's a sample code snippet from the conversations that shows how this might be done:
Copy code
javascript
// check to see if actual last release date is set and convert to in transit
if(REC.getValue('custrecordactlastrelease') && REC.getValue('shipmentstatus')=='toBeShipped') {
    REC.setValue('shipmentstatus','inTransit');
}
3. Link the custom record to your transfer order: You can do this by creating a custom field on the transfer order that references your custom record. This way, you can track the inbound shipment associated with each transfer order. 4. Update the custom record as needed: As your inbound shipment progresses, you can update the custom record to reflect the current status. This can be done manually or through additional SuiteScripts. Please note that this is a high-level guide and the actual implementation may vary based on your specific requirements and NetSuite setup. ****** Disclaimer: This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes. ******
Slack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.843667388
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.830779254
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.828291476
Please provide your feedback on this answer.