To convert amount in words and include the customer currency along with it.

To convert amount in words and include the customer currency along with it.. Created a custom field. And enter the below given formula in the default value field. {currencysymbol} is the internal id of currency. {currencysymbol} || ‘ ‘ || CASE WHEN {total}=0 THEN ‘ZERO’ ELSE TO_CHAR(TO_TIMESTAMP(LPAD(TRUNC({total}, 0), 9, ‘0’), ‘FF9’ ), ‘FFSP’) ||’ ‘… Continue reading To convert amount in words and include the customer currency along with it.

To convert amount in INR to words using formula

To convert amount in INR to words using formula. Created a custom field. And enter the below given formula in the default value field. ‘RUPEES’ || ‘ ‘ || CASE WHEN {custbody_amount_in_inr}=0 THEN ‘ZERO’ ELSE TO_CHAR(TO_TIMESTAMP(LPAD(TRUNC({custbody_amount_in_inr}, 0), 9, ‘0’), ‘FF9’ ), ‘FFSP’) ||’ ‘ || (CASE WHEN {custbody_amount_in_inr}-TRUNC({custbody_amount_in_inr}, 0) > 0 THEN ‘ AND ‘… Continue reading To convert amount in INR to words using formula

To allow any employee or vendor designated as a project resource to be assigned to tasks for this project.

When you assign a resource to tasks that is not specified the Resources subtab, and if the Display All Resources for Project Task Assignment box is checked then NetSuite automatically adds the person to the Resource subtab for you. You cannot delete resources from the Resources subtab after they are assigned to project tasks. Go… Continue reading To allow any employee or vendor designated as a project resource to be assigned to tasks for this project.

Create a subtab in a record using user event script.

In the beforeLoad() entry point in the user event script, we can use the below code and add fields to the sublist using addField() and set values to those fields. let employeeForm = scriptContext.form;                 employeeForm.addTab({                     id: ‘custpage_jj_employee_tab’,… Continue reading Create a subtab in a record using user event script.

Resource in a project record

To make a resource available in project record, we need to check the “project resource” checkbox in the employee record of the required employee. Lists -> Employees -> Employees Below the Human Resources subtab, Check the Project Resource checkbox.

Enabling Project Features

To track projects with basic project records, you must enable the Projects feature. To track projects with more advanced project records, you must enable both the Projects feature and the Project Management feature. To use milestone billing with Project Management, you must enable Projects, Project Management and Advanced Billing. To use resource allocations with Project… Continue reading Enabling Project Features