SAP ISH_VERBUCHER_NKTR Function Module for IS-H: Update module for insurance providers; tables NKTR, NGPA









ISH_VERBUCHER_NKTR is a standard ish verbucher nktr 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-H: Update module for insurance providers; tables NKTR, NGPA 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 ish verbucher nktr FM, simply by entering the name ISH_VERBUCHER_NKTR into the relevant SAP transaction such as SE37 or SE38.

Function Group: NVG0
Program Name: SAPLNVG0
Main Program: SAPLNVG0
Appliation area: N
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update: 1



Function ISH_VERBUCHER_NKTR 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 'ISH_VERBUCHER_NKTR'"IS-H: Update module for insurance providers; tables NKTR, NGPA
EXPORTING
DATUM = "Current change date at SAVE
VCODE_NGPA = "Processing mode for table NGPA
VCODE_NKTR = "Processing mode for table NKTR
O_TNGPA = "Table: general bus. partner old data
O_TNKTR = "Table: insurance provider old data
TCODE = "Current transaction
TNGPA = "Table: general business partner modified data
TNKTR = "Table: insurance provider
UNAME = "Current user name at SAVE
UPD_ICDTXT = "Indicates ICDTXT modified / not modified
UZEIT = "Current time at SAVE

TABLES
ICDTXT = "
.



IMPORTING Parameters details for ISH_VERBUCHER_NKTR

DATUM - Current change date at SAVE

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

VCODE_NGPA - Processing mode for table NGPA

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

VCODE_NKTR - Processing mode for table NKTR

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

O_TNGPA - Table: general bus. partner old data

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

O_TNKTR - Table: insurance provider old data

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

TCODE - Current transaction

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

TNGPA - Table: general business partner modified data

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

TNKTR - Table: insurance provider

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

UNAME - Current user name at SAVE

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

UPD_ICDTXT - Indicates ICDTXT modified / not modified

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

UZEIT - Current time at SAVE

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

TABLES Parameters details for ISH_VERBUCHER_NKTR

ICDTXT -

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

Copy and paste ABAP code example for ISH_VERBUCHER_NKTR 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_datum  TYPE SY-DATUM, "   
lt_icdtxt  TYPE STANDARD TABLE OF CDTXT, "   
lv_vcode_ngpa  TYPE RNG10-VCODE, "   
lv_vcode_nktr  TYPE RNG10-VCODE, "   
lv_o_tngpa  TYPE NGPA, "   
lv_o_tnktr  TYPE NKTR, "   
lv_tcode  TYPE SY-TCODE, "   
lv_tngpa  TYPE NGPA, "   
lv_tnktr  TYPE NKTR, "   
lv_uname  TYPE SY-UNAME, "   
lv_upd_icdtxt  TYPE CDPOS-CHNGIND, "   
lv_uzeit  TYPE SY-UZEIT. "   

  CALL FUNCTION 'ISH_VERBUCHER_NKTR'  "IS-H: Update module for insurance providers; tables NKTR, NGPA
    EXPORTING
         DATUM = lv_datum
         VCODE_NGPA = lv_vcode_ngpa
         VCODE_NKTR = lv_vcode_nktr
         O_TNGPA = lv_o_tngpa
         O_TNKTR = lv_o_tnktr
         TCODE = lv_tcode
         TNGPA = lv_tngpa
         TNKTR = lv_tnktr
         UNAME = lv_uname
         UPD_ICDTXT = lv_upd_icdtxt
         UZEIT = lv_uzeit
    TABLES
         ICDTXT = lt_icdtxt
. " ISH_VERBUCHER_NKTR




ABAP code using 7.40 inline data declarations to call FM ISH_VERBUCHER_NKTR

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 DATUM FROM SY INTO @DATA(ld_datum).
 
 
"SELECT single VCODE FROM RNG10 INTO @DATA(ld_vcode_ngpa).
 
"SELECT single VCODE FROM RNG10 INTO @DATA(ld_vcode_nktr).
 
 
 
"SELECT single TCODE FROM SY INTO @DATA(ld_tcode).
 
 
 
"SELECT single UNAME FROM SY INTO @DATA(ld_uname).
 
"SELECT single CHNGIND FROM CDPOS INTO @DATA(ld_upd_icdtxt).
 
"SELECT single UZEIT FROM SY INTO @DATA(ld_uzeit).
 


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!