プロフィール
コメント
-
✨ Thank you! ✨
-
I'm aware, thank you. I'm trying to consider what to take into account for achieving this process myself.
-
The items I felt I was missing on the GL impact were received at 0 value, so there's no reason for them to show on the GL impact. I think everything is working as intended.
-
No sorry, it did not answer my question. Though I think I have worded my question poorly to begin with. I'll come back with an answer if I have one.
-
Thanks for that! The reason for modifying the netbook value would be when I merge two assets with the same lot number and depreciation start date, but I think instead I'm just going to keep them separate if there is any depreciation that has started as it does indeed seem too complicated to update netbook value via…
-
They're 2 different items. Never mind
-
Ah, that's a useful reminder. I always forget what the limit is. Also 10 on a single record?! Goodness you've done a lot of work~
-
Great answer~
-
I agree with Amanda, it's all up to you and your group to review how it will affect business performance and processes and then test, test and test in your sandbox. There is no clear guide as each business and the way they use their apps are totally unique.
-
Searches, in my experience, are usually written like so. var mySearch = search.create({ type: search.Type.CUSTOMER, columns: ['entityid', 'firstname', 'lastname', 'salesrep'], filters: ['entityid', 'contains', 'Adam'] }); So, simply putting type: 'csvimporterror' sounds wrong to me. Perhaps you need to import…
-
It certainly should be a supported type. INVENTORY_BALANCE Only suggestion I could offer without seeing the script and saved search: Ensure the correct internal ID Ensure that the user running the script has permission to access the saved search. The error may arise if your role or user doesn’t have access to saved…
-
Start by contacting your account manager, pretty sure these are all paid features and you'll need to get a license for them through your account manager first.
-
I can't see anything wrong with your script. More likely it's an issue with the script record or deployment record. Make sure it's deployed and testing and that it's deployed against the correct record. As a possible outlier, I've sometimes run into the issue of not naming my script files with .js i.e. 'script_file' won't…
-
Ah, right you are. Created the form and set the print template of that form to the PDF template. Cheers!
-
Thanks for the clarification Amanda~ From support: "Upon checking, your NetSuite Package has recently renewed and the Training On Demand pass that is bundled with your license suite hasn’t been assigned to a specific user yet. Your previous access has already expired; hence, you no longer have access to it." Asked them to…
-
Yes, certain details could add multiple lines to the search, but in this case I'm referring specifically to that the only subsidiary data on inventory searches is from the item record, which isn't useful because it doesn't tell me that the inventory is in that subsidiary, but that the subsidiary has access to that item…
-
Ah, yea I'm not sure sorry. I don't have a lot of experience using premade searches in scripts, I would prefer to make my own within the script like so. (Note: This exact script won't work as I have SALES_ORDER as the search type. I wasn't sure what search type to use that has both the item type and its sales details.) But…
-
I would be very wary of using summaries for the search on your script. It means it's grouping sets of data together that you or at least I certainly can't visualize in my head what it might look like on the screen. If for example I was grouping by location for a search of items, I'd get all my items grouped onto one line,…
-
It looks like you're using your customsearch_avg_daily_sales in the script which is the search you shared an image of first, is that right? If so, I don't see any field for the item type on that search. Can you share your logs please? What value is coming out of the log for itemType?
-
No, there were many more. It was just the first one at the new location that the upload was getting stuck on. Having split the uploads per location, all items uploaded just fine.
-
I often find a good way to start to figure out what I might be missing is to copy the url of the page I want, then try to load it on one of the restricted accounts. Would this be of any help?
-
Yep, needed to have separate from and to locations for each transaction. So when looking for a particular serial number at a particular location, it was likely still using or looking in the first location where the serial number is not at.
-
Oh.. I'm gonna guess it's because it doesn't accept multiple locations and I have to do those as separate uploads. One sec..
-
Thanks @Tigran Shahnazaryan , it's happening on multiple types of items for multiple users with varying set ups as to where the items are coming from, which account it's going to. I think I'll open a support ticket to see if someone can investigate it yea, thanks for the suggestion. I'll come back with a solution later if…
-
Mm, a good answer @Nicole Mendoza-Oracle . I'm sure I could utilize this in my other scripts. Thank you for the suggestion~
-
Thanks @Ruth T, I had not. I had taken Tris' suggestion on that it's an enhancement request and moved past it. I'm quite busy this week but will take a look at your suggestion and try to implement it as soon as I find the time. Thank you :)
-
Because it's not a sublist, it's a record of its own acting as a kind of sublist. Right… Re-doing my code.
-
This works, thank you. Double forcing the preferred record type onto each of the individual roles has made the record the preferred type.
-
Answer from SuiteScript 2.0: Extend NetSuite with JavaScript - Scripting Sublists - 14:17 The issue was on the sublist record, the field that I choose to be the parent, I should instead be selecting what the parent record is (in this case Monthly Asset Disposal record) not what I assumed was the parent or most important…
-
Ok, so the subtab is showing. Apparently it just doesn't show if there is only 1 subtab, it needs a minimum of 2 to appear? Next is trying to get my editable sublist on the subtab, which still isn't appearing.