SAP ISB_PRICING_INTERFACE_ACT Function Module for Anschluß Konditionen für Bewertung im Ist









ISB_PRICING_INTERFACE_ACT is a standard isb pricing interface act SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Anschluß Konditionen für Bewertung im Ist 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 pricing interface act FM, simply by entering the name ISB_PRICING_INTERFACE_ACT into the relevant SAP transaction such as SE37 or SE38.

Function Group: JBTB
Program Name: SAPLJBTB
Main Program: SAPLJBTB
Appliation area: K
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function ISB_PRICING_INTERFACE_ACT 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_PRICING_INTERFACE_ACT'"Anschluß Konditionen für Bewertung im Ist
EXPORTING
* DIALOG = ' ' "Dialogfunktion an/aus
ERKRS = "Ergebnisrechnungskreis
* I_KALSM = ' ' "Kalkulationsschema (Falls initial-> Ermittlung)
* KURST = 'M' "
RKE_EINZELPOSTEN = "Einzelposten, der bewertet werden soll
SAV_JBDGSCH = "IS-B: Geschäftsstamm
* STORNO = ' ' "

IMPORTING
BEWERTETER_EP = "bewerteter Einzelposten
E_KZWI4 = "

TABLES
DBTAB = "
WERTKOMP = "

EXCEPTIONS
NO_BUDAT = 1 NO_CALC_FOUND = 2 NO_KALSM = 3 NO_ME = 4 NO_PLANT = 5 NO_VRGAR = 6
.



IMPORTING Parameters details for ISB_PRICING_INTERFACE_ACT

DIALOG - Dialogfunktion an/aus

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

ERKRS - Ergebnisrechnungskreis

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

I_KALSM - Kalkulationsschema (Falls initial-> Ermittlung)

Data type: T683-KALSM
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

KURST -

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

RKE_EINZELPOSTEN - Einzelposten, der bewertet werden soll

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

SAV_JBDGSCH - IS-B: Geschäftsstamm

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

STORNO -

Data type: S007-SHKZG
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for ISB_PRICING_INTERFACE_ACT

BEWERTETER_EP - bewerteter Einzelposten

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

E_KZWI4 -

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

TABLES Parameters details for ISB_PRICING_INTERFACE_ACT

DBTAB -

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

WERTKOMP -

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

EXCEPTIONS details

NO_BUDAT - Im Einzelposten ist das Buch.datum nicht gesetzt

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

NO_CALC_FOUND - Keine Kalkulation gefunden

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

NO_KALSM - In T258A ist kein Kalkulationsschema vorhanden

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

NO_ME - Keine Mengeneinheit eingegeben

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

NO_PLANT - Kein Werk eingegeben

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

NO_VRGAR - Im Einzelposten ist die Vorg.art nicht gesetzt

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

Copy and paste ABAP code example for ISB_PRICING_INTERFACE_ACT 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_dbtab  TYPE STANDARD TABLE OF STRING, "   
lv_dialog  TYPE STRING, "   SPACE
lv_no_budat  TYPE STRING, "   
lv_bewerteter_ep  TYPE STRING, "   
lv_erkrs  TYPE TERKR-ERKRS, "   
lv_e_kzwi4  TYPE KOMP-KZWI4, "   
lt_wertkomp  TYPE STANDARD TABLE OF RKEPR, "   
lv_no_calc_found  TYPE RKEPR, "   
lv_i_kalsm  TYPE T683-KALSM, "   SPACE
lv_no_kalsm  TYPE T683, "   
lv_kurst  TYPE TKEVS-KURST, "   'M'
lv_no_me  TYPE TKEVS, "   
lv_no_plant  TYPE TKEVS, "   
lv_rke_einzelposten  TYPE TKEVS, "   
lv_no_vrgar  TYPE TKEVS, "   
lv_sav_jbdgsch  TYPE JBIXGSC, "   
lv_storno  TYPE S007-SHKZG. "   SPACE

  CALL FUNCTION 'ISB_PRICING_INTERFACE_ACT'  "Anschluß Konditionen für Bewertung im Ist
    EXPORTING
         DIALOG = lv_dialog
         ERKRS = lv_erkrs
         I_KALSM = lv_i_kalsm
         KURST = lv_kurst
         RKE_EINZELPOSTEN = lv_rke_einzelposten
         SAV_JBDGSCH = lv_sav_jbdgsch
         STORNO = lv_storno
    IMPORTING
         BEWERTETER_EP = lv_bewerteter_ep
         E_KZWI4 = lv_e_kzwi4
    TABLES
         DBTAB = lt_dbtab
         WERTKOMP = lt_wertkomp
    EXCEPTIONS
        NO_BUDAT = 1
        NO_CALC_FOUND = 2
        NO_KALSM = 3
        NO_ME = 4
        NO_PLANT = 5
        NO_VRGAR = 6
. " ISB_PRICING_INTERFACE_ACT




ABAP code using 7.40 inline data declarations to call FM ISB_PRICING_INTERFACE_ACT

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_dialog) = ' '.
 
 
 
"SELECT single ERKRS FROM TERKR INTO @DATA(ld_erkrs).
 
"SELECT single KZWI4 FROM KOMP INTO @DATA(ld_e_kzwi4).
 
 
 
"SELECT single KALSM FROM T683 INTO @DATA(ld_i_kalsm).
DATA(ld_i_kalsm) = ' '.
 
 
"SELECT single KURST FROM TKEVS INTO @DATA(ld_kurst).
DATA(ld_kurst) = 'M'.
 
 
 
 
 
 
"SELECT single SHKZG FROM S007 INTO @DATA(ld_storno).
DATA(ld_storno) = ' '.
 


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!