SAP PRELIMINARY_DATA_READ_NEW Function Module for Lesen Buchungsvorgang aus zentraler Erfassungstabelle Freigabeverfahren
PRELIMINARY_DATA_READ_NEW is a standard preliminary data read new SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Lesen Buchungsvorgang aus zentraler Erfassungstabelle Freigabeverfahren 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 preliminary data read new FM, simply by entering the name PRELIMINARY_DATA_READ_NEW into the relevant SAP transaction such as SE37 or SE38.
Function Group: FVZM
Program Name: SAPLFVZM
Main Program: SAPLFVZM
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function PRELIMINARY_DATA_READ_NEW 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 'PRELIMINARY_DATA_READ_NEW'"Lesen Buchungsvorgang aus zentraler Erfassungstabelle Freigabeverfahren.
EXPORTING
I_TAB_VZFZE = "
* I_FLG_DO_NOT_CHECK_SETTINGS = ' ' "
IMPORTING
E_TAB_VDAUSZ = "
E_TAB_VDBEKI = "
E_TAB_VDBEPP = "
E_TAB_VDNBZE = "
E_TAB_VZFZE_VDAUSZ = "
E_TAB_VZFZE_VDBEKI = "
E_TAB_VZFZE_VDBEPP = "
E_TAB_VZFZE_VDNBZE = "
IMPORTING Parameters details for PRELIMINARY_DATA_READ_NEW
I_TAB_VZFZE -
Data type: TRTY_VZFZEOptional: No
Call by Reference: Yes
I_FLG_DO_NOT_CHECK_SETTINGS -
Data type: XFELDDefault: SPACE
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for PRELIMINARY_DATA_READ_NEW
E_TAB_VDAUSZ -
Data type: TRTY_VDAUSZ_BOptional: No
Call by Reference: Yes
E_TAB_VDBEKI -
Data type: TRTY_VDBEKIOptional: No
Call by Reference: Yes
E_TAB_VDBEPP -
Data type: TRTY_VDBEPPOptional: No
Call by Reference: Yes
E_TAB_VDNBZE -
Data type: TRTY_VDNBZEOptional: No
Call by Reference: Yes
E_TAB_VZFZE_VDAUSZ -
Data type: TRTY_VZFZE_VDAUSZOptional: No
Call by Reference: Yes
E_TAB_VZFZE_VDBEKI -
Data type: TRTY_VZFZE_VDBEKIOptional: No
Call by Reference: Yes
E_TAB_VZFZE_VDBEPP -
Data type: TRTY_VZFZE_VDBEPPOptional: No
Call by Reference: Yes
E_TAB_VZFZE_VDNBZE -
Data type: TRTY_VZFZE_VDNBZEOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for PRELIMINARY_DATA_READ_NEW 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_i_tab_vzfze | TYPE TRTY_VZFZE, " | |||
| lv_e_tab_vdausz | TYPE TRTY_VDAUSZ_B, " | |||
| lv_e_tab_vdbeki | TYPE TRTY_VDBEKI, " | |||
| lv_i_flg_do_not_check_settings | TYPE XFELD, " SPACE | |||
| lv_e_tab_vdbepp | TYPE TRTY_VDBEPP, " | |||
| lv_e_tab_vdnbze | TYPE TRTY_VDNBZE, " | |||
| lv_e_tab_vzfze_vdausz | TYPE TRTY_VZFZE_VDAUSZ, " | |||
| lv_e_tab_vzfze_vdbeki | TYPE TRTY_VZFZE_VDBEKI, " | |||
| lv_e_tab_vzfze_vdbepp | TYPE TRTY_VZFZE_VDBEPP, " | |||
| lv_e_tab_vzfze_vdnbze | TYPE TRTY_VZFZE_VDNBZE. " |
|   CALL FUNCTION 'PRELIMINARY_DATA_READ_NEW' "Lesen Buchungsvorgang aus zentraler Erfassungstabelle Freigabeverfahren |
| EXPORTING | ||
| I_TAB_VZFZE | = lv_i_tab_vzfze | |
| I_FLG_DO_NOT_CHECK_SETTINGS | = lv_i_flg_do_not_check_settings | |
| IMPORTING | ||
| E_TAB_VDAUSZ | = lv_e_tab_vdausz | |
| E_TAB_VDBEKI | = lv_e_tab_vdbeki | |
| E_TAB_VDBEPP | = lv_e_tab_vdbepp | |
| E_TAB_VDNBZE | = lv_e_tab_vdnbze | |
| E_TAB_VZFZE_VDAUSZ | = lv_e_tab_vzfze_vdausz | |
| E_TAB_VZFZE_VDBEKI | = lv_e_tab_vzfze_vdbeki | |
| E_TAB_VZFZE_VDBEPP | = lv_e_tab_vzfze_vdbepp | |
| E_TAB_VZFZE_VDNBZE | = lv_e_tab_vzfze_vdnbze | |
| . " PRELIMINARY_DATA_READ_NEW | ||
ABAP code using 7.40 inline data declarations to call FM PRELIMINARY_DATA_READ_NEW
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.| DATA(ld_i_flg_do_not_check_settings) | = ' '. | |||
Search for further information about these or an SAP related objects