Click HERE to see how Saviynt Intelligence is transforming the industry. |
09/26/2023 05:05 AM
Hi,
When we place an access request for an entitlement using ARS module, it asks for a Start and End Date. We have a privileged access for which there is a customer requirement to make both these fields mandatory to enable Just-In-Time access.
We have already tested that Just-In-Time access works fine if we select the Start and End Dates. But how can we make them mandatory so that without specifying these values, Saviynt does not allow the request to get submitted ?
Additionally, these fields need to be made mandatory only for a specific endpoint and a specific entitlement within that endpoint. Kindly assist here. Snapshot below for your ease of reference :
Best Regards,
Varun
Solved! Go to Solution.
09/26/2023 05:09 AM
@varunpuri please check following doc :
Viewing or Updating Endpoints (saviyntcloud.com) > Ask For Start Date End Date While Request
09/26/2023 05:26 AM
Thank You, @Manu269 for your response.
I tested the configuration which you shared. By doing that, the Start and End Dates are simply visible on ARS. They are NOT made mandatory. Any config to make them mandatory as well for a specific entitlement within a particular endpoint ?
Best Regards,
Varun
09/26/2023 10:43 AM
@varunpuri - You need to add Config JSON for Request Dates in entitlementment types page.
Sample json config below as per the documentation - Viewing or Updating Endpoints (saviyntcloud.com)
{
"ENDDATEREQUIRED": "1",
"DEFAULTTIMEFRAMEHRS": "24",
"MAXTIMEFRAMEHRS": "72"
}
If you just need enddate to be made mandatory. Add below json in Config JSON for Request Dates
{
"ENDDATEREQUIRED": "1"
}
-Siva
09/26/2023 10:41 PM
Thank You, @Sivagami , This worked.
Best Regards,
Varun
09/26/2023 05:30 AM
@varunpuri please enable below configuration in entitlement type for specific endpoint
Let me know if it works.
09/26/2023 05:52 AM
Hello @SumathiSomala,
We already have this configuration enabled. But, it still is not making the Start and End date mandatory.
Best Regards,
Varun
09/26/2023 10:03 PM
@varunpuri Try the below to configs in entitlement type and change the config JSON as per your requirement
{
"ENDDATEREQUIRED": "1",
"DEFAULTTIMEFRAMEHRS": "24",
"MAXTIMEFRAMEHRS": "60"
}
09/26/2023 08:21 PM - edited 09/26/2023 08:22 PM
@varunpuri Try using the feature : Config JSON for Request Dates
{
"ENDDATEREQUIRED": "1",
"DEFAULTTIMEFRAMEHRS": "36",
"MAXTIMEFRAMEHRS": "72"
}
In your case as you mentioned you only need the end date madatory you can adjust above config as per your need in conjuction to below config enabled :
Ask For Start Date End Date While Request