SAP ISH_CASEIV_MODIFYMULTIPLE Function Module for









ISH_CASEIV_MODIFYMULTIPLE is a standard ish caseiv modifymultiple 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 caseiv modifymultiple FM, simply by entering the name ISH_CASEIV_MODIFYMULTIPLE into the relevant SAP transaction such as SE37 or SE38.

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



Function ISH_CASEIV_MODIFYMULTIPLE 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_CASEIV_MODIFYMULTIPLE'"
EXPORTING
SS_EINRI = "Institution
SS_FALNR = "Case Number
* SS_NFAL = "
* SS_AUTHCHECK = 'X' "Execute authorization check
* SS_ADJUST_NLKZ = 'X' "
* SS_TESTRUN = 'X' "Test Mode
* SS_RNAB2 = "

IMPORTING
SS_RETMAXTYPE = "IS-H: Most Severe Message Type Generated

TABLES
* SS_RNKSK = "
* SS_RNKSP = "IS-H: Table with Change Info for IV Item Data
* SS_VNKSK_CURR = "
* SS_VNKSP_CURR = "
* SS_TEXTINFO_CURR = "
* SS_TEXTCONTENT_CURR = "
* SS_VNLKZ_CURR = "
* SS_RETURN = "
.



IMPORTING Parameters details for ISH_CASEIV_MODIFYMULTIPLE

SS_EINRI - Institution

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

SS_FALNR - Case Number

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

SS_NFAL -

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

SS_AUTHCHECK - Execute authorization check

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

SS_ADJUST_NLKZ -

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

SS_TESTRUN - Test Mode

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

SS_RNAB2 -

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

EXPORTING Parameters details for ISH_CASEIV_MODIFYMULTIPLE

SS_RETMAXTYPE - IS-H: Most Severe Message Type Generated

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

TABLES Parameters details for ISH_CASEIV_MODIFYMULTIPLE

SS_RNKSK -

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

SS_RNKSP - IS-H: Table with Change Info for IV Item Data

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

SS_VNKSK_CURR -

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

SS_VNKSP_CURR -

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

SS_TEXTINFO_CURR -

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

SS_TEXTCONTENT_CURR -

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

SS_VNLKZ_CURR -

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

SS_RETURN -

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

Copy and paste ABAP code example for ISH_CASEIV_MODIFYMULTIPLE 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_ss_einri  TYPE EINRI, "   
lt_ss_rnksk  TYPE STANDARD TABLE OF ISH_T_RNKSKX, "   
lv_ss_retmaxtype  TYPE NPDOK-BAPIRETMAXTY, "   
lv_ss_falnr  TYPE FALNR, "   
lt_ss_rnksp  TYPE STANDARD TABLE OF ISH_T_RNKSPX, "   
lv_ss_nfal  TYPE NFAL, "   
lt_ss_vnksk_curr  TYPE STANDARD TABLE OF VNKSK, "   
lv_ss_authcheck  TYPE ISH_ON_OFF, "   'X'
lt_ss_vnksp_curr  TYPE STANDARD TABLE OF VNKSP, "   
lv_ss_adjust_nlkz  TYPE ISH_ON_OFF, "   'X'
lt_ss_textinfo_curr  TYPE STANDARD TABLE OF ISH_DOCCOLLINFO, "   
lv_ss_testrun  TYPE ISH_ON_OFF, "   'X'
lt_ss_textcontent_curr  TYPE STANDARD TABLE OF TLINE, "   
lv_ss_rnab2  TYPE RNAB2, "   
lt_ss_vnlkz_curr  TYPE STANDARD TABLE OF VNLKZ, "   
lt_ss_return  TYPE STANDARD TABLE OF BAPIRET2. "   

  CALL FUNCTION 'ISH_CASEIV_MODIFYMULTIPLE'  "
    EXPORTING
         SS_EINRI = lv_ss_einri
         SS_FALNR = lv_ss_falnr
         SS_NFAL = lv_ss_nfal
         SS_AUTHCHECK = lv_ss_authcheck
         SS_ADJUST_NLKZ = lv_ss_adjust_nlkz
         SS_TESTRUN = lv_ss_testrun
         SS_RNAB2 = lv_ss_rnab2
    IMPORTING
         SS_RETMAXTYPE = lv_ss_retmaxtype
    TABLES
         SS_RNKSK = lt_ss_rnksk
         SS_RNKSP = lt_ss_rnksp
         SS_VNKSK_CURR = lt_ss_vnksk_curr
         SS_VNKSP_CURR = lt_ss_vnksp_curr
         SS_TEXTINFO_CURR = lt_ss_textinfo_curr
         SS_TEXTCONTENT_CURR = lt_ss_textcontent_curr
         SS_VNLKZ_CURR = lt_ss_vnlkz_curr
         SS_RETURN = lt_ss_return
. " ISH_CASEIV_MODIFYMULTIPLE




ABAP code using 7.40 inline data declarations to call FM ISH_CASEIV_MODIFYMULTIPLE

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 BAPIRETMAXTY FROM NPDOK INTO @DATA(ld_ss_retmaxtype).
 
 
 
 
 
DATA(ld_ss_authcheck) = 'X'.
 
 
DATA(ld_ss_adjust_nlkz) = 'X'.
 
 
DATA(ld_ss_testrun) = 'X'.
 
 
 
 
 


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!