SAP FKK_PRENOTE_AUDDIS_15 Function Module for Prenotification: AUDDIS UK
FKK_PRENOTE_AUDDIS_15 is a standard fkk prenote auddis 15 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Prenotification: AUDDIS UK 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 fkk prenote auddis 15 FM, simply by entering the name FKK_PRENOTE_AUDDIS_15 into the relevant SAP transaction such as SE37 or SE38.
Function Group: FKPNGB2
Program Name: SAPLFKPNGB2
Main Program: SAPLFKPNGB2
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FKK_PRENOTE_AUDDIS_15 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 'FKK_PRENOTE_AUDDIS_15'"Prenotification: AUDDIS UK.
EXPORTING
I_LAUFD = "File Name in the File System
I_LAUFI = "Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
IMPORTING
E_X_NOPRENOTE = "Checkbox
TABLES
T_DFKKPNBKA = "Prenotification: Structure
CREAT_FKKPNBK = "Prenotification data (latest)
IMPORTING Parameters details for FKK_PRENOTE_AUDDIS_15
I_LAUFD - File Name in the File System
Data type: DFKKPNBKA-LAUFDOptional: No
Call by Reference: No ( called with pass by value option)
I_LAUFI - Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
Data type: DFKKPNBKA-LAUFIOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for FKK_PRENOTE_AUDDIS_15
E_X_NOPRENOTE - Checkbox
Data type: XFELDOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for FKK_PRENOTE_AUDDIS_15
T_DFKKPNBKA - Prenotification: Structure
Data type: TY_DFKKPNBKAOptional: No
Call by Reference: Yes
CREAT_FKKPNBK - Prenotification data (latest)
Data type: TY_FKKPNBKOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for FKK_PRENOTE_AUDDIS_15 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_laufd | TYPE DFKKPNBKA-LAUFD, " | |||
| lt_t_dfkkpnbka | TYPE STANDARD TABLE OF TY_DFKKPNBKA, " | |||
| lv_e_x_noprenote | TYPE XFELD, " | |||
| lv_i_laufi | TYPE DFKKPNBKA-LAUFI, " | |||
| lt_creat_fkkpnbk | TYPE STANDARD TABLE OF TY_FKKPNBK. " |
|   CALL FUNCTION 'FKK_PRENOTE_AUDDIS_15' "Prenotification: AUDDIS UK |
| EXPORTING | ||
| I_LAUFD | = lv_i_laufd | |
| I_LAUFI | = lv_i_laufi | |
| IMPORTING | ||
| E_X_NOPRENOTE | = lv_e_x_noprenote | |
| TABLES | ||
| T_DFKKPNBKA | = lt_t_dfkkpnbka | |
| CREAT_FKKPNBK | = lt_creat_fkkpnbk | |
| . " FKK_PRENOTE_AUDDIS_15 | ||
ABAP code using 7.40 inline data declarations to call FM FKK_PRENOTE_AUDDIS_15
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 LAUFD FROM DFKKPNBKA INTO @DATA(ld_i_laufd). | ||||
| "SELECT single LAUFI FROM DFKKPNBKA INTO @DATA(ld_i_laufi). | ||||
Search for further information about these or an SAP related objects