My Stuff
Nominate Your Peers for NetSuite Support Community's Choice of the Quarter! Submit your nomination today.
Intelligent Payment Automation version 1.0.3 is now available in the SuiteApp Marketplace. The SuiteApp, powered by BILL, lets you automate payments, manage vendor details, and bank account information within NetSuite. Learn more
Comments
-
It answered my question, but I was still not able to find the article 102501. Perhaps this article number is not valid or no longer available. I did not have any other article numbers to test the process given.
-
Here is the solution I came up with: Overview Create a checkbox field on Account to indicate which account are to be included. Create a new dropdown field on the Inventory Adjustment form which will have the selected options. Create a workflow to populate the original Adjustment account field with the Account selected from…
-
This is the function that I was able to create to solve the problem. The requestBody contains the values for subsidiary, location, transfer location, memo, item, adjustment quantity, from bin, and to bin. async function transferItem(requestBody){ try{ // Create new inventorytransfer record let transferRecord =…
-
What search tool did you use with the statement select * from oa_columns where column_name = 'built'; When I run this in my query tool, I get : Error Invalid search type: oa_columns
-
Thank you that works. And I appreciate your detailed answer and showing the steps you used to get to the answer. Greatly appreciated
-
thank you That solved the problem. It had been working with "altshippingcost" up untill a few days ago and then it just quit working.
-
No I don't think I need further checking. I assume there is something wrong in the way the custbody_atlas_assy_desc was set up. I have a working solution so it is not an issue now. I may look at this field sometime in the future. Anyway you pointed me in the right direction. Thanks
-
Here is the complete query I am using: Select T.id as WOId, BUILTIN.DF(T.TranID) as order, BUILTIN.DF(T.custbody_tw_proj_copied) as Project, TL.item AS ItemId, Item.description, BUILTIN.DF(TL.item ) AS Item, ABS(TL.Quantity) as Quantity, TL.itemSource, MT.Date, Item.averageCost, T.custbody_atlas_assy_desc as assy,…
-
This does return the Assembly Item, but it also returns 3828 other items. Not sure how all the other items are related. I am not familiar with this syntax: From Transaction as T, bomAssembly as B, item as I
-
I think you have given me the right answer, but I can't query T.assemblyitem. Search error occurred: Field 'assemblyitem' for record 'transaction' was not found
-
Here you go.
-
Have not found the answer as to why the T.custbody_atlas_assy_desc as assy does not return the correct information in the query, but I was able to do a work around by querying on field BUILTIN.DF(t.billofmaterials) instead which so far has given me the correct assembly item number. I would still like to know why the…