Dear All,
I am having a situation like a 'CALL FUNCTION' stmt inside the body of another function.
I observed that; while I do debugging, on th very next F5 on the 'CALL FUNCTION' stmt, I am getting some information pop-up messages. I want to know that where the code is written for that.
The inner CALL FUNCTION looks like..
CALL FUNCTION 'NAVIGATION_USER_MENU_READ'
EXPORTING
uname = space
language = sy-langu
menu_get = 'X'
refresh_data_for_collect_agr = 'X'
activity_group = activity_group
all_languages = all_languages
show_agr_name_if_possible = l_show_agr_name_if_possible
technical_names_on = l_technical_names_on
no_condense_menu = no_condense_menu
TABLES
output_tree = i_nodes
output_tree_text = i_texts
output_tree_urls = i_urls
output_tree_dtls = output_tree_dtls
EXCEPTIONS
no_data_found = 1
OTHERS = 2.
IF sy-subrc <> 0.
RAISE no_data_found.
ENDIF.
which is place inside the FUNCTION "COLL_ACTGROUPS_READ_MENU".
Regards
Ullas