Customer Aging Report Using Saved Search

var invoiceSearchObj = search.create({    type: “invoice”,    filters:    [       [“type”,”anyof”,”CustInvc”],        “AND”,        [“mainline”,”is”,”T”],        “AND”,        [“amountremaining”,”greaterthan”,”0.00″]    ],    columns:    [       search.createColumn({          name: “entity”,          summary: “GROUP”,    … Continue reading Customer Aging Report Using Saved Search

Customize the A/P Aging summary for displaying the purchased quantity.

A/P aging report can be customized to display the quantity purchased. The quantity received is displayed by adding the ‘Item: Current quantity available’ field into the report. The quantity which is yet to be received is displayed by adding the ‘Item: Current quantity on order’ into the report as shown below. For getting the quantity… Continue reading Customize the A/P Aging summary for displaying the purchased quantity.