SAP ISP_SERVICE_ACCOUNT_REFRESH Function Module for IS-M/SD: Initialize Settlement Tables









ISP_SERVICE_ACCOUNT_REFRESH is a standard isp service account refresh 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: Initialize Settlement Tables 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 isp service account refresh FM, simply by entering the name ISP_SERVICE_ACCOUNT_REFRESH into the relevant SAP transaction such as SE37 or SE38.

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



Function ISP_SERVICE_ACCOUNT_REFRESH 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 'ISP_SERVICE_ACCOUNT_REFRESH'"IS-M/SD: Initialize Settlement Tables
EXPORTING
* WITH_COMMIT = ' ' "
* WITH_POSTING = ' ' "G/L Account Number

CHANGING
* C_XJFFB_IF_TAB = "

TABLES
XJFFB = "
XJLFS = "
XJLPA = "
XJLRK = "
XJLRP = "
XJLSS = "
XKOMV = "
XTHEAD = "
XJLCOMMIND = "
.




Customer Function user exits

Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.
EXIT_SAPLJL10_001 IS-M/SD: Sort Settlement Items
EXIT_SAPLJL10_002 IS-M/SD: Further Partners (Roles) in Settlement
EXIT_SAPLJL10_003 IS-M/SD: Modify Pricing Fields - Header Fields TKOMK
EXIT_SAPLJL10_004 IS-M/SD: Modify Pricing Fields - Item Fields TKOMP
EXIT_SAPLJL10_005 IS-M/SD: Modify Number Range for Service Settlement
EXIT_SAPLJL10_006 IS-M/SD: Modify Fields for Account Determination (Header Fields) KOMKCV
EXIT_SAPLJL10_007 IS-M/SD: Modify Fields for Account Determination (Item Fields) KOMPCV
EXIT_SAPLJL10_008 IS-M/SD: User Exit for Changing Interface to Settlement Items
EXIT_SAPLJL10_009 IS-M/SD: Modification of Fields in Deliveries for Settlement
EXIT_SAPLJL10_010 IS-M/SD: Customer-Specific HR Wage Type Determination

IMPORTING Parameters details for ISP_SERVICE_ACCOUNT_REFRESH

WITH_COMMIT -

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

WITH_POSTING - G/L Account Number

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

CHANGING Parameters details for ISP_SERVICE_ACCOUNT_REFRESH

C_XJFFB_IF_TAB -

Data type: JLHDEXTIFDOCFLOWVB_T
Optional: Yes
Call by Reference: Yes

TABLES Parameters details for ISP_SERVICE_ACCOUNT_REFRESH

XJFFB -

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

XJLFS -

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

XJLPA -

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

XJLRK -

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

XJLRP -

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

XJLSS -

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

XKOMV -

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

XTHEAD -

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

XJLCOMMIND -

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

Copy and paste ABAP code example for ISP_SERVICE_ACCOUNT_REFRESH 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_xjffb  TYPE STANDARD TABLE OF JFFBVB, "   
lv_with_commit  TYPE JFFBVB, "   ' '
lv_c_xjffb_if_tab  TYPE JLHDEXTIFDOCFLOWVB_T, "   
lt_xjlfs  TYPE STANDARD TABLE OF JLFS, "   
lv_with_posting  TYPE JLFS, "   ' '
lt_xjlpa  TYPE STANDARD TABLE OF JLPAVB, "   
lt_xjlrk  TYPE STANDARD TABLE OF JLRKVB, "   
lt_xjlrp  TYPE STANDARD TABLE OF JLRPVB, "   
lt_xjlss  TYPE STANDARD TABLE OF JLSS, "   
lt_xkomv  TYPE STANDARD TABLE OF KOMV, "   
lt_xthead  TYPE STANDARD TABLE OF THEAD, "   
lt_xjlcommind  TYPE STANDARD TABLE OF JLCOMMINDVB. "   

  CALL FUNCTION 'ISP_SERVICE_ACCOUNT_REFRESH'  "IS-M/SD: Initialize Settlement Tables
    EXPORTING
         WITH_COMMIT = lv_with_commit
         WITH_POSTING = lv_with_posting
    CHANGING
         C_XJFFB_IF_TAB = lv_c_xjffb_if_tab
    TABLES
         XJFFB = lt_xjffb
         XJLFS = lt_xjlfs
         XJLPA = lt_xjlpa
         XJLRK = lt_xjlrk
         XJLRP = lt_xjlrp
         XJLSS = lt_xjlss
         XKOMV = lt_xkomv
         XTHEAD = lt_xthead
         XJLCOMMIND = lt_xjlcommind
. " ISP_SERVICE_ACCOUNT_REFRESH




ABAP code using 7.40 inline data declarations to call FM ISP_SERVICE_ACCOUNT_REFRESH

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_with_commit) = ' '.
 
 
 
DATA(ld_with_posting) = ' '.
 
 
 
 
 
 
 
 


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!