Loading...

Second Generation Managed Packaging (2GP) is a must-have modern approach that helps in building and managing packages on Salesforce. It offers a myriad of tools for developing, distributing, and managing apps and metadata to AppExchange partners.  
With the help of Managed 2GP packaging, you can utilize your custom Apex code, interact with your version control system, create compact modular packages, and organize your source code. 
There are no packaging or patch organizations since version control is the only source of truth. All packaging tasks can be carried out either manually using scripts or automatically through Salesforce CLI. 
We can submit second-generation managed packages for security review and list them on AppExchange.

Prerequisites for Developing Managed Packages for the Second Generation

  1. Enable the Dev hub in your org.
  2. Enable Second-Generation Managed Packaging.
  3. Install SalesforceCLI.
  4. Create and Register Your Namespace.

What is Namespace?

A Namespace is a 1–15 character alphanumeric identifier that distinguishes your package and its contents from other packages in your customer’s org. 
A Namespace is assigned to a second-generation managed package (managed 2GP) at the time that it’s created, and can’t be changed. 
Please Note: Keep the above information in mind while working with Namespaces.
You can develop more than one second generation managed package with the same Namespace but you can associate each package with only a single namespace. If you work with more than one namespace, Salesforce recommends that you set up one project for each namespace.
When you specify a package namespace, every component added to a package has the Namespace prefix to the component API Name Example: If you have a custom object called student with API name ‘Student__c’.
If we add this object to a package associated with the ‘hic_signeasy’ namespace, then the API name becomes ‘hic_signeasy__Student__c’.

How to Create a Namespace?

  • Sign up for a new Developer edition org.
  • Go to setup enter package manager in the quick find box and select package manager.
  • In developer settings, click Edit, and under Change developer settings, click Continue.
  • In the Namespace prefix enter a namespace, and select check Availability.
  • For a package to be managed, select None, then click Review my selections.
  • Review your selections and then click save.

How to Register/Link a Namespace?

  • Log in to your Dev Hub org as the System Administrator or as a user with the SalesforceDX Namespace Registry permissions.
  • Select Namespace Registries from the App Launcher menu.
  • Click Link Namespace
  • Once the window appears, use the org’s System Administrator credentials to log in to the Developer Edition org where your Namespace is registered.
  • Because sandboxes, scratch orgs, patch orgs, and branch orgs need to be linked to the Namespace Registry, you cannot link orgs without a namespace.
  • Choose the All Namespace Registries list view to see every Namespace connected to the Namespace Registry.

Process for Managed Second-Generation Packages


  • A second-generation managed package (managed 2GP) can be created and installed simply from the command line.
  • These actions are part of the basic managed 2GP process.
  • Create an SFDX project by simply running the below command.
    •  Sfdx force:project: generate –output-dir expense-manager-workspace –name expense-app
  • Authorize the Dev Hub Org
    • Sfdx force:auth: login web –set-default-dev-hub
  • Use the Namespace attribute in the sfdx-project.json file for specifying a namespace. For instance, “namespace”: “hic_signeasy.” 

You can skip this step if you’ve already provided a Namespace in the first stage of creating a SalesforceDX project. Make sure you’ve linked a Namespace to your Dev Hub organization before adding it.

Figure: sfdx-project.json file

  • Create the package from the SalesforceDX project directory.
    • Sfdx force:package: create –name “Expense Manager” –path force-app –package-type Managed.
  • Create a package version.
    • Sfdx force:package:version:create –package “Expense Manager” –code-coverage –installation-key test1234
  • Install and test the package version.
    • Sfdx force:package:install –package “Expense Manager@0.1.0-1” –target-org MyTestOrg1 –installation-key test1234

Note: Once a package is created, it cannot be altered, a Namespace added, or the Dev Hub it is connected to change.

Difference Between 1 Generation Package and 2 Generation Package

1 Generation Package (1 GP) 2 Generation Package (2 GP)
  • It requires a packaging org or patch org.
  • Each package required a unique namespace.
  • Declaring Apex classes and methods global is necessary for code sharing between packages, which may result in an overabundance of global Apex.
  • Package versioning is linear.
    • It is created using SalesforceDX and the Command line.
    • In this package, several packages can share the same namespace.
    • Public Apex classes and methods with the @namespaceAccessible annotation allow code to be shared across many packages that use the same namespace.
    • Package versioning is flexible.

Demo Video


Concluding Words

In a nutshell, Second Generation Managed Packages are considered as one of the significant packagings of Salesforce. It gives developers enhanced flexibility and control over their apps; moreover, it simplifies the development and management process.  By leveraging the features of 2GP, developers not only get to meet the ongoing business requirements but also ensure future scalability & growth. Stay tuned for more latest updates!

Related Articles

Sticky notes aren’t just for your desk anymore! In this tutorial, we’ll create a Lightning Web Component (LWC) in Salesforce that allows you to pin notes on your app page or record page. With a clean, interactive UI, these digital sticky notes ensure you never forget important tasks or details. What Will You Learn? By […]

Read More
How to Create Dynamic, Animated Charts in Salesforce LWC using Chart.js

Bring Salesforce data to life with dynamic charts inside Lightning pages! While Salesforce dashboards are powerful, sometimes business users want visual insights without leaving their current page. That’s where Chart.js with Lightning Web Components (LWC) becomes a game-changer. In this step-by-step guide, you’ll learn how to: Upload Chart.js as a static resource in Salesforce. Build […]

Read More
How to Encrypt and Decrypt Data in Salesforce Using Apex Crypto Class

Data security is more important than ever. Whether you’re storing customer information, sensitive business data, or private communication, ensuring that your data stays safe is critical. Salesforce provides built-in tools to help with this, and one of the most powerful yet easy-to-use approaches is encryption and decryption using the Apex Crypto class. In this blog, […]

Read More
Benefits & Step-by-Step Setup Guide for Salesforce Code Analyzer

When building on the Salesforce platform, code quality and security are non-negotiable, especially before submitting your app for a Salesforce Security Review. Catching bugs and vulnerabilities early not only saves time but also ensures compliance with Salesforce’s best practices. That’s where the Salesforce Code Analyzer comes in. This open-source tool scans your Apex classes, triggers, […]

Read More
A Step-by-Step Guide to Integrate Zoho CRM with Salesforce (Without Coding)

Managing data across multiple CRMs can be a real challenge for businesses that want a single source of truth. If your teams use Zoho CRM but want to move or sync all records seamlessly into Salesforce, you don’t need to write a single line of code. Thanks to MultiSync Made Easy, the integration process is […]

Read More
How to Integrate Salesforce with Copilot

Integrating Salesforce with Copilot is becoming an essential step for organizations aiming to streamline workflows, automate client data management, and unlock the power of AI-driven CRM. By connecting these two platforms, businesses can centralize customer information, reduce manual tasks, and accelerate growth. This guide walks you through the Salesforce–Copilot integration process with clear steps, Apex […]

Read More