Role Provisioning Form in Manage Access

We have created Role Provisioning Form for some of our Roles and when you are requesting the access , So we can see the form but we can see two options like this Later and Complete form , We wanted to remove Later Button , Is this something we can achieve in IIQ.
Version - IIQ 8.3 P3

Hi @sbhagat,

this happend because you have one or more attribute in the form like required.

Until the user dont refill those values the request could not be ended.

The buttons dont depends on form. For remove it you need to modify the file/script that render this page.

I can see later button element is present in SailPointBundle.js file. Try search with “doButtonAction(button)” in SailPoint Bundle file.

You can inspect the “Later” button by right-clicking on that element. you’ll see the following:

If you want to remove that button from the UI, you may need to modify the SailPointBundle.JS file. However, please note that SailPoint does not recommend making changes to these file.

Alternative option is to write a plugin and write a JQuery or JavaScript code to hide the button.

When you say modify the file/script that render this page , So do you mean I need to make changes in the Sailpoint files(SailPointBundle.js) ?

Yes, I am not sure that is in SailPointBundle.JS, but I agree with @vedeepak on this:

DO you have some required attribute in the form?

Yes I have required attributes.

Instead of modifying the existing script, you could write a plugin that uses jQuery to inject the script into the UI page and change the functionality of the “Later” button.

You can write custom plugin to hide this later button that would be the easiest approach.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.