For partners that build or integrate commercially available applications and service solutions with the Oracle Cloud Platform
For partners that provide implementation or managed services around Oracle Cloud Applications
Hi guys,
Is there any example of how to implement a "Close SR" button in customer portal like in My Oracle Support to close incidents manually by customers??
Thanks in advance
Jorge B.
Comment
You can use the status widget for this:
<rn:widget path="input/FormInput" name="Incident.StatusWithType.Status" label_input="#rn:msg:DO_YOU_WANT_A_RESPONSE_MSG#"/>
Another way to do this is by using a custom field and the business rules.
Average Rating:



6 ratings
|
Sign in to rate this
Hi Luuk,
We also have a similar request raised by Jorge.
Can you please explain how to achieve this through Custom Field and business rules.
Be the first to rate this
|
Sign in to rate this
Very easy.
Create a custom field of your choice (Yes/No or Menu) add the field to your ask.php
For example:
If it has to be a button you just use a html button and create a js function that sets the value of the custom field with an onclick event.
Then create your BR
IF
Incident.customfieldClose equals Yes
THEN
Set Status to Closed
See this topic on how to make your custom field hidden while still able to capture the button value
Checkbox field
Average Rating:



2 ratings
|
Sign in to rate this
Hi Sebastiaan,
Thanks for your help... I will for sure try this solution
.
/Sweta
Be the first to rate this
|
Sign in to rate this
You are welcome Sweta :-)
Feel free reaching out should you require any help.
Be the first to rate this
|
Sign in to rate this