SAP EXIT_SAPLJF60_013 Function Module for IS-M/SD: Postpone Billing Due to Suspension









EXIT_SAPLJF60_013 is a standard exit sapljf60 013 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for IS-M/SD: Postpone Billing Due to Suspension 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 sapljf60 013 FM, simply by entering the name EXIT_SAPLJF60_013 into the relevant SAP transaction such as SE37 or SE38.

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



Function EXIT_SAPLJF60_013 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_SAPLJF60_013'"IS-M/SD: Postpone Billing Due to Suspension
EXPORTING
XJFRK = "

IMPORTING
XPOSPONE = "

TABLES
XJFRP = "
.



Related Function Modules

Below is a list of related SAP function modules this CUSTOMER FUNCTION exit / user exit is relevant for.
ISM_CREATE_GROUP_NUMBER IS-M: Create Collective Run Header (JFSK) Inc. Number Assgmt for Coll. Run
ISM_INVOICE_PRICING_PAI IS-M/SD: Postprocess Condition Dialog (PAI) in Billing
ISM_INVOICE_PRICING_PBO IS-M/SD: Prepare Condition Dialog (PBO) in Billing
ISP_GN_INVOICE_CREATE IS-M/SD: Generate Billing Items from Billing Interface Table
ISP_INTERFACE_FOR_FKDAT_BUILD IS-M/SD: Determine Billing Date for Billing Index
ISP_INVOICE_ACCOUNT_DETERM IS-M/SD: Account Determination for Billing
ISP_INVOICE_CREATE_FAKT IS-M/SD: Generate Billing Interface Tables for Billing
ISP_INVOICE_CREATE_STO IS-M/SD: Generate Reversal Billing Documents
ISP_INVOICE_DECOMPRESS_PREPARE IS-M/SD: Break Down Summarized Billing Document
ISP_INVOICE_DOCUMENT_ADD IS-M/SD: Update Billing Documents
ISP_INVOICE_DOCUMENT_READ IS-M/SD: Read Billing Documents
ISP_INVOICE_HEAD_MAINTAIN IS-M/SD: Generate Invoice List Header
ISP_INVOICE_INDEX_CREATE IS-M/SD: Determine Index Data for Billing
ISP_INVOICE_INDEX_FKDAT_EXIT Influence Billing Date Using User Exit
ISP_INVOICE_INDEX_FKDAT_GET IS-M/SD: Determine Billing Date for Billing Index
ISP_INVOICE_ITEM_MAINTAIN IS-M/SD: Generate Billing Documents
ISP_INVOICE_PRICE_NO_DIALOG IS-M/SD: Access Pricing for One Billing Item
ISP_INVOICE_REFRESH IS-M/SD: Initialize Billing

IMPORTING Parameters details for EXIT_SAPLJF60_013

XJFRK -

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

EXPORTING Parameters details for EXIT_SAPLJF60_013

XPOSPONE -

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

TABLES Parameters details for EXIT_SAPLJF60_013

XJFRP -

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

Copy and paste ABAP code example for EXIT_SAPLJF60_013 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_xjfrk  TYPE JFRKVB, "   
lt_xjfrp  TYPE STANDARD TABLE OF JFRPVB, "   
lv_xpospone  TYPE JPSD_XFELD. "   

  CALL FUNCTION 'EXIT_SAPLJF60_013'  "IS-M/SD: Postpone Billing Due to Suspension
    EXPORTING
         XJFRK = lv_xjfrk
    IMPORTING
         XPOSPONE = lv_xpospone
    TABLES
         XJFRP = lt_xjfrp
. " EXIT_SAPLJF60_013




ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLJF60_013

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!