Discussions
Check out Oracle NetSuite upcoming events and conferences here
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Attention: Customers with NetSuite Electronic Bank Payment (EBP) SuiteApp, version 2020.2 QA (ID 315896) must UPDATE (do NOT uninstall) their bundle to the Production version 2022.1 (ID 416781) by December 31, 2022. Note: If users fail to manually update the Electronic Bank Payments SuiteApp within the given time window, this version of the SuiteApp (ID: 315896) will be deprecated and the account will not be updated to Leading version (2022.1) of the Electronic Bank Payments SuiteApp. Please refer to the campaign email sent to impacted customers for more information.
Update your Profile with your Support type to get your Support Type badge.
NetSuite Release 2023.1 is here! Download the release notes and post your questions in the new Release 2023.1 category.
Join the webinar and "Get the Most Out of NetSuite Inventory Management" on May 2, 2023 at 10 AM PST. Click on this link to register. Do not forget to RSVP on this page as well!
How to show locationaveragecost, lastpurchaseprice via Query?
Hello Gurus,
I'm trying to get the locationaveragecost & lastpurchaseprice for each item's location in this SuiteQL query. For example, this can be easily done in the Saved Search like this:
search.createColumn({ name: "locationaveragecost", join: "item", summary: "MAX", label: "Location Average Cost" }), search.createColumn({ name: "lastpurchaseprice", join: "item", summary: "MAX", label: "Last Purchase Price" })
But I'm unable to do it in the SuiteQL query, here is my SuiteQL Query in which I want to add locationaveragecost & lastpurchaseprice :
SELECT Transaction.ID, Item.ItemId, TransactionLine.Location, SUM(TransactionLine.Quantity) AS quantity, SUM(TransactionAccountingLine.Amount) as amount, Item.custitem_commodity_code, Item.stockunit, TransactionAccountingLine.accountingbook, FROM Transaction INNER JOIN TransactionAccountingLine ON ( TransactionAccountingLine.Transaction = Transaction.ID ) LEFT OUTER JOIN TransactionLine ON ( TransactionLine.Transaction = TransactionAccountingLine.Transaction ) AND ( TransactionLine.ID = TransactionAccountingLine.TransactionLine ) INNER JOIN Item ON (TransactionLine.Item = Item.ID) INNER JOIN InventoryItemLocations ON (TransactionLine.Item = InventoryItemLocations.Item) WHERE TransactionLine.Subsidiary = 5 AND Transaction.Posting = 'T' GROUP BY Transaction.ID, Item.ItemId, TransactionLine.Location, Item.custitem_commodity_code, Item.stockunit, TransactionAccountingLine.accountingbook
Tagged:
0