In REST web services, you can transform a record from one type into an another, using data from an existing records. For example, you can create an invoice record from an existing sales order record, using data from the sales order. All record transformations available in SuiteScript are available in REST web services, too. Transformations… Continue reading How to transform records in REST Webservices?
Month: April 2024
Adding referenced fields and lists in Celigo flow.
Create an export flow of Sales Force and go to the referenced fields option. Now copy pasted the objects field Id with the sourcing Id as mentioned in the above image. For lists ,click on the pen icon, Select the child object type and choose the fields that you want for the list.
How can I display a workflow action button in the action menu?
I am using the Add button action in my workflow. I need the button to be displayed in the action menu rather than as a button. Where are the settings to configure this? Unfortunately, this feature is not yet available in NetSuite. We cannot add Workflow Buttons to the Action Menu.
How to know the best time to post in social medias?
1. Know Your Audience Before diving into complex analytics or relying solely on generalized data, start by understanding your audience. Different demographics have distinct behaviors and preferences when it comes to social media usage. Are your followers students, professionals, parents, or retirees? What time zone are they predominantly in? By gathering insights into your audience’s… Continue reading How to know the best time to post in social medias?
Sales Force Legal entity to NetSuite Sub-Customer
In the salesforce export flow, realtime trigger is created for legal entity object. In Import, the flow will be like get the data by the id of the record by mapping the response. get the data from the look up and map the response to a flow to netsuite.
Issue with saved search formula having a checkbox as a condition
Issue: Saved Search Formula > When having a checkbox as a condition {field} = ‘Yes’ is not working. Solution: When doing a Formula on a Saved Search having a checkbox as a condition, use ‘ T ‘ instead of ‘Yes’.
How to customize accounting preference using suitescript?
var accountingPref = config.load({ type: config.Type.ACCOUNTING_PREFERENCES }); accountingPref.setValue({ fieldId: ‘CLASSMANDATORY’, value: true }); accountingPref.save(); Note: The practice of customizing accounting preferences is not advisable. Please refrain from updating accounting preferences using scripts.
Sales Force Accounts to NetSuite Customers
Create a salesforce trigger with the data shown below, and create a flow with Realtime export from accounts. Import flow for NetSuite looks like, get the id from the response and map it in the flow.
NetSuite Payments to Sales Force Invoice Sync
Create an export flow of NetSuite. Type as Customer Payment In Import use type as Invoice. and give the saved search id to filter the payments from NetSuite.
Global search issue: Email Address Showing Up Instead of the Name
Issue: Email address is showing up as Global Search result instead of name when doing an employee search. For instance, when the user type in EMP: test in the global search for an employee named “Test Employee”, the result will show “Employee: testemployee@test.com” instead of “Employee: Test Employee” To rectify this, follow these steps: Navigate… Continue reading Global search issue: Email Address Showing Up Instead of the Name