SAP ISH_PROCESS_PAYMENT_GUARANTEE Function Module for









ISH_PROCESS_PAYMENT_GUARANTEE is a standard ish process payment guarantee SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 process payment guarantee FM, simply by entering the name ISH_PROCESS_PAYMENT_GUARANTEE into the relevant SAP transaction such as SE37 or SE38.

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



Function ISH_PROCESS_PAYMENT_GUARANTEE 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_PROCESS_PAYMENT_GUARANTEE'"
EXPORTING
* DYNPRO_VARIANTE = 'S' "F=coll.enty per case; K=single entry per cert.no.
* EXTP_NAM = SY-CPROG "Name of Calling Program/Module Pool
I_RNEXL = "Transfer parameter structure for function module
I_TCODE = "
I_VCODE = "

IMPORTING
RETURN_ALL_SAVED = "TRUE=no data to save/FALSE=modify data
RETURN_OKCODE = "User Input in Function Module

TABLES
* E_NKSK_ALT = "
* E_NKSK_NEU = "
* E_NKSP_ALT = "
* E_NKSP_NEU = "

EXCEPTIONS
COT_FOUND = 1 NO_NVVF = 2 WRONG_IMPORT = 3 WRONG_COUNTRY_VERSION = 4
.




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_SAPLNKOS_001 IS-H: Function Exit for Determining Agent Processing Ins. Verification

IMPORTING Parameters details for ISH_PROCESS_PAYMENT_GUARANTEE

DYNPRO_VARIANTE - F=coll.enty per case; K=single entry per cert.no.

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

EXTP_NAM - Name of Calling Program/Module Pool

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

I_RNEXL - Transfer parameter structure for function module

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

I_TCODE -

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

I_VCODE -

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

EXPORTING Parameters details for ISH_PROCESS_PAYMENT_GUARANTEE

RETURN_ALL_SAVED - TRUE=no data to save/FALSE=modify data

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

RETURN_OKCODE - User Input in Function Module

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

TABLES Parameters details for ISH_PROCESS_PAYMENT_GUARANTEE

E_NKSK_ALT -

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

E_NKSK_NEU -

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

E_NKSP_ALT -

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

E_NKSP_NEU -

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

EXCEPTIONS details

COT_FOUND - Certificate asgmt (NLKZ) found -->F2

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

NO_NVVF - No case-rel. insurance relationship found

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

WRONG_IMPORT - Invalid Call

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

WRONG_COUNTRY_VERSION -

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

Copy and paste ABAP code example for ISH_PROCESS_PAYMENT_GUARANTEE 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_cot_found  TYPE STRING, "   
lt_e_nksk_alt  TYPE STANDARD TABLE OF RNKSK, "   
lv_dynpro_variante  TYPE RNKSK, "   'S'
lv_return_all_saved  TYPE RNKSK, "   
lv_no_nvvf  TYPE RNKSK, "   
lv_extp_nam  TYPE SY-CPROG, "   SY-CPROG
lt_e_nksk_neu  TYPE STANDARD TABLE OF RNKSK, "   
lv_return_okcode  TYPE SY-TCODE, "   
lv_i_rnexl  TYPE RNEXL, "   
lt_e_nksp_alt  TYPE STANDARD TABLE OF RNKSP, "   
lv_wrong_import  TYPE RNKSP, "   
lv_i_tcode  TYPE SY-TCODE, "   
lt_e_nksp_neu  TYPE STANDARD TABLE OF RNKSP, "   
lv_wrong_country_version  TYPE RNKSP, "   
lv_i_vcode  TYPE RNPK1-VCODE. "   

  CALL FUNCTION 'ISH_PROCESS_PAYMENT_GUARANTEE'  "
    EXPORTING
         DYNPRO_VARIANTE = lv_dynpro_variante
         EXTP_NAM = lv_extp_nam
         I_RNEXL = lv_i_rnexl
         I_TCODE = lv_i_tcode
         I_VCODE = lv_i_vcode
    IMPORTING
         RETURN_ALL_SAVED = lv_return_all_saved
         RETURN_OKCODE = lv_return_okcode
    TABLES
         E_NKSK_ALT = lt_e_nksk_alt
         E_NKSK_NEU = lt_e_nksk_neu
         E_NKSP_ALT = lt_e_nksp_alt
         E_NKSP_NEU = lt_e_nksp_neu
    EXCEPTIONS
        COT_FOUND = 1
        NO_NVVF = 2
        WRONG_IMPORT = 3
        WRONG_COUNTRY_VERSION = 4
. " ISH_PROCESS_PAYMENT_GUARANTEE




ABAP code using 7.40 inline data declarations to call FM ISH_PROCESS_PAYMENT_GUARANTEE

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_dynpro_variante) = 'S'.
 
 
 
"SELECT single CPROG FROM SY INTO @DATA(ld_extp_nam).
DATA(ld_extp_nam) = SY-CPROG.
 
 
"SELECT single TCODE FROM SY INTO @DATA(ld_return_okcode).
 
 
 
 
"SELECT single TCODE FROM SY INTO @DATA(ld_i_tcode).
 
 
 
"SELECT single VCODE FROM RNPK1 INTO @DATA(ld_i_vcode).
 


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!