Difference between revisions of "SetTargetPage"

From AgileApps Support Wiki
 
(One intermediate revision by the same user not shown)
Line 5: Line 5:


;Syntax:
;Syntax:
:<syntaxhighlight lang="java" enclose="div">
  Functions.setTargetPage("Service?t=923&targetpage=ChangeSecurityQuestion.jsp");
  Functions.setTargetPage("Service?t=923&targetpage=ChangeSecurityQuestion.jsp");
</syntaxhighlight>


;Return:None
;Return:None
Line 15: Line 17:
2. Create the class with the following code.
2. Create the class with the following code.


<pre>
:<syntaxhighlight lang="java" enclose="div">
package com.platform.nmag3.nmjip;
package com.platform.nmag3.nmjip;
import com.platform.api.*;
import com.platform.api.*;
Line 32: Line 34:
}   
}   
}
}
</pre>
</syntaxhighlight>


2. Go to '''Configuration > System Objects > User Business Rules'''.<br>
3. Go to '''Configuration > System Objects > User Business Rules'''.<br>
3. Add a business rule for the Update event.<br>
4. Add a business rule for the Update event.<br>
4. Ensure that you select the '''Unconditionally (Always)''' option in the Execution Criteria field.<br>
5. Ensure that you select the '''Unconditionally (Always)''' option in the Execution Criteria field.<br>
5. Under actions to perform, select '''Invoke Method''' from the dropdown.<br>
6. Under actions to perform, select '''Invoke Method''' from the dropdown.<br>
6. Select the class name as Redirect and choose method name as setTargetAPIPageTest() [class created in the step 2].<br>
7. Select the class name as Redirect and choose method name as setTargetAPIPageTest() [''class created in the step 2''].<br>
6. Save the Rule.<br>
8. Save the Rule.<br>
7. Go to '''Configuration > Access Management > Users'''.<br>
9. Go to '''Configuration > Access Management > Users'''.<br>
8. Click the '''Edit''' button to update any user details.<br>
10. Click the '''Edit''' button to update any user details.<br>
9. Click '''Save'''.<br>
11. Click '''Save'''.<br>
10. Now, the security page appears as the target page.
12. Now, the security page appears as the target page.


<noinclude>[[Category:Utility]]</noinclude>
<noinclude>[[Category:Utility]]</noinclude>

Latest revision as of 05:30, 15 March 2024

setTargetPage(String URL)
Description
Performs the action of clicking a link in the UI via the Java API
Sets the target page, URL is the relative path
Syntax
 Functions.setTargetPage("Service?t=923&targetpage=ChangeSecurityQuestion.jsp");
Return
None
Example

Perform the following steps to display the security page:
1. Go to Configuration > Customization > Developer Resources > Classes > New Class.
2. Create the class with the following code.

package com.platform.nmag3.nmjip;
import com.platform.api.*;
public class Redirect
{
	public void setTargetAPIPageTest(Parameters params)throws Exception
	{
			try
			{ 
				Functions.setTargetPage("Service?t=923&targetpage=ChangeSecurityQuestion.jsp");
			}
			catch(Exception exp)
			{ 
				throw new Exception("setTargetAPIPageTest() method failed in JAVAAPITestClass"); 
			}
	}  
}

3. Go to Configuration > System Objects > User Business Rules.
4. Add a business rule for the Update event.
5. Ensure that you select the Unconditionally (Always) option in the Execution Criteria field.
6. Under actions to perform, select Invoke Method from the dropdown.
7. Select the class name as Redirect and choose method name as setTargetAPIPageTest() [class created in the step 2].
8. Save the Rule.
9. Go to Configuration > Access Management > Users.
10. Click the Edit button to update any user details.
11. Click Save.
12. Now, the security page appears as the target page.