SAP FI_WT_INIT_LIST Function Module for









FI_WT_INIT_LIST is a standard fi wt init list SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 fi wt init list FM, simply by entering the name FI_WT_INIT_LIST into the relevant SAP transaction such as SE37 or SE38.

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



Function FI_WT_INIT_LIST 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 'FI_WT_INIT_LIST'"
EXPORTING
IMP_CB_PROG = "
* IMP_HANDLE = "
* IMP_CB_FORM = "
* IMP_LINE_SIZE = "
* IMP_REPROCESSING = "
* IMP_LIST_TITLE1 = "
* IMP_LIST_TITLE2 = "

TABLES
T_LINE_CHAR = "

EXCEPTIONS
NO_DATA_STRUCTURE = 1
.



IMPORTING Parameters details for FI_WT_INIT_LIST

IMP_CB_PROG -

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

IMP_HANDLE -

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

IMP_CB_FORM -

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

IMP_LINE_SIZE -

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

IMP_REPROCESSING -

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

IMP_LIST_TITLE1 -

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

IMP_LIST_TITLE2 -

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

TABLES Parameters details for FI_WT_INIT_LIST

T_LINE_CHAR -

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

EXCEPTIONS details

NO_DATA_STRUCTURE -

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

Copy and paste ABAP code example for FI_WT_INIT_LIST 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_imp_cb_prog  TYPE RSDSPROG, "   
lt_t_line_char  TYPE STANDARD TABLE OF QSTRLINE_DEF, "   
lv_no_data_structure  TYPE QSTRLINE_DEF, "   
lv_imp_handle  TYPE SLIS_HANDL, "   
lv_imp_cb_form  TYPE RSDSFORM, "   
lv_imp_line_size  TYPE I, "   
lv_imp_reprocessing  TYPE XFELD, "   
lv_imp_list_title1  TYPE WT_REPTITEL1, "   
lv_imp_list_title2  TYPE WT_REPTITEL2. "   

  CALL FUNCTION 'FI_WT_INIT_LIST'  "
    EXPORTING
         IMP_CB_PROG = lv_imp_cb_prog
         IMP_HANDLE = lv_imp_handle
         IMP_CB_FORM = lv_imp_cb_form
         IMP_LINE_SIZE = lv_imp_line_size
         IMP_REPROCESSING = lv_imp_reprocessing
         IMP_LIST_TITLE1 = lv_imp_list_title1
         IMP_LIST_TITLE2 = lv_imp_list_title2
    TABLES
         T_LINE_CHAR = lt_t_line_char
    EXCEPTIONS
        NO_DATA_STRUCTURE = 1
. " FI_WT_INIT_LIST




ABAP code using 7.40 inline data declarations to call FM FI_WT_INIT_LIST

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



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!