RN2_F4SIMPLETREE_ADMIN is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter RN2_F4SIMPLETREE_ADMIN into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
N2_F4_SIMPLETREE_ADM - Maintain Input Help as Hit List
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Maintain Hit List as Input Help
Selection Text: P_NAME2 = Copy Hit List To:
Selection Text: P_NAME1 = Name of Hit List
Title: Maintain Hit List as Input Help
Text Symbol: S05 = entries
Text Symbol: Q11 = Do you want to continue?
Text Symbol: Q10 = Impermissible Namespace
Text Symbol: Q04 = Delete?
Text Symbol: Q02 = No
Text Symbol: Q01 = Yes
Text Symbol: I12 = Created On
Text Symbol: E15 = Error While Copying:
Text Symbol: E11 = Use Delete Hit List
Text Symbol: E10 = Hit list already exists
Text Symbol: E04 = Enter name of hit list
Text Symbol: E03 = Hit list does not exist:
Text Symbol: E02 = Deleted on:
Text Symbol: E01 = Hit list does not exist (any more)
Text Symbol: B04 = Delete Hit List
Text Symbol: B03 = Copy Hit List
Text Symbol: B02 = New Hit List
Text Symbol: B01 = Edit Hit List
Text Symbol: 001 = Delete Hit List?
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ISH_N2_F4SIMPLETREE_ADMIN CALL FUNCTION 'ISH_N2_F4SIMPLETREE_ADMIN' EXPORTING ss_tree_name = p_name1 ss_mode = abap_false EXCEPTIONS error = 1 OTHERS = 2.
ISH_N2_F4SIMPLETREE_ADMIN CALL FUNCTION 'ISH_N2_F4SIMPLETREE_ADMIN' EXPORTING ss_tree_name = p_name1 ss_mode = abap_true EXCEPTIONS error = 1 OTHERS = 2.
ISH_N2_F4SIMPLETREE_ADMIN CALL FUNCTION 'ISH_N2_F4SIMPLETREE_ADMIN' EXPORTING ss_tree_name = p_name1 ss_mode = abap_false EXCEPTIONS error = 1 OTHERS = 2.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = text-001 diagnose_object = ' ' text_question = p_question text_button_1 = 'Ja'(q01) icon_button_1 = 'ICON_SYSTEM_SAVE' text_button_2 = 'Nein'(q02) icon_button_2 = 'ICON_SYSTEM_BACK' default_button = '1' display_cancel_button = 'X' start_column = 25 start_row = 6 popup_type = 'ICON_MESSAGE_QUESTION' IMPORTING answer = p_cont_flag.
CHECK_CUSTOMER_NAMES CALL FUNCTION 'CHECK_CUSTOMER_NAMES' EXPORTING * OBJECTTYPE = 'TABU' tablekey = l_tablekey tablename = c_tablename IMPORTING key_allowed = l_key_allowed system_sap = l_system_sap * TABLE_NOT_FOUND = * KEY_MIXED = EXCEPTIONS objecttype_not_filled = 1 tablename_not_filled = 2 OTHERS = 3.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = 'Unzulässiger Namensraum'(q10) diagnose_object = 'N2_NAMESPACE' text_question = 'Möchten Sie fortfahren?'(q11) text_button_1 = 'Ja'(q01) icon_button_1 = 'ICON_SYSTEM_OK' text_button_2 = 'Nein'(q02) icon_button_2 = 'ICON_SYSTEM_BACK' default_button = '2' display_cancel_button = 'X' userdefined_f1_help = 'N2_NAMESPACE_1' * START_COLUMN = 25 * START_ROW = 6 popup_type = 'ICON_MESSAGE_QUESTION' IMPORTING answer = p_answer * TABLES * PARAMETER = EXCEPTIONS text_not_found = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.