SAP Function Modules

NAVIGATION_EXECUTE_OBJECT_HELP SAP Function module







NAVIGATION_EXECUTE_OBJECT_HELP is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.

See here to view full function module documentation and code listing, simply by entering the name NAVIGATION_EXECUTE_OBJECT_HELP into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: SMTR_NAVIGATION_MODULES
Released Date: Not Released
Processing type: Remote-Enabled
remote enabled module settings


Pattern for FM NAVIGATION_EXECUTE_OBJECT_HELP - NAVIGATION EXECUTE OBJECT HELP





CALL FUNCTION 'NAVIGATION_EXECUTE_OBJECT_HELP' "
  EXPORTING
    object_name =               " smen_buffc-report
    reporttype =                " smen_buffc-reporttype
*   sap_guid =                  " smen_buffc-sap_guid
*   target_system =             " smen_buffc-target_sys
*   new_window =                " smensapnew-customized
*   control_instance = SPACE    " smensapnew-customized
*   bw_active = SPACE           " smensapnew-customized
*   no_progress_indicator = SPACE  " smensapnew-customized
*   read_sy_datar = SPACE       " smensapnew-customized  Customized ('C') or standard menu ('S') flag
    .  "  NAVIGATION_EXECUTE_OBJECT_HELP

ABAP code example for Function Module NAVIGATION_EXECUTE_OBJECT_HELP





The ABAP code below is a full code listing to execute function module NAVIGATION_EXECUTE_OBJECT_HELP including all data declarations. The code uses the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the original method of declaring data variables up front. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8).

 

SELECT single REPORT
FROM SMEN_BUFFC
INTO @DATA(ld_object_name).


SELECT single REPORTTYPE
FROM SMEN_BUFFC
INTO @DATA(ld_reporttype).


SELECT single SAP_GUID
FROM SMEN_BUFFC
INTO @DATA(ld_sap_guid).


SELECT single TARGET_SYS
FROM SMEN_BUFFC
INTO @DATA(ld_target_system).


SELECT single CUSTOMIZED
FROM SMENSAPNEW
INTO @DATA(ld_new_window).


SELECT single CUSTOMIZED
FROM SMENSAPNEW
INTO @DATA(ld_control_instance).


SELECT single CUSTOMIZED
FROM SMENSAPNEW
INTO @DATA(ld_bw_active).


SELECT single CUSTOMIZED
FROM SMENSAPNEW
INTO @DATA(ld_no_progress_indicator).


SELECT single CUSTOMIZED
FROM SMENSAPNEW
INTO @DATA(ld_read_sy_datar).
. CALL FUNCTION 'NAVIGATION_EXECUTE_OBJECT_HELP' EXPORTING object_name = ld_object_name reporttype = ld_reporttype * sap_guid = ld_sap_guid * target_system = ld_target_system * new_window = ld_new_window * control_instance = ld_control_instance * bw_active = ld_bw_active * no_progress_indicator = ld_no_progress_indicator * read_sy_datar = ld_read_sy_datar . " NAVIGATION_EXECUTE_OBJECT_HELP
IF SY-SUBRC EQ 0. "All OK ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.

DATA:
ld_object_name  TYPE SMEN_BUFFC-REPORT ,
ld_reporttype  TYPE SMEN_BUFFC-REPORTTYPE ,
ld_sap_guid  TYPE SMEN_BUFFC-SAP_GUID ,
ld_target_system  TYPE SMEN_BUFFC-TARGET_SYS ,
ld_new_window  TYPE SMENSAPNEW-CUSTOMIZED ,
ld_control_instance  TYPE SMENSAPNEW-CUSTOMIZED ,
ld_bw_active  TYPE SMENSAPNEW-CUSTOMIZED ,
ld_no_progress_indicator  TYPE SMENSAPNEW-CUSTOMIZED ,
ld_read_sy_datar  TYPE SMENSAPNEW-CUSTOMIZED .


SELECT single REPORT
FROM SMEN_BUFFC
INTO ld_object_name.


SELECT single REPORTTYPE
FROM SMEN_BUFFC
INTO ld_reporttype.


SELECT single SAP_GUID
FROM SMEN_BUFFC
INTO ld_sap_guid.


SELECT single TARGET_SYS
FROM SMEN_BUFFC
INTO ld_target_system.


SELECT single CUSTOMIZED
FROM SMENSAPNEW
INTO ld_new_window.


SELECT single CUSTOMIZED
FROM SMENSAPNEW
INTO ld_control_instance.


SELECT single CUSTOMIZED
FROM SMENSAPNEW
INTO ld_bw_active.


SELECT single CUSTOMIZED
FROM SMENSAPNEW
INTO ld_no_progress_indicator.


SELECT single CUSTOMIZED
FROM SMENSAPNEW
INTO ld_read_sy_datar.

Contribute (Add Comments)

Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name NAVIGATION_EXECUTE_OBJECT_HELP or its description.