Common Instructions for Generating a Transaction Saved Search for Open Item Lines

This article will guide you through the common instructions to consider when generating a Transaction saved search specifically for open item lines in NetSuite. Transaction Type: To focus the search on open item lines, it’s crucial to filter by transaction type. Include only the relevant transaction types such as sales orders, purchase orders, or invoices.… Continue reading Common Instructions for Generating a Transaction Saved Search for Open Item Lines

Saved Search to Get the Percentage of Fulfilled Quantity Out of Ordered Quantity

1. Navigate to Lists > Search > Saved Searches > New > Select Transaction. 2. Under Criteria tab, set the following:Type is Sales OrderDate is (specify a specific period)Main Line is falseTax Line is falseCOGS Line is falseShipping Line is false 3. Under Results tab, set the following:   Document NumberNameQuantityQuantity Fulfilled/ReceivedFormula (Percent) > Formula = nvl({quantityshiprecv},0)/nullif(nvl({quantity},0),0)4. Enter a Search Title.5. Hit Save & Run.

Customise a saved search which automatically sends email alert to sales reps when new sales order are entered

–Go to list>search>saved search>new>transaction -Under criteria tab> standard subtab type= sales order main line= True Date is within today -Under Results tab>column subtab number, name ,amount,sales rep fields are added -Under Email tab mark send email alert when records are created/updated -Go to specific recipients tab add an employee name –Receipts from results tab add… Continue reading Customise a saved search which automatically sends email alert to sales reps when new sales order are entered

How to Create a List of Item Receipts from a Specific Vendor for a Specific Month

Need a list of Item Receipts from a Specific Vendor for a specific month. 1. Navigate to Reports > Saved Searches > All Saved Searches > New.2. Select Transaction from the list.3. In Criteria > Standard > Filter:    a. Select Type = Item Receipt    b. Select Created From Fields… from the dropdown and in the popup select Type. In the new popup box, choose Purchase Order    c. Main Line=False    d. Select Quantity from the dropdown and in the popup, select greater than and… Continue reading How to Create a List of Item Receipts from a Specific Vendor for a Specific Month

Transaction Saved Search to Display List of Transactions with a Specific Number of Lines

To create a saved search to show a list of transactions, for example Purchase Orders, with only one line or any specific number of lines, follow the steps below: Navigate to Lists > Search > Saved Searches > New. Select Transaction as the Search Type. On the Criteria tab > Standard subtab, enter a filter for Type = Purchase Order. On the Criteria tab > Summary subtab, enter… Continue reading Transaction Saved Search to Display List of Transactions with a Specific Number of Lines

Duplicate Transfer Order Lines in saved search

Scenario How to remove duplicate Transfer Order Lines in Transfer Order saved search Solution Click Edit to modify the Search Click Criteria tab Click Standard sub tab(add these criteria’s) Main Line = False Tax Line = False Shipping Line= False COGS Line= False Transaction line type = is Item Click Save or Save & Run button

Getting transactions between two trandate

/** * Fetch transactions created between two dates * @since 2015.2 */function getTransaction () { try { var transactionSearchObj = search.create({ type: “transaction”, filters: [ [“type”, “anyof”, “CustCred”, “CustInvc”], “AND”, [“mainline”, “is”, “F”], “AND”, [“shipping”, “is”, “F”], “AND”, [“cogs”, “is”, “F”] ], columns: [ search.createColumn({ name: “custbody_eb_channel”, summary: “GROUP”, label: “Channel” }), search.createColumn({ name: “formulacurrency”,… Continue reading Getting transactions between two trandate

Edit Link in Saved Search

The Edit Link is not available for Bin transfer, Item Receipt, packing Slip, Inventory Adjustment and Inventory Transfer if their accounting period is closed. Go to Setup -> Accounting -> Manage Accounting Periods Edit link can be only enabled for these transactions by checking the ALLOW NON-G/L CHANGES in the Manage Accounting periods page. Then… Continue reading Edit Link in Saved Search

Item Fulfilment link in Bill Credit

Item Fulfilment created from Supplier Return Authorization need to be displayed in the associated Bill Credit as links. The only link between the Supplier Return Authorization, Packing Slip, and Bill Credit is the SRA number. As we could not link the Packing Slip directly with Bill Credit, created a saved search which lists the Packing… Continue reading Item Fulfilment link in Bill Credit