How to change the name of standard field in Netsuite? - netsuite

I really have problem to find how to change the name (label) of a standard field in Netsuite (e.g. the field "Amount" which is printed on the Sales Order, I want to change it to "Net Amount").
I know that over Setup-> Company -> Rename Records/Transactions I can change the record and transaction labels, but there isn't any possibility to change a "standard field" name...
Thanks!
Sales Order Netsuite

If you just want to change the label on the printed invoice, have a look at Customization > Forms > Transaction Form PDF Layouts and find the PDF layout for Sales Orders. You should be able to edit the labels and layout as you see fit.

Go to any Sales Order and choose Customize > Customize Form. (Alternatively, go to Customization > Forms > Transaction Forms then find the form for Sales Order). In the Printing Fields tab, under Columns, you should be able to see the row for Amount and change the label from Amount to Net Amount if you wish.

Related

Change Drop-Down Values Verbiage of PO Source (Drop-Ship, Purchase to Order)

We would like to change the display text of the drop-down values on PO Source of SO line items to something like 'Drop-ship to Client' and 'Purchase for Inventory'. Is this possible?
It is possible to change the PXStringListAttribute attribute of the field with a customization.
Since it's only a localized label change you can also change it on the Translation Dictionaries page (SM200540).
Result:

How to get Non inventory item to be printed in picking Ticket form in NetSuite?

I am using the Advanced PDF/HTML Template
Custom Picking Ticket PDF/HTML Template
I have some inventory items as well as non-inventory items
at the sales order
but the point is
when I hit the print button I get only the inventory items
is there any way around to add the non-inventory items
I am trying to find where Netsuite filter the Sales order item list to print inventory items only
There is a preference that you can toggle to control this. Under Setup > Accounting > Accounting Preferences > Order Management, make sure that Show Non-Inventory Items on Printed Forms is checked.

Netsuite Inventory Item Custom Forms keep changing

We have created a custom form for certain inventory items in Netsuite. When we want to go back and edit that inventory item, it automatically goes back to our default custom form. We manually have to change the form back to what we want to use each time we edit these types of items.
Is there a way to have it so when these specific items are opened to edit that it will always go to the custom form that we originally created it on?
No need to create a workflow/script. You just need to set the custom form to "Store Form with Record".
Customize the form and checked the option that says "Store Form with Record".
Every time you create an Item Record select the form and fill in the necessary information and save it. After saving it the form will be automatically saved with the record and it will be used every time you edit and view the record.
Definition of "Store Form with Record"
Check this box to store this custom form with each record entered with this form.
This ensures that your records are viewed and edited with this form regardless of who is viewing or editing the record.
Options:
1. Add the custom form to the menu and choose that menu item when editing those types of inventory items.
Write a workflow (SuiteFlow) that opens the correct form based on the inventory item type.
Write SuiteScript that will open the correct form based on the inventory item type.

Sharepoint 2007 : How to disable TextBox

I am new to sharepoint 2007. I have a following requirement.
1) I would to create a custom list for employee where they can select the item and fill-out the form and submit.
Example : List --> Hard Disk --> Click --> Create new list -->
List has following fields 1) EmpID 2) Customer name (Text) , 3) Order Date, 4) Qty 5) Price
Once user submit the list then I would like to disable the EMPID field and allow same user to edit the other fields if required.
How can I disable the text field (Empid) in the Sharepoint 2007 ? I would appreciate any other alternate or better idea.
Thanks,
Regards
Vick
I would use jQuery for this purpose. Here is an example that describes how to hide a text field on a SharePoint form. Change the .hide() to .attr('disabled','disabled') and this will disable the text field.
If you need help with deploying jQuery, see this question.
I am not sure its a better idea or not, but for that i used to do for this common scenario
that
fist identify the textbox id in html source (through web browser view source) after that i wrote javascript function to disable textboxes i.e. EMPID or we can do through style sheet and apply style using javascript..
You can create multiple content types for the same list. Have the user fill out the content type that contains the EmpID field (put a link in the LeftNav that sends them to NewItem.aspx with the proper ContentTypeId). Make the default content type the one without the EmpID, so when they go back in and edit they won't see that EmpID field.
The downside to this is that they'll see both content types in the New button dropdown. You can name them in a way that makes sense (New Hard Disk Order, Edit Hard Disk Order)

Hide field in SharePoint alert email

How can I hide a field in a SharePoint alert?
I have a custom event list (Calendar). I have a field (of type Note - aka Multi-line text) whose XML contents I generate manually in an event receiver. All my calendar views use this field as the Title for the Month, Week, and Day views.
I have a web part I include on the page that runs a jquery script that converts the XML title into a background color and mouseover text.
The problem is that this field and its ugly xml show up in sharepoint alerts. If I set the field to Hidden=true then it does not show up in the email, but it is no longer available to select as the Title for the Month, Week, and Day views when creating a new View. This is not acceptable as users need to be able to create views and be able to select this field as the title.
Is there another way to prevent this field from showing up in emails, along the lines of ShowInDisplayForm, ShowInEditForm, etc?
Would editing the fields in the alert template fix your issue?
http://blogs.msdn.com/sharepointdeveloperdocs/archive/2007/12/07/customizing-alert-notifications-and-alert-templates-in-windows-sharepoint-services-3-0.aspx
"To exclude some fields from being rendered in the email, you should include them in the <DigestNotificationExcludedFields> and <ImmediateNotificationExcludedFields> section."
Can you set another field to have that XML and have the jquery script run against that field instead? That would leave the Title field to be used normally.

Resources