BDT_FUNCTION_NAVIGATE 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 BDT_FUNCTION_NAVIGATE into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
BUSS
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'BDT_FUNCTION_NAVIGATE' "
* EXPORTING
* iv_handle = " bdt_instance_id Handle
* iv_vartp = '~' " bu_vartp Screen Sequence Category
* iv_varnr = " bu_varnr Screen Sequence
* iv_dynid = " bu_dynid Screen
* iv_screen_type = " bdt_screen_type
* iv_screen_posnr = " bu_posnr Item Number (for Sequence)
* iv_screen_view = " bu_sicht View
* iv_screen_section = " bu_absnr Section
* iv_screen_command = " syucomm Navigation Command
* iv_cursorfield = " bu_tbfld Table field (table name-field name)
* iv_cursorline = " sylilli List processing, current list line
* iv_action = " bus000flds-char1
* iv_xsimulate = " bdt_boole_d
* iv_xpush = " bdt_boole_d
* iv_xsuppress_nav = " bdt_boole_d
* iv_xreset_scrollpos = SPACE " bdt_boole_d
IMPORTING
ev_other_screen = " boole_d
ev_xscpp = " boole_d
ev_spall = " bu_spall Coordinates of left column (dialog box)
ev_zeilo = " bu_zeilo Coordinates of top line (dialog box)
ev_spalr = " bu_spalr Coordinates of right column (dialog box)
ev_zeilu = " bu_zeilu Coordinates of bottom line (dialog box)
ev_pop = " boole_d
* TABLES
* it_params = "
EXCEPTIONS
HANDLE_NOT_FOUND = 1 "
ILLEGAL_SCREEN_TYPE = 2 "
ILLEGAL_POSNR = 3 "
FIRST_DATA_SCREEN = 4 "
LAST_DATA_SCREEN = 5 "
SCREEN_NOT_FOUND = 6 "
SCREENTYPE_NOT_ACTIVE = 7 "
GENERAL_ERROR = 8 " Non-Specified Error
NO_SCREEN_VISIBLE = 9 "
. " BDT_FUNCTION_NAVIGATE
The ABAP code below is a full code listing to execute function module BDT_FUNCTION_NAVIGATE 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).
| ld_ev_other_screen | TYPE BOOLE_D , |
| ld_ev_xscpp | TYPE BOOLE_D , |
| ld_ev_spall | TYPE BU_SPALL , |
| ld_ev_zeilo | TYPE BU_ZEILO , |
| ld_ev_spalr | TYPE BU_SPALR , |
| ld_ev_zeilu | TYPE BU_ZEILU , |
| ld_ev_pop | TYPE BOOLE_D , |
| it_it_params | TYPE STANDARD TABLE OF STRING,"TABLES PARAM |
| wa_it_params | LIKE LINE OF it_it_params . |
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_ev_other_screen | TYPE BOOLE_D , |
| ld_iv_handle | TYPE BDT_INSTANCE_ID , |
| it_it_params | TYPE STANDARD TABLE OF STRING , |
| wa_it_params | LIKE LINE OF it_it_params, |
| ld_ev_xscpp | TYPE BOOLE_D , |
| ld_iv_vartp | TYPE BU_VARTP , |
| ld_ev_spall | TYPE BU_SPALL , |
| ld_iv_varnr | TYPE BU_VARNR , |
| ld_ev_zeilo | TYPE BU_ZEILO , |
| ld_iv_dynid | TYPE BU_DYNID , |
| ld_ev_spalr | TYPE BU_SPALR , |
| ld_iv_screen_type | TYPE BDT_SCREEN_TYPE , |
| ld_iv_screen_posnr | TYPE BU_POSNR , |
| ld_ev_zeilu | TYPE BU_ZEILU , |
| ld_iv_screen_view | TYPE BU_SICHT , |
| ld_ev_pop | TYPE BOOLE_D , |
| ld_iv_screen_section | TYPE BU_ABSNR , |
| ld_iv_screen_command | TYPE SYUCOMM , |
| ld_iv_cursorfield | TYPE BU_TBFLD , |
| ld_iv_cursorline | TYPE SYLILLI , |
| ld_iv_action | TYPE BUS000FLDS-CHAR1 , |
| ld_iv_xsimulate | TYPE BDT_BOOLE_D , |
| ld_iv_xpush | TYPE BDT_BOOLE_D , |
| ld_iv_xsuppress_nav | TYPE BDT_BOOLE_D , |
| ld_iv_xreset_scrollpos | TYPE BDT_BOOLE_D . |
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 BDT_FUNCTION_NAVIGATE or its description.