Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more

Navigation [hide] [expand]
ARCHIVED This content is retired and no longer maintained. See the latest version here.

This topic describes the Customer Management system, a central component that lets you add individual organizations, contacts, and Commerce Manager users. From Customer Management, you also can create purchase orders for each customer account.

The following image describes Customer Management and the relationship between the various objects. You can create different types of relationships between Business Foundation (BF) objects, see Meta-class references.

Customer Management Overview

Definitions:

  • Organizations. Groups or sub-groups of contacts.
  • Contacts. Individuals with a set of personalized information (name, address, email, and so on). Contacts can be customers or users with Commerce Manager permissions to manage one or more systems.
  • Commerce Manager User. Users with an assigned role that provides access to the Commerce Manager site.

Classes in this topic are available in the following namespaces:

Customer groups

Customer groups target multiple Customers and Organizations for pricing and promotions. Both the Customer and the Organization expose their own CustomerGroup information, and the Customer has a derived property, called EffectiveCustomerGroup, that combines the two with the priority on the Organization value. See Customer Groups.

EffectiveCustomerGroup is used in pricing and promotions instead of the regular CustomerGroup. The EffectiveCustomerGroup returns the CustomerGroup of the parent Organization, if the CustomerContact belongs to a parent Organization that belongs to a CustomerGroup, or its own otherwise.

Child organizations

Use EntityObject to access the child organizations of an organization, a core BF object. The EntityObject is an important base class for CustomerContact, Organization, and any custom business objects you create. EntityObject has only a PrimaryKeyId property to retrieve the full organization object from the CustomerContext singleton.

Example: retrieving organization object

C#
List<Organization> PartnerOrganizations = new List<Organization>(); 
            foreach (object child in PartnerOrganization.GetChildren()) 
            { 
              EntityObject obj = child as EntityObject; 
              Organization org = CustomerContext.Current.GetOrganizationById(obj.PrimaryKeyId.Value); 

              if (org != null) 
              { 
                PartnerOrganizations.Add(org); 
              } 
            }

Security fundamentals

Roles

  • Primary mechanism for configuring authorization.
  • Stand-alone method of providing an authorization scheme.
  • Configured through the Commerce Manager GUI.
  • Role names are hard-coded strings, meaning that code using roles for authorization needs to have semantic knowledge of the role meaning.
  • Each role can have associated permissions.

Permissions

  • Permits more complex roles.
  • Usage is primarily designed for the Commerce Manager GUI.
  • Commerce Manager has no GUI to create, edit, or delete custom permissions. You must do this manually.

Note: The permissions infrastructure allows for more complex permission management. However, work is required to implement a custom security system with roles, permission hierarchies, and logic.

Security API

  • The CustomerProfile class extends the System.Web.Security.CurrentUserProfile and contains login information.
  • The State property indicates whether a user is logged in.
  • The SecurityContext singleton contains methods to check the roles and permissions associated with a user.
  • Permissions are used heavily in the Commerce Manager to distinguish complex rights and to lock down a view in the catalog system to be read-only for some users while giving write access to admin users.

SecurityContext

Example: Using SecurityContext methods

C#
// Allows you to check whether a user is in a role. 
            // CheckUserInAnyGlobalRoles() 
            // "GlobalRoles" really just means any role (built-in or custom). 

            if (!SecurityContext.Current.CheckUserInGlobalRole(SecurityContext.Current.CurrentUser, "Asset Viewers")) 
            { 
              // Add your logic here for handling insufficient permissions. 
            } 

            // Allows you to check whether the current user is in a role. 
            // CheckCurrentUserInAnyGlobalRoles() 

            List<SecurityRole> secure = new List<SecurityRole>(); 
            secure.Add(new SecurityRole("Asset Viewers")); 

            if (!SecurityContext.Current.CheckCurrentUserInAnyGlobalRoles(secure)) 
            { 
              // Add your logic here for handling insufficient permissions. 
            
}

Last updated: Oct 12, 2015