SAP ISH_APPENDIX_SAVE Function Module for









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

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



Function ISH_APPENDIX_SAVE 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_APPENDIX_SAVE'"
EXPORTING
* I_DB_NAPX = "
* I_DB_NAPX_FAL_TAB = "
* I_DB_NAPX_BEW_TAB = "
* I_DB_NAPX_DIA_TAB = "
* I_DB_NAPX_ICP_TAB = "
* I_DB_NAPX_DRG_TAB = "
* I_DB_NAPX_COMPLETE = ' ' "

IMPORTING
E_RETURN_TAB = "
E_RETMAXTYPE = "

CHANGING
C_VNAPX = "
C_VNAPX_FAL_TAB = "
C_VNAPX_BEW_TAB = "
C_VNAPX_DIA_TAB = "
C_VNAPX_ICP_TAB = "
C_VNAPX_DRG_TAB = "
.



IMPORTING Parameters details for ISH_APPENDIX_SAVE

I_DB_NAPX -

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

I_DB_NAPX_FAL_TAB -

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

I_DB_NAPX_BEW_TAB -

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

I_DB_NAPX_DIA_TAB -

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

I_DB_NAPX_ICP_TAB -

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

I_DB_NAPX_DRG_TAB -

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

I_DB_NAPX_COMPLETE -

Data type: ISH_ON_OFF
Default: ' '
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for ISH_APPENDIX_SAVE

E_RETURN_TAB -

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

E_RETMAXTYPE -

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

CHANGING Parameters details for ISH_APPENDIX_SAVE

C_VNAPX -

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

C_VNAPX_FAL_TAB -

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

C_VNAPX_BEW_TAB -

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

C_VNAPX_DIA_TAB -

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

C_VNAPX_ICP_TAB -

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

C_VNAPX_DRG_TAB -

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

Copy and paste ABAP code example for ISH_APPENDIX_SAVE 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_c_vnapx  TYPE VNAPX, "   
lv_i_db_napx  TYPE NAPX, "   
lv_e_return_tab  TYPE ISH_BAPIRET2_TAB_TYPE, "   
lv_e_retmaxtype  TYPE ISH_BAPIRETMAXTY, "   
lv_c_vnapx_fal_tab  TYPE VNAPX_FAL_TT, "   
lv_i_db_napx_fal_tab  TYPE ISH_T_NAPX_FAL, "   
lv_c_vnapx_bew_tab  TYPE VNAPX_BEW_TT, "   
lv_i_db_napx_bew_tab  TYPE ISH_T_NAPX_BEW, "   
lv_c_vnapx_dia_tab  TYPE VNAPX_DIA_TT, "   
lv_i_db_napx_dia_tab  TYPE ISH_T_NAPX_DIA, "   
lv_c_vnapx_icp_tab  TYPE VNAPX_ICP_TT, "   
lv_i_db_napx_icp_tab  TYPE ISH_T_NAPX_ICP, "   
lv_c_vnapx_drg_tab  TYPE VNAPX_DRG_TT, "   
lv_i_db_napx_drg_tab  TYPE ISH_T_NAPX_DRG, "   
lv_i_db_napx_complete  TYPE ISH_ON_OFF. "   ' '

  CALL FUNCTION 'ISH_APPENDIX_SAVE'  "
    EXPORTING
         I_DB_NAPX = lv_i_db_napx
         I_DB_NAPX_FAL_TAB = lv_i_db_napx_fal_tab
         I_DB_NAPX_BEW_TAB = lv_i_db_napx_bew_tab
         I_DB_NAPX_DIA_TAB = lv_i_db_napx_dia_tab
         I_DB_NAPX_ICP_TAB = lv_i_db_napx_icp_tab
         I_DB_NAPX_DRG_TAB = lv_i_db_napx_drg_tab
         I_DB_NAPX_COMPLETE = lv_i_db_napx_complete
    IMPORTING
         E_RETURN_TAB = lv_e_return_tab
         E_RETMAXTYPE = lv_e_retmaxtype
    CHANGING
         C_VNAPX = lv_c_vnapx
         C_VNAPX_FAL_TAB = lv_c_vnapx_fal_tab
         C_VNAPX_BEW_TAB = lv_c_vnapx_bew_tab
         C_VNAPX_DIA_TAB = lv_c_vnapx_dia_tab
         C_VNAPX_ICP_TAB = lv_c_vnapx_icp_tab
         C_VNAPX_DRG_TAB = lv_c_vnapx_drg_tab
. " ISH_APPENDIX_SAVE




ABAP code using 7.40 inline data declarations to call FM ISH_APPENDIX_SAVE

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_db_napx_complete) = ' '.
 


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!