Entitlement Validity Period

The user can be assigned a SAP Role with Start Date and an End Date. The ability to select or specify the same, while requesting an entitlement for an account, is available in Identity Security Cloud by creating a custom Provisioning Plan.

Following is the Sample attribute request when assignment dates are in Date format:

Copy
[
  {
   "AttributeRequest": {
        "name": "Roles",
        "op": "Add",
        "value": "SAP_AUDITOR_SA",
        "attributes": {
              "assignment": true,
              "startDate": 1441195751000,
              "endDate": 1441449381000
            }
        }
  },
  {
  "AttributeRequest": {
        "name": "Roles",
        "op": "Set",
        "value": "SAP_AUDITOR_SA",
        "attributes": {
              "assignment": true,
              "startDate": 1441195751000,
              "endDate": 1441449381000
            }
      }
 }     
]

Following is the Sample attribute request when assignment dates are in String format:

Copy
[
  {
    "AttributeRequest": {
      "name": "Roles",
      "op": "Add",
      "value": "SAP_BC_DB_ADMIN",
      "Attributes": {
        "Map": {
          "assignment": "true",
          "startDate": "2014-1-1",
          "endDate": "2015-2-2"
        }
      }
    }
  },
  {
    "AttributeRequest": {
      "name": "Roles",
      "op": "Set",
      "value": "SAP_BC_DB_ADMIN",
      "Attributes": {
        "Map": {
          "assignment": "true",
          "startDate": "2014-1-1",
          "endDate": "2015-2-2"
        }
      }
    }
  }
]