Deploying to a Sandbox or Custom SSP Application in NetSuite

Deploy content to a NetSuite Sandbox or Custom SSP Application using developer tools like gulp for seamless development integration.

·2 min read·View Oracle Docs

Deploying to a sandbox account or a custom SuiteCloud Service Provider (SSP) application is a critical process for developers working with NetSuite. This guide outlines the necessary steps and considerations for a successful deployment.

How to Deploy to a NetSuite Sandbox

To deploy to your sandbox account, follow these steps:

  1. Open Command Line or Terminal
    Access your command line or terminal interface.

  2. Run the Deployment Command
    Navigate to the top-level directory of your source files (the same one used during installation). Depending on your development environment, use one of the following commands:

    • For Theme development tools:
      bash
      gulp theme:deploy
    • For Extension development tools:
      bash
      gulp extension:deploy
    • For Core SuiteCommerce Advanced development tools:
      bash
      gulp deploy

    If this is your first deployment, a subdirectory named DeployDistribution will be created where your source files will be compiled and stored.

Note: If you've previously created an authentication ID, you won't be prompted to enter it again. If a different ID is needed, append the --to parameter to your command. Refer to the Token Based Authentication documentation for more details.

  1. Enter Authentication ID
    When prompted, input the authentication ID associated with your sandbox account.

  2. Select Sandbox in NetSuite
    In your NetSuite account, choose the desired sandbox account and the role for authentication. Click Allow to generate the required authentication token and secret.

    Note: Ensure the chosen role has the necessary permissions to deploy content in NetSuite.

How to Deploy to a Custom SSP Application

The deployment process for a custom SSP application follows similar steps as deploying to a sandbox. It’s crucial to ensure your application and environment are set up correctly before proceeding with the deployment.

Best Practices for Deployment

  • Always verify that necessary bundles are installed in your sandbox before deployment.
  • Consider the security implications of the roles and permissions involved in your deployment to avoid issues.
  • Perform thorough testing in the sandbox environment to catch any deployment-related errors before moving to production.

Key Considerations

  • Ensure you have the latest developer tools installed.
  • Familiarize yourself with authentication processes to avoid delays during deployment.
  • Developing in a sandbox allows for a safe testing environment, enabling identification and resolution of potential issues quickly.
Source: Deploy to a Sandbox or Custom SSP Application Oracle NetSuite Help Center. This article was generated from official Oracle documentation and enriched with additional context and best practices.

Was this article helpful?

More in SuiteCloud Development Framework

View all SuiteCloud Development Framework articles →