SAP COM_SES_GET_NAVIGATION_TARGETS Function Module for Get targets for Business Object navigation
COM_SES_GET_NAVIGATION_TARGETS is a standard com ses get navigation targets SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Get targets for Business Object navigation processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for com ses get navigation targets FM, simply by entering the name COM_SES_GET_NAVIGATION_TARGETS into the relevant SAP transaction such as SE37 or SE38.
Function Group: COM_SES_SEARCH
Program Name: SAPLCOM_SES_SEARCH
Main Program: SAPLCOM_SES_SEARCH
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function COM_SES_GET_NAVIGATION_TARGETS pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'COM_SES_GET_NAVIGATION_TARGETS'"Get targets for Business Object navigation.
EXPORTING
* IV_TARGET_UI_TYPE = "Target UI type (SAP GUI, SAP Portal, #)
* IV_SEARCH_OBJECT_TYPE = "Object type at search service provider
* IV_UI_OPERATION = "Unified name for UI operation
* IV_LANGUAGE = "ISO 639 language; default: logon language
IMPORTING
ET_NAVIGATION_TARGETS = "Target for Business Object naviagtion
IMPORTING Parameters details for COM_SES_GET_NAVIGATION_TARGETS
IV_TARGET_UI_TYPE - Target UI type (SAP GUI, SAP Portal, #)
Data type: COM_SEARCH_TV_TARGET_UI_TYPEOptional: Yes
Call by Reference: No ( called with pass by value option)
IV_SEARCH_OBJECT_TYPE - Object type at search service provider
Data type: COM_SEARCH_TS_OBJECT_TYPE_KEYOptional: Yes
Call by Reference: No ( called with pass by value option)
IV_UI_OPERATION - Unified name for UI operation
Data type: COM_SEARCH_TV_UI_OPERATIONOptional: Yes
Call by Reference: No ( called with pass by value option)
IV_LANGUAGE - ISO 639 language; default: logon language
Data type: LAISOOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for COM_SES_GET_NAVIGATION_TARGETS
ET_NAVIGATION_TARGETS - Target for Business Object naviagtion
Data type: COM_SEARCH_TT_NAVI_TARGETOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for COM_SES_GET_NAVIGATION_TARGETS Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than 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 newer method of declaring data variables on the fly. 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), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_iv_target_ui_type | TYPE COM_SEARCH_TV_TARGET_UI_TYPE, " | |||
| lv_et_navigation_targets | TYPE COM_SEARCH_TT_NAVI_TARGET, " | |||
| lv_iv_search_object_type | TYPE COM_SEARCH_TS_OBJECT_TYPE_KEY, " | |||
| lv_iv_ui_operation | TYPE COM_SEARCH_TV_UI_OPERATION, " | |||
| lv_iv_language | TYPE LAISO. " |
|   CALL FUNCTION 'COM_SES_GET_NAVIGATION_TARGETS' "Get targets for Business Object navigation |
| EXPORTING | ||
| IV_TARGET_UI_TYPE | = lv_iv_target_ui_type | |
| IV_SEARCH_OBJECT_TYPE | = lv_iv_search_object_type | |
| IV_UI_OPERATION | = lv_iv_ui_operation | |
| IV_LANGUAGE | = lv_iv_language | |
| IMPORTING | ||
| ET_NAVIGATION_TARGETS | = lv_et_navigation_targets | |
| . " COM_SES_GET_NAVIGATION_TARGETS | ||
ABAP code using 7.40 inline data declarations to call FM COM_SES_GET_NAVIGATION_TARGETS
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.Search for further information about these or an SAP related objects