SAP EXIT_SAPLV60F_001 Function Module for Editing the Proposed Different Billing Date









EXIT_SAPLV60F_001 is a standard exit saplv60f 001 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Editing the Proposed Different Billing Date 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 exit saplv60f 001 FM, simply by entering the name EXIT_SAPLV60F_001 into the relevant SAP transaction such as SE37 or SE38.

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



Function EXIT_SAPLV60F_001 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 'EXIT_SAPLV60F_001'"Editing the Proposed Different Billing Date
EXPORTING
I_FPLA = "
I_FPLT = "

IMPORTING
E_AFDAT = "

CHANGING
C_AFDAT = "

TABLES
* XFPLA = "
* XFPLT = "
.



Related Function Modules

Below is a list of related SAP function modules this CUSTOMER FUNCTION exit / user exit is relevant for.
BILLING_FPLA_ARRAY_SELECT NOTRANSL: Prefetch auf Fakturierungspläne
BILLING_FPLT_ARRAY_SELECT NOTRANSL: Prefetch auf Fakturierungspläne: Termine
BILLING_SCHEDULE_COPY NOTRANSL: Fakturierungsplan kopieren ohne Dialog
BILLING_SCHEDULE_CREATE_T052S Determine Rate-Based Plan from Table T052S
BILLING_SCHEDULE_DELETE Delete billing plan
BILLING_SCHEDULE_DIALOG Maintain billing plan
BILLING_SCHEDULE_GENERATE Maintain billing plan without online
BILLING_SCHEDULE_GET_NUMBER Billing plan: Assign internal number and save in internal table
BILLING_SCHEDULE_HEAD_RELATION NOTRANSL: Zeigt der Pos.fakturierungsplan auf den Kopf
BILLING_SCHEDULE_INVOICE_VALUE Update billing plan with billing value
BILLING_SCHEDULE_MAINTAIN NOTRANSL: Fakturierungsplan und/oder Termin ändern (NICHT hinzufügen)
BILLING_SCHEDULE_PUSH_DATA NOTRANSL: Übernahme Fakturierungsplandaten in Funktionsgruppe
BILLING_SCHEDULE_READ Read billing plan
BILLING_SCHEDULE_REDUCE NOTRANSL: Löscht temporär alle FPLT-Sätze, die nicht benötigt werden
BILLING_SCHEDULE_RELATION NOTRANSL: Ermittelt ob der aktuelle Fakturierungsplan auf die Vorlage zeig
BILLING_SCHEDULE_SAVE NOTRANSL: Fakturierungsplan pflegen
BILLING_SCHEDULE_STATUS Change billing plan and/or date (NOT add)
BILLING_SCHEDULE_STATUS_HEAD NOTRANSL: Dynamischer Kopfstatus ermitteln
BILLING_SCHEDULE_UNDO NOTRANSL: Fakturierungsplan zurücksetzen (YFPLA/T -> XFPLA/T)
BILLING_SCHEDULE_VALUE_BASED NOTRANSL: Wertmäßiger Kopffakt.plan Ermittlung und Verteilung von Differen
BILLING_SCHED_CHECK_MILESTONE NOTRANSL: Fakturierungsplan: Wird der Meilenstein im Termin verwendet ?
BILLING_SCHED_PRINTVIEW_READ NOTRANSL: Fakturierungsplan lesen
BILL_SCHED_GENER_UNTIL_HORIZON NOTRANSL: Fakturierungsplan um Termine bis zum Horizont oder Endedatum erw
BILL_SCHED_MILESTONE_UPDATE NOTRANSL: Fakturierungsplan um Termine bis zum Horizont oder Endedatum erw
BILL_SCHED_VALUE_BASED_CHECK NOTRANSL: Ermittelt ob der Kopffakturierungsplan wertmäßige Termine hat
SD_CCARD_DATA_GET NOTRANSL: Zahlungskarten: Daten setzen
SD_CCARD_DATA_PUT NOTRANSL: Zahlungskarten: Daten setzen
SD_FPLA_DATA_GET NOTRANSL: Fakturierungsplan pflegen
SD_FPLA_DATA_PUT NOTRANSL: Fakturierungsplan: Daten setzen
SD_ORDER_BILLING_SCHEDULE NOTRANSL: Fakturierungspläne eines Auftrages um Termine bis zum Horizont e
SD_TFPART_F4 F4 help for billing plan type
SD_V60F_REFRESH NOTRANSL: Initialisieren der Daten in Funktionsgruppe V60F

IMPORTING Parameters details for EXIT_SAPLV60F_001

I_FPLA -

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

I_FPLT -

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

EXPORTING Parameters details for EXIT_SAPLV60F_001

E_AFDAT -

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

CHANGING Parameters details for EXIT_SAPLV60F_001

C_AFDAT -

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

TABLES Parameters details for EXIT_SAPLV60F_001

XFPLA -

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

XFPLT -

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

Copy and paste ABAP code example for EXIT_SAPLV60F_001 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:
lt_xfpla  TYPE STANDARD TABLE OF FPLAVB, "   
lv_i_fpla  TYPE FPLAVB, "   
lv_c_afdat  TYPE FPLT-AFDAT, "   
lv_e_afdat  TYPE FPLT-AFDAT, "   
lt_xfplt  TYPE STANDARD TABLE OF FPLTVB, "   
lv_i_fplt  TYPE FPLTVB. "   

  CALL FUNCTION 'EXIT_SAPLV60F_001'  "Editing the Proposed Different Billing Date
    EXPORTING
         I_FPLA = lv_i_fpla
         I_FPLT = lv_i_fplt
    IMPORTING
         E_AFDAT = lv_e_afdat
    CHANGING
         C_AFDAT = lv_c_afdat
    TABLES
         XFPLA = lt_xfpla
         XFPLT = lt_xfplt
. " EXIT_SAPLV60F_001




ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLV60F_001

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 AFDAT FROM FPLT INTO @DATA(ld_c_afdat).
 
"SELECT single AFDAT FROM FPLT INTO @DATA(ld_e_afdat).
 
 
 


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!