‎2007 Apr 24 2:13 AM
Hi,
Can somebody tell me how to get the GUI statuses i.e. All the Function Codes used mentoined in a GUI status of standard program.
I have checked the program SAPMSEUK & Function Module RS_CUA_INTERNAL_FETCH. But its not giving the GUI_STATUS till the bottom Function Codes level.
Please suggest some solution...
Regards,
Rushikesh
‎2007 Apr 24 3:08 AM
Go to the <b>package or development class</b> which program SAPMSEUK belongs to, then look at all the objects under the object, it will list the GUI status also..
<i>* Reward each useful answer</i>
Raja T
Message was edited by:
Raja Thangamani
‎2007 Apr 24 4:18 AM
Hi,
if you don't want them programatically, call the transaction in question and click on system->status. Double click on the field gui status. This will lead you to the definition of all function codes (ok codes) of the screen.
If you want programatically, try using the function module.....
data: irsmpe_funl type table of rsmpe_funl with header line.
call function 'RS_CUA_GET_FUNCTIONS'
exporting
LANGUAGE = ' '
program = <program_name>
IMPORTING
MASTER_LANGUAGE =
tables
function_list = irsmpe_funl
EXCEPTIONS
MENU_NOT_FOUND = 1
PROGRAM_NOT_FOUND = 2
OTHERS = 3
.
if sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
endif.
regrads
navjot
reward if helpfull