SAP TEST_FUBA_TABLES_PARAMETERS Function Module for bla









TEST_FUBA_TABLES_PARAMETERS is a standard test fuba tables parameters SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for bla 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 test fuba tables parameters FM, simply by entering the name TEST_FUBA_TABLES_PARAMETERS into the relevant SAP transaction such as SE37 or SE38.

Function Group: TEST_FUGR_FOR_SCAN_RESULT
Program Name: SAPLTEST_FUGR_FOR_SCAN_RESULT
Main Program: SAPLTEST_FUGR_FOR_SCAN_RESULT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function TEST_FUBA_TABLES_PARAMETERS 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 'TEST_FUBA_TABLES_PARAMETERS'"bla
EXPORTING
STATUS_FLAG = "
* EXTEND_MOD = "
* HELP_FLAG = ' ' "
* C_HANDLE = "
* I_SUPPRESS_DIALOG = ABAP_FALSE "

IMPORTING
DOCU_CONTAINER = "
STMT_KEYWORD = "

CHANGING
EDIT = "
TDPARAM = "
CURSOR_I = "

TABLES
CONTENT = "
CONTENT_C = "
LINEINDEX = "
.



IMPORTING Parameters details for TEST_FUBA_TABLES_PARAMETERS

STATUS_FLAG -

Data type: ANY
Optional: No
Call by Reference: No ( called with pass by value option)

EXTEND_MOD -

Data type: ANY
Optional: Yes
Call by Reference: No ( called with pass by value option)

HELP_FLAG -

Data type: ANY
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

C_HANDLE -

Data type: CL_WB_EDITOR
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_SUPPRESS_DIALOG -

Data type: ABAP_BOOL
Default: ABAP_FALSE
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for TEST_FUBA_TABLES_PARAMETERS

DOCU_CONTAINER -

Data type: CL_GUI_CONTROL
Optional: No
Call by Reference: No ( called with pass by value option)

STMT_KEYWORD -

Data type: RSTXP-TDANWEISNG
Optional: No
Call by Reference: No ( called with pass by value option)

CHANGING Parameters details for TEST_FUBA_TABLES_PARAMETERS

EDIT -

Data type: S38E
Optional: No
Call by Reference: No ( called with pass by value option)

TDPARAM -

Data type: RSTXP-TDPARAM
Optional: No
Call by Reference: No ( called with pass by value option)

CURSOR_I -

Data type: ANY
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for TEST_FUBA_TABLES_PARAMETERS

CONTENT -

Data type: RSWSOURCET
Optional: No
Call by Reference: Yes

CONTENT_C -

Data type: RSWSOURCET
Optional: No
Call by Reference: Yes

LINEINDEX -

Data type: EDLINEINDX
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for TEST_FUBA_TABLES_PARAMETERS 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_edit  TYPE S38E, "   
lt_content  TYPE STANDARD TABLE OF RSWSOURCET, "   
lv_status_flag  TYPE ANY, "   
lv_docu_container  TYPE CL_GUI_CONTROL, "   
lv_tdparam  TYPE RSTXP-TDPARAM, "   
lt_content_c  TYPE STANDARD TABLE OF RSWSOURCET, "   
lv_extend_mod  TYPE ANY, "   
lv_stmt_keyword  TYPE RSTXP-TDANWEISNG, "   
lv_cursor_i  TYPE ANY, "   
lv_help_flag  TYPE ANY, "   SPACE
lt_lineindex  TYPE STANDARD TABLE OF EDLINEINDX, "   
lv_c_handle  TYPE CL_WB_EDITOR, "   
lv_i_suppress_dialog  TYPE ABAP_BOOL. "   ABAP_FALSE

  CALL FUNCTION 'TEST_FUBA_TABLES_PARAMETERS'  "bla
    EXPORTING
         STATUS_FLAG = lv_status_flag
         EXTEND_MOD = lv_extend_mod
         HELP_FLAG = lv_help_flag
         C_HANDLE = lv_c_handle
         I_SUPPRESS_DIALOG = lv_i_suppress_dialog
    IMPORTING
         DOCU_CONTAINER = lv_docu_container
         STMT_KEYWORD = lv_stmt_keyword
    CHANGING
         EDIT = lv_edit
         TDPARAM = lv_tdparam
         CURSOR_I = lv_cursor_i
    TABLES
         CONTENT = lt_content
         CONTENT_C = lt_content_c
         LINEINDEX = lt_lineindex
. " TEST_FUBA_TABLES_PARAMETERS




ABAP code using 7.40 inline data declarations to call FM TEST_FUBA_TABLES_PARAMETERS

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.

 
 
 
 
"SELECT single TDPARAM FROM RSTXP INTO @DATA(ld_tdparam).
 
 
 
"SELECT single TDANWEISNG FROM RSTXP INTO @DATA(ld_stmt_keyword).
 
 
DATA(ld_help_flag) = ' '.
 
 
 
DATA(ld_i_suppress_dialog) = ABAP_FALSE.
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!