Hi,
I should make some controls on the "Assignments" included in the "User Access" tab when I press the button "Submit" in GRC Access Control ARQ request.
These data are found on the generic component SALV_WD_TABLE. I am not able to catch them, in order to check them in “GET_ACTION_DATA” method of component “FPM_OIF_COMPONENT”.
I am able to catch and control the other data (not on generic component), for example “Request Type” e “User” as follows:
“method _PRE_00O2TMZURK0RZUSTAWVS8WIV8 . "Exit of GET_ACTION_DATA (in ZFPM_OIF_COMPONENT )
if iv_action_id eq 'FPM_SUBMIT'.
DATA: lo_obj1 TYPE REF TO zash_singleton_test.
DATA z_retrieved_value TYPE string.
lo_obj1 ?= zash_singleton_test=>get_istance( ).
IF lo_obj1 IS BOUND.
z_retrieved_value = lo_obj1->a_test_string.ENDIF.if z_retrieved_value eq 'PINONE'.
…….”
How can I catch the role name in assignment tab in order to check them in GET_ACTION_DATA method?