SAP ISB_NOT_USE_LINE_CALCULATE Function Module for IS-B: Durchschnittlich nicht inanspruchgenommene Linie
ISB_NOT_USE_LINE_CALCULATE is a standard isb not use line calculate 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-B: Durchschnittlich nicht inanspruchgenommene Linie 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 isb not use line calculate FM, simply by entering the name ISB_NOT_USE_LINE_CALCULATE into the relevant SAP transaction such as SE37 or SE38.
Function Group: JBT6
Program Name: SAPLJBT6
Main Program: SAPLJBT6
Appliation area: J
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISB_NOT_USE_LINE_CALCULATE 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 'ISB_NOT_USE_LINE_CALCULATE'"IS-B: Durchschnittlich nicht inanspruchgenommene Linie.
EXPORTING
DBPERIODE = "
DKALKTAG = "Datum des Kalkulationstages
IMPORTING
BDSLINIE = "Durchschnitssaldo
TABLES
PAR_JBDKOKO = "
PAR_JBDKOPO = "
SALDEN_LINIE = "
SAV_LFDTAGE = "Anzahl der abgelaufenen Tage d. Berichtsperiode
SAV_TAGWERTE = "
TAGESSALDEN = "int. Tabelle für Tagessalden
IMPORTING Parameters details for ISB_NOT_USE_LINE_CALCULATE
DBPERIODE -
Data type: SY-DATUMOptional: No
Call by Reference: No ( called with pass by value option)
DKALKTAG - Datum des Kalkulationstages
Data type: SY-DATUMOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISB_NOT_USE_LINE_CALCULATE
BDSLINIE - Durchschnitssaldo
Data type: JBDKOPO-BZIGREOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISB_NOT_USE_LINE_CALCULATE
PAR_JBDKOKO -
Data type: JBDKOKOOptional: No
Call by Reference: No ( called with pass by value option)
PAR_JBDKOPO -
Data type: JBDKOPOOptional: No
Call by Reference: No ( called with pass by value option)
SALDEN_LINIE -
Data type: JBITSALOptional: No
Call by Reference: No ( called with pass by value option)
SAV_LFDTAGE - Anzahl der abgelaufenen Tage d. Berichtsperiode
Data type: JBTLFDTOptional: No
Call by Reference: No ( called with pass by value option)
SAV_TAGWERTE -
Data type: JBITWRTOptional: No
Call by Reference: No ( called with pass by value option)
TAGESSALDEN - int. Tabelle für Tagessalden
Data type: JBITSALOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISB_NOT_USE_LINE_CALCULATE 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_bdslinie | TYPE JBDKOPO-BZIGRE, " | |||
| lv_dbperiode | TYPE SY-DATUM, " | |||
| lt_par_jbdkoko | TYPE STANDARD TABLE OF JBDKOKO, " | |||
| lv_dkalktag | TYPE SY-DATUM, " | |||
| lt_par_jbdkopo | TYPE STANDARD TABLE OF JBDKOPO, " | |||
| lt_salden_linie | TYPE STANDARD TABLE OF JBITSAL, " | |||
| lt_sav_lfdtage | TYPE STANDARD TABLE OF JBTLFDT, " | |||
| lt_sav_tagwerte | TYPE STANDARD TABLE OF JBITWRT, " | |||
| lt_tagessalden | TYPE STANDARD TABLE OF JBITSAL. " |
|   CALL FUNCTION 'ISB_NOT_USE_LINE_CALCULATE' "IS-B: Durchschnittlich nicht inanspruchgenommene Linie |
| EXPORTING | ||
| DBPERIODE | = lv_dbperiode | |
| DKALKTAG | = lv_dkalktag | |
| IMPORTING | ||
| BDSLINIE | = lv_bdslinie | |
| TABLES | ||
| PAR_JBDKOKO | = lt_par_jbdkoko | |
| PAR_JBDKOPO | = lt_par_jbdkopo | |
| SALDEN_LINIE | = lt_salden_linie | |
| SAV_LFDTAGE | = lt_sav_lfdtage | |
| SAV_TAGWERTE | = lt_sav_tagwerte | |
| TAGESSALDEN | = lt_tagessalden | |
| . " ISB_NOT_USE_LINE_CALCULATE | ||
ABAP code using 7.40 inline data declarations to call FM ISB_NOT_USE_LINE_CALCULATE
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 BZIGRE FROM JBDKOPO INTO @DATA(ld_bdslinie). | ||||
| "SELECT single DATUM FROM SY INTO @DATA(ld_dbperiode). | ||||
| "SELECT single DATUM FROM SY INTO @DATA(ld_dkalktag). | ||||
Search for further information about these or an SAP related objects