Change Order

The change order record is used to transact changes to subscriptions. For example, a change order is required to activate a drafted subscription.

The change order record is available only when the SuiteBilling feature is enabled at Setup > Company > Enable Features (Administrator), on the Transactions subtab. When the feature is enabled, you can access a list of change order records in the UI by going to Transactions > Subscriptions > View Subscription Change Orders.

For help working with this record in the UI, see SuiteBilling Change Orders.

The internal ID for this record is subscriptionchangeorder.

See the SuiteScript Records Browser for all internal IDs associated with this record. For information about using the SuiteScript Records Browser, see Working with the SuiteScript Records Browser in the NetSuite Help Center.

For information about scripting with this record in SuiteScript, see the following help topics:

Supported Script Types

The change order record is scriptable in server and client SuiteScript.

Supported Functions

The change order record is fully scriptable — it can be created, updated, copied, deleted, and searched using SuiteScript.

Default Values

When creating a subscription change order in SuiteScript, you must supply the default values like the following code sample:

          const changeOrder = recordModule.create({
    type: recordModule.Type.SUBSCRIPTION_CHANGE_ORDER,
    defaultValues: {
        action: "ACTIVATE",
        subscription: 208
    }
}); 

        

Related Topics

General Notices