SAP ISH_CH_API_SAVE_UI Function Module for









ISH_CH_API_SAVE_UI is a standard ish ch api save ui 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 ch api save ui FM, simply by entering the name ISH_CH_API_SAVE_UI into the relevant SAP transaction such as SE37 or SE38.

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



Function ISH_CH_API_SAVE_UI 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_CH_API_SAVE_UI'"
EXPORTING
I_CLIENT = "
I_INSTITUTION = "
* I_TESTRUN = 'X' "
I_ASSTYPEMSS = "

IMPORTING
E_RETMAXTY = "

CHANGING
CS_NWCHLS_NFAL = "

TABLES
* T_NWCHLS_RNDIAFLAG = "
T_NWCHLS_RNLSR = "
* T_NWCHLS_RNLRG = "
* T_NWCHLS_RNLRZ = "
* T_NWCHLS_RNLRZM = "
* T_NWCHLS_RNLRZE = "
T_NWCHLS_RETURN = "
.



IMPORTING Parameters details for ISH_CH_API_SAVE_UI

I_CLIENT -

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

I_INSTITUTION -

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

I_TESTRUN -

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

I_ASSTYPEMSS -

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

EXPORTING Parameters details for ISH_CH_API_SAVE_UI

E_RETMAXTY -

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

CHANGING Parameters details for ISH_CH_API_SAVE_UI

CS_NWCHLS_NFAL -

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

TABLES Parameters details for ISH_CH_API_SAVE_UI

T_NWCHLS_RNDIAFLAG -

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

T_NWCHLS_RNLSR -

Data type: NWCHLS_RNLSR
Optional: No
Call by Reference: Yes

T_NWCHLS_RNLRG -

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

T_NWCHLS_RNLRZ -

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

T_NWCHLS_RNLRZM -

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

T_NWCHLS_RNLRZE -

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

T_NWCHLS_RETURN -

Data type: NWCHLS_RETURN
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for ISH_CH_API_SAVE_UI 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_i_client  TYPE MANDT, "   
lv_e_retmaxty  TYPE ISH_BAPIRETMAXTY, "   
lv_cs_nwchls_nfal  TYPE NWCHLS_NFAL, "   
lt_t_nwchls_rndiaflag  TYPE STANDARD TABLE OF NWCHLS_RNDIAFLAG, "   
lv_i_institution  TYPE EINRI, "   
lt_t_nwchls_rnlsr  TYPE STANDARD TABLE OF NWCHLS_RNLSR, "   
lv_i_testrun  TYPE NTESTRUN, "   'X'
lt_t_nwchls_rnlrg  TYPE STANDARD TABLE OF NWCHLS_RNLRG, "   
lv_i_asstypemss  TYPE ISH_ZUOTYP, "   
lt_t_nwchls_rnlrz  TYPE STANDARD TABLE OF NWCHLS_RNLRZ, "   
lt_t_nwchls_rnlrzm  TYPE STANDARD TABLE OF NWCHLS_RNLRZM, "   
lt_t_nwchls_rnlrze  TYPE STANDARD TABLE OF NWCHLS_RNLRZE, "   
lt_t_nwchls_return  TYPE STANDARD TABLE OF NWCHLS_RETURN. "   

  CALL FUNCTION 'ISH_CH_API_SAVE_UI'  "
    EXPORTING
         I_CLIENT = lv_i_client
         I_INSTITUTION = lv_i_institution
         I_TESTRUN = lv_i_testrun
         I_ASSTYPEMSS = lv_i_asstypemss
    IMPORTING
         E_RETMAXTY = lv_e_retmaxty
    CHANGING
         CS_NWCHLS_NFAL = lv_cs_nwchls_nfal
    TABLES
         T_NWCHLS_RNDIAFLAG = lt_t_nwchls_rndiaflag
         T_NWCHLS_RNLSR = lt_t_nwchls_rnlsr
         T_NWCHLS_RNLRG = lt_t_nwchls_rnlrg
         T_NWCHLS_RNLRZ = lt_t_nwchls_rnlrz
         T_NWCHLS_RNLRZM = lt_t_nwchls_rnlrzm
         T_NWCHLS_RNLRZE = lt_t_nwchls_rnlrze
         T_NWCHLS_RETURN = lt_t_nwchls_return
. " ISH_CH_API_SAVE_UI




ABAP code using 7.40 inline data declarations to call FM ISH_CH_API_SAVE_UI

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_i_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!