Describing SAP Ariba 2505 Release Features

Objective

After completing this lesson, you will be able to describe new or changed features for SAP Ariba Contracts in the SAP Ariba 2505 release.

Ability to Customize the Prefix for the Contract ID in SAP Ariba Contracts

Business Details

This feature enables buyers to customize the contract ID prefix in SAP Ariba Contracts by replacing the default value (CW) with their preferred value.

Buyers can create a site-level configuration to automatically generate a custom prefix value and assign it to the contract ID when creating contract workspaces in SAP Ariba Contracts.

Implementation Details

General Prerequisites

To create a site-level configuration to automatically generate a custom prefix value for the contract ID, you must be a member of the Customer Administrator group.

Note

Access to this user group must be approved by SAP Ariba.

Configuration

Use this procedure to create a configuration to derive the custom contract ID prefix for contract workspaces.

Prerequisites

You must be a member of the Advanced Configuration Access group.

Note

The new self-service tools and features in the SAP Ariba Strategic Sourcing Suite are currently available and accessible exclusively to trained and certified SAP Ariba partners. We recommend that all stakeholders stay informed about the latest tools, enhancements and learning to effectively support the transition to self-service deployment when we announce General Availability (GA) in the near future.

Context

The process to automatically derive a custom contract ID prefix for replacing the default contract ID prefix (CW) involves two steps:

  1. Create a custom field with the configuration to evaluate the custom contract ID prefix.
  2. Assign the field to a self-service parameter in the Intelligent Configuration Manager workspace.

Hint

It is recommended that you implement these changes in your test site, conduct sufficient tests, and then migrate the changes to your production site.

Procedure

  1. Sign in to the application and select ManageAdministration.
  2. Select Customization ManagerField Configuration.
  3. In the Browse Classes text box, search for Contracts.
  4. Under the Contracts class, choose ContractWorkspace and then select Create FieldComputed Field.

    Note

    You can choose to create a Normal Field if you don’t have complex business logic to evaluate the contract ID prefix.
  5. Under the General tab, specify the field label.
  6. Select the field type as Text.
  7. Add an expression to specify the logic to evaluate the custom contract ID prefix based on your business requirement.

    Hint

    • Example 1: In this example, the contract ID prefix is evaluated based on whether the user is creating a contract request or a contract workspace. The contract ID prefix value is returned as JCR in case of a contract request and JCW in case of a contract workspace.

      Sample code:

      Code Snippet
      12
      StringUtil.startsWithIgnoreCase(Title.getStringForDefaultLocale(),"CR") ? "JCR" : "JCW"

    • Example 2: In this example, the contract ID prefix is evaluated based on the value of another field. If the value of cus_isContractRequest is true, then the contract ID prefix value is returned as JCR, else the value returned is JCW.

      Sample code:

      Code Snippet
      12
      cus_isContractRequest == true ?'JCR':'JCW'

    Note

    It is recommended that you create a custom contract ID prefix in a format that is similar to the default contract ID prefix (CW).
  8. Confirm the changes and publish the field configuration. The field configuration is created.

Next Steps

Assign the field to the Field Name to Identify Custom Contract ID Prefix (Application.ACM.FieldNameToIdentifyCustomContractIDPrefix) ICM parameter. Once assigned, the custom contract ID prefix is applicable to all the contract workspaces created in SAP Ariba Contracts. For more information about the parameter, refer to Field Name to Identify Custom Contract ID Prefix.

Note

If you don’t assign any value to the Application.ACM.FieldNameToIdentifyCustomContractIDPrefix ICM parameter, or if the field configuration doesn’t return a value, the default contract ID prefix (CW) is applied to the contract workspaces.

Create a contract workspace in SAP Ariba Contracts to test the configuration. For more information about creating contract workspaces, refer to Creating Contract Projects.

Migrate the field configuration and the parameter to your production site. For more information, refer to Field Migration in Intelligent Configuration Manager and Package Deployments in Intelligent Configuration Manager.

Technical Details

Product

SAP Ariba Contracts

SAP Ariba Strategic Sourcing Suite

SAP Strategic Procurement

EnablementCustomer-managed
CategoryConfiguration
Reference NumberSCONTR-1280
User Type

Buyer

Administrator