FOBU_DIALOG_START_SUBSCREEN 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 FOBU_DIALOG_START_SUBSCREEN into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
FOBU_DIALOG
Released Date:
20.08.2002
Processing type: Normal fucntion module
CALL FUNCTION 'FOBU_DIALOG_START_SUBSCREEN' "Call Formula Builder for CL_FOBU_FORMULA in Subscreen
* EXPORTING
* i_formula = " cl_fobu_formula Formula Builder
* i_appl_callback = " if_fobu_appl_callback Formula Builder: Application Callback
* i_display_only = ' ' " c Display Formula Only
* i_fieldname = " string Heading Text Field / Info Object
* i_t_hidden_columns = " lvc_t_fnam Suppressed Columns in Field List
* i_screen_size = 'L' " c 'L': Large Subscreen, 'S': Small Subscreen
* i_field_categ = " sfbe_categ Selected Field Category
* i_function_categ = " sfbe_categ Selected Function Category
* i_no_search = " seu_bool 'X': No Search Function Through Field and Function List
IMPORTING
e_screen = " sydynnr Screen Number of Subscreen
e_screen_prog = " syrepid Subscreen Program
EXCEPTIONS
INVALID_PARAMETER = 1 " Invalid Parameter
INTERNAL_ERROR = 2 " Internal Error
. " FOBU_DIALOG_START_SUBSCREEN
The ABAP code below is a full code listing to execute function module FOBU_DIALOG_START_SUBSCREEN 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_e_screen | TYPE SYDYNNR , |
| ld_e_screen_prog | TYPE SYREPID . |
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_e_screen | TYPE SYDYNNR , |
| ld_i_formula | TYPE CL_FOBU_FORMULA , |
| ld_e_screen_prog | TYPE SYREPID , |
| ld_i_appl_callback | TYPE IF_FOBU_APPL_CALLBACK , |
| ld_i_display_only | TYPE C , |
| ld_i_fieldname | TYPE STRING , |
| ld_i_t_hidden_columns | TYPE LVC_T_FNAM , |
| ld_i_screen_size | TYPE C , |
| ld_i_field_categ | TYPE SFBE_CATEG , |
| ld_i_function_categ | TYPE SFBE_CATEG , |
| ld_i_no_search | TYPE SEU_BOOL . |
Calling the formula builder for formulas from
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 FOBU_DIALOG_START_SUBSCREEN or its description.