Activate Unified Consumer

  • リリースバージョン: Australia
  • 更新日 2026年03月12日
  • 所要時間:2分
  • Activate the Unified Consumer functionality within the Customer Service Management (CSM) application by updating the Consumer script include. This modification enables you to display the other sys_user extension records in the reference list for the users in the csm_consumer table.

    始める前に

    Role required: admin

    このタスクについて

    To enable access to sys_users (internal users), add the sys_user to the user extension in the Consumer script include.

    手順

    1. Navigate to All > System Definition > Script Includes.
    2. Open the Consumer script include and modify the script as follows:

      Add the initialize method to the Consumer script include and set this.userExtensions value.

      var Consumer = Class.create();
      
      Consumer.prototype = Object.extendsObject(ConsumerImpl, {
          initialize: function() {
              ConsumerImpl.prototype.initialize.call(this);
              this.userExtensions = ["csm_consumer_user", "sys_user"];
          },
      
          type: 'Consumer',
      
      });
      注:
      While creating a consumer user from the consumer form, you’re redirected to the interceptor form to select the user type.
    3. Select Update.

    次のタスク

    Add a user to your instance. For more information, see Creating and associating a Unified Consumer user to a consumer record.