Follow the below mentioned steps for set up India GSP Configurations Go to Setup > India Localization > GSP Configuration. Click Edit. On the India GSP Configuration Page, select a E-Document Package. Check the Enable E-Document Package box. In the Webservice URL field, enter the URL for connecting GSP. For example, https://einvoicing.internal.cleartax.co/v2/eInvoice/generate. In the Connection… Continue reading set up India GSP configurations
Month: January 2023
User needs to redirect to item record from the transaction saved search.
Scenario: A formula can be used to add hyperlink to your Saved Transaction Searches which directs users to the Item record. Solution: Go to Reports > Saved Searches > All Saved Searches > New. Select Transaction. Click the Results tab.Add a Formula (Text) to the Search columns.Enter this as the formula: ‘<a href="https://.app.netsuite.com/app/common/item/item.nl?id=’ || {item.internalid}… Continue reading User needs to redirect to item record from the transaction saved search.
PROPOSAL FOR ADDING SHIPPING ADDRESS TO QUOTE TO SALES ORDER PAGE
Proposal Summary This proposal covers the development of Adding a new Shipping Address Section to the Quote to the Sales Order Page. Requirement Needs to add a shipping address section to the Quote to the Sales Order Page. Our Solution It is possible to display a shipping address Section below the Billing address. A… Continue reading PROPOSAL FOR ADDING SHIPPING ADDRESS TO QUOTE TO SALES ORDER PAGE
How can set the total tax as zero in the body level of the record using the Celigo
Hardcode the value of the Total tax in the NetSuite as zero Click the Setting button and enter default value as ZERO
How to set the user event script not to trigger during other Scheduled Script.
To resolve this remove the scheduled script context from the Execution Context under Context Filtering in the deployment of the user event Script
What is the reason for not able to pass the salesorder document number as URL parameter when we pass it from a drop down list in suitelet that sources salesorder
The reason for that is the salesorder document number in the sourced dropdownlist list contains “#”. When we try topass that as URL it gets trimmed at #. The solution is to pass the internal id or remove the # symbol before passing it as a parameter.
How to hide a Column line field in a row
Write the below code in the LineInit of the ClientScript
How to get the previous month of current date
let new_date = new Date();
How To get Start and End Date of current month
const date = new Date(); // get current dateconst month = date.getMonth();const year = date.getFullYear();const startDt = new Date(year, month, 1);const endDt = new Date(year, month + 1, 0);
Base URI in Multiple Scenarios | Celigo
//Info: JSTN-1308 This common part of an API’s URL is used across all of the HTTP endpoints you invoke. A base URI makes it easier to configure exports and imports.In Celigo, we can define the Base URI in the connection itself and can add a version to it. The Base URI is further called in… Continue reading Base URI in Multiple Scenarios | Celigo