Release preview testing 2023.1 Artina Proposal Document

Proposal SummaryThis proposal covers the scope for Release preview 2023.1 testing in the Artina Group NetSuiteaccount.RequirementArtina Group needs the Release preview testing to make sure the new release hasn’t disrupted any ofthe working processes, including O2C, P2P, L2C, Record to Report, and the Design to Build Process.Along with this process they need to include all… Continue reading Release preview testing 2023.1 Artina Proposal Document

Endpoints to fetch order details and fulfillment order details of a specific order from Shopify.

Updated endpoint to get order details. /admin/api/2023-01/orders/{order_id}.json Updated endpoint to get fulfillment order details. /admin/api/2023-01/orders/{order_id}/fulfillment_orders.json NB: The FulfillmentOrder resource represents either an item or a group of items in an order that are to be fulfilled from the same location. There can be more than one fulfillment order for an order at a given location.

Be Careful With Record Types When Performing Entity Lookups via Script

The “Entity” record type in NetSuite is a catch-all category that includes a number of more specific entity types like Vendor, Customer, Employee, Contact, Group, Partner, etc. In some cases, defining a custom field as an entity rather than a more specific type is necessary. However, when performing a lookup of the field in the script,… Continue reading Be Careful With Record Types When Performing Entity Lookups via Script

Endpoint and Parameters for Shopify order fulfillment

Creates a fulfillment for one or many fulfillment orders. The fulfillment orders are associated with the same order and are assigned to the same location. Endpoint: /admin/api/2023-01/fulfillments.json Required Parameters api_version: 2023-01 line_items_by_fulfillment_order fulfillment_order_id: (integer) (required) The ID of the fulfillment order. fulfillment_order_line_items: (array) The fulfillment order line items and the quantity of each which should… Continue reading Endpoint and Parameters for Shopify order fulfillment

Schedule a workflow to change the status of a particular record

If a user need to change the status in a particular record, then you can choose the scheduled workflow. This workflow will trigger at the scheduled time. To configure the scheduled workflow, first, we need to create a saved search for that particular record. Scheduled workflows always run on all of the records in the… Continue reading Schedule a workflow to change the status of a particular record

Add search query as the data source to a template

We can pass search query as a data source to a template instead of a single record data.Use the function TemplateRenderer.addQuery(options) for this. This is a part of the N/render module and is available for all server scripts(of the 2.x version).The parameters require are: ‘options.id’ of string type which stores the id of search if… Continue reading Add search query as the data source to a template