Global API
Code Examples

Sales Order Flow

10min

Custom Apex Generator

This is an example Invocable Method generated by Breadwinner Apex Generator, which can be invoked by a standard Flow. This is quite useful as it shows how you can use Salesforce standard automation practices to drive NetSuite record creation. Using this format you can extend to Update or Read in a similar fashion.

This basic use case shows how easy it is to create robust automation in Salesforce to facilitate Sales Order record creation in NetSuite. Extending upon this, using the Global API requests in this help site you can perform many automated retrieves, create, or update functions directly rather than requiring extensive middleware or endpoint processing to perform.



Apex Class Generation

Navigate to Breadwinner Setup > Tools > Apex Generator

Step 1: Choose the record mode Create/Edit on a NetSuite object (Sales Order) using a Flow

Step 2: Select the option for Run this Flow as

Document image


Step 3: Click on Next, it will navigate to the Fields selection page. Click on Generate Apex.

Document image


Step 4: Copy the generated Apex Class / Apex Test Class (optional). Save/Deploy the copied code to the respective org.

Document image


NetSuite Sales Order Automation using Flows

Step 1: Navigate to Salesforce Setup > Flows > New Flow > Record-Triggered Flow

Document image


Step 2: Choose the options similar to those mentioned below, and click on Done.

  1. Select the Object (Opportunity)
  2. Trigger Event (record is updated)
  3. Entry Conditions (like StgaeName is Closed Won)
  4. Run the Flow for updated records (Only when record is updated to meet the condition requirements)
  5. Optimize Flow for (Actions and Related Records)
  6. Check Run Asynchronously path (Only when the option "I will check "Run Asynchronously" (on Record-Triggered flow creation Page)" on Step 2)
Document image


Step 3: Get Line Items (Opportunity Products query with Current Record ID (opportunity Id)), and click on Done.

  1. Select Get Records (from the Data section)
  2. Select Object for Line Records (Opportunity Product)
  3. Condition for Query (OpportunityId Equals $Record > Opportunity ID)
  4. Sorting (Ascending by #SortOrder)
  5. How Many Records to Store (All Records)
  6. How to Store (Automatically store all fields)
Document image


Step 4: Get NetSuite Company (Customer) Info using the Get Records data action, and click on Done.

  1. Select Get Records (from the Data section)
  2. Select Object for Info (NetSuite Company)
  3. Condition for Query (breadwinner_ns__Salesforce_Account__c Equals $Record > Account ID > Account ID)
  4. Sorting (Optional)
  5. How Many Records to Store (Only first record)
  6. How to Store (Choose fields and Salesforce do the rest and select the below fields for further usage)
    • breadwinner_ns__InternalId__c
Document image


Step 5: Create an Apex Action using the "Create NetSuite Sales Order" Invocable method

Document image


Step 6: Map the Fields to Create Invoice in "Apex Action"

Before you start this step, please refer to the Sales Order fields and their data types while mapping the values i.e. Lookup records will need internal ids.

  1. Select Object for "Sales Order Line Items" input (Opportunity Product)
  2. Map the NetSuite Company (Created from Step 4, Eg: {!NetSuite_Company.breadwinner_ns__InternalId__c})
  3. Map the Line Records to "Sales Order Line Items" (Created from Step 3, Eg: {!GetOpportunityProducts})
  4. Map the Line Record fields with Salesforce API Names (Field Name, Eg: Description) by coping as mentioned in the below image (Line API Names (2nd image))
    • Please create a formula field on the chosen object (Opportunity Product) to fetch the NetSuite Item Internal Id
    • For other than Opportunity Product, if there is a relation with the Salesforce Product, go with the formula field, else create a custom field to store the NetSuite Item Internal Id.
Document image

Document image

Line Item Salesforce API Names
Line Item Salesforce API Names

Fetching NetSuite Item Internal Id
Fetching NetSuite Item Internal Id


Step 7: Connect the Flow Steps, Click Save, and Activate

  1. Connect Record Trigger Flow Section to Get NetSuite Company Information (Run Asynchronously)
  2. Connect Get NetSuite Company Information to Get Opportunity Products
  3. Connect Get Opportunity Products to Create Sales Order on Opportunity
Document image


Triggering NetSuite Sales Order creation

Step 1: Select the Opportunity

Document image


Step 2: Edit the Opportunity to meet Trigger Criteria (StageName > Closed Won)

Document image


Step 3: Evaluate the created Sales Order at NetSuite