cancel
Showing results for 
Search instead for 
Did you mean: 

Custom rendering on user actions.

Former Member
0 Kudos

Hello All,

I am trying to make few UI elements(text fields, dropdowns) readonly when the user clicks on "Review Form" button. I am testing for one Listbox, and the underlying javascript I am using is

if($record.CONTROL_PARAM.ISR_REVIEW == "true" )

then

this.access = "readonly"

endif

When I open the form from portal inferface, this Listbox is already readonly no matter which button I press. I figured this much that, the Listbox is not controlled by the user actions(clicking any button). I am trying to figure out how to connect the user response to the rendering. Do I need to look into the ABAP code for the button action (ReviewForm).

I am working on MSS ISR form (ECC 5.0, 640).

Thanks and Regards.

Srinivas

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Srini,

you may check the abap code using an external break point at the User_command method of the QISR1 BAdi for the respective scenario.

Thanks and Bwest Regards,

Anto.

Former Member
0 Kudos

Hey Anto,

Thanks for your kind reply. I was able to find the "SCENARIO_PROCESS_USER_COMMAND". So you mean this method is responsibel for the user actions at runtime...

Now can you also be elaborate on using the external break point in this method.

Thanks and Regards

Srinivas