Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

GUI status of std. program

Former Member
0 Likes
707

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

2 REPLIES 2
Read only

raja_thangamani
Active Contributor
0 Likes
621

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

Read only

Former Member
0 Likes
621

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