Netsuite Add Custom Fied to Transaction Column Field - netsuite

On "Reconcile Credit Card Statement" screen of Netsuite UI, at "Payment and Credit" section (the list), I want to add one more column into it. And this column is referred to the custom field of the Payment.
Can we do that?
Any help is appreciate!
Thank you.

This is a standard scripted screen, and as such cannot be customised.
You'll notice the lack of both "Customise" on the sublist view, and also at the top right of the screen.
You could always contact NetSuite Support and get them to raise it as an enhancement request to be able to customise the sublist view itself...?
Thanks
Pete.

Related

SUITETALK- Netsuite searchAdvanced gives line price in base currency

Can anyone please help us with this?
We are using Netsuite advanced search to pull sales order for different subsidiary. We are able to get all the line items(except tax itmes) but its consists the amount in base currency. Is there any way we can get response with exact amount visible in UI.
Also Its very hard to understand the basic of Netsuite SUITE TALk- SOAP. Do you recommend any resources that will ease learning?
Thanks
Just an update with this question, with Advanced search we are able to get the foreign currency of Subsidiary using fxCost in columns But line items doesn't have this option. This causes whole another problem for us. Then we decided to use SAVED SEARCH. Saved search provides us feature to disable foregin currency just by choosing CONSOLIDATED EXCHANGE RATE to none. We are using saved search ID in the Advanced search paramater ie using savedSearchScriptId from Netsuite Schema.
Hope it would be helpful to anyone who is strugglign with this kind of issue.
Thanks
For tax line in fx currency, prefer to do Tax Amount/exchange rate.

Restrict Customer Item Pricing in Netsuite

Good afternoon,
We've had a question come up which I can't find the answer to, in relation to the Item Pricing sublist on Customer Records in Netsuite.
Basically we want to know if it is possible to Restrict Access to this sublist, so anyone who has access to Customer Records can View the sublist, but only Users with certain Roles can actually Edit the sublist.
Is there any native functionality, or possibly customisation, that could do this?
I haven't been able to find anything in Role Permissions, but I could be overlooking something.
Appreciate your help, thank you!
Potentially a UserEvent with N/serverWidget or last resort will be JQuery.
I'm assuming this has been sorted out by now, but I have done something similar to this.
One of our clients did not want their sales reps to have access to the information on the pricing of an item.
To achieve this, I made a custom form that was the exact same as the standard, except I removed the pricing sublist from the form on creation.
Then on the role record under the forms subtab, the item sublist, I ticked only that customised form for inventory parts.
This meant all with that role can only see that inventory part form. ie, no pricing information.

How to create a Form-Specific Help menu in Modern UI?

One of the standing out features of Acumatica's Modern UI is the Form-Specific Help menu, which is opened when you click the Help button while viewing the majority of forms:
I wonder how big is the effort to create Form-Specific Help menu for a custom screen?
As described in the Acumatica ERP documentation, to link a reference article with a particular screen, you should specify the Article ID based on the Screen ID of the form, replacing periods with underscores. For example, if the Screen ID is AP.10.10.00, the ID of its reference form must be specified as AP_10_10_00.
A very similar concept is used to link form-specific help with a particular screen. If you take a quick look at the Wiki Site Map (SM.20.20.10), you should notice the Form Quick Reference node under User Guide:
The Form Quick Reference node in its order contains a number of sub-nodes representing different modules of Acumatica ERP. And by checking the list of Wiki articles included into the Sales Orders (User Guide -> Form Quick Reference -> Sales Orders), you can easily tell, that form-specific help menu is nothing more than a Wiki article linked to a particular screen. To link form-specific help with a particular screen, you should specify the Article ID based on the Screen ID of the form, replacing periods with underscores and adding _NAV in the end of the Article ID.
The content of a Wiki article representing form-specific help is usually quite simple:
==Procedures==
[HelpRoot_User\SO__How_Create_Sale_Order|To Create a Sales Order (SO)]{br}
...
[HelpRoot_User\SO__How_Process_RM_Order|To Process Authorized Returns (RM)]
==Concepts==
[HelpRoot_User\SO__con_Order_Processing|Sales Order Processing Options]{br}
...
[HelpRoot_User\SO__con_Order_Types_for_Returns|Predefined Order Types for Customer Returns]
==Form Reference==
[HelpRoot_User\SO_30_10_00|Sales Orders] ([~/?ScreenId=SO301000|SO.30.10.00])
==Help Dashboard==
For the majority of standard Acumatica ERP screens, form-specific help consists of up to 4 sections:
Procedures
Concepts
Form Reference
Help Dashboard
Also keep in mind, the Procedures section is considered optional and can be easily excluded from some of form-specific help menus.

NetSuite - Adding Features to Standard Transaction Form?

Is is possible to add a script to a standard form in NetSuite?
My goal is to just display an inline text of a summation of a sublist column shown on the Bill of Materials Inquiry page.
You can deploy Scripts to Record Types or to Custom Forms. You cannot deploy Scripts to the other native pages like Search Results, a Report, or a list of all the Sales Orders.
Yes, unless you specify the customform field specifically, a script will run on every form.

NetSuite sublist

I am having a problem finding out an id of a sublist. I am using SuiteScript 1.0. For instance, I need to list the components of an assembly item record, how do I find out the list id and the "type and field name to use in the nlapiGetCurrentLineItemValue or nlapiGetCurrentLineItemValue methods. What I am looking for is how now and in the future when presented with a sublist, do I go about finding the ids of the objects needed. I have internal ids turned on but that does not help in the sublist view. What is the best way to get this information when I need it? thanks for any help you may give.
You can use nlapiGetAllLineItems() to get an array of all the sublists. You may need to load the record first and do record.getAllLineItems()
I have found the most useful method for figuring out internalids is to run nlapiLoadRecord(..) in your Browser Console and examine the resulting object. Another trick is the add &xml=T to the end of the URL of the record, which displays the record in XML format. NetSuite also documents most of the internalids in the Records Browser.
In this case you use console in Google Chrome. Open the Specific Assembly Item Record page and Press F12 and select console.After give following code
nlapiLoadRecord('assemblyitem', 90088(id for specific record));
after show result in console. Select linefields and Item. Now it show the fields of sublist. If You have any doubt let me know.

Resources