SAP ISH_APPENDIX_GETLIST Function Module for









ISH_APPENDIX_GETLIST is a standard ish appendix getlist 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 getlist FM, simply by entering the name ISH_APPENDIX_GETLIST 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: N
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function ISH_APPENDIX_GETLIST 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_GETLIST'"
EXPORTING
I_APXNR = "
* I_FILTER_LEAD = "
* I_FILTER_OUTOD = "
* I_FILTER_EINRI = "
* I_FILTER_FALNR = "
* I_FILTER_REASON = "
* I_STORN_INCLUDED = ' ' "

IMPORTING
E_NAPX = "
E_NAPX_FAL_TAB = "
E_NAPX_BEW_TAB = "
E_NAPX_DIA_TAB = "
E_NAPX_ICP_TAB = "
E_NAPX_DRG_TAB = "
E_RETURN_TAB = "
E_RETMAXTYPE = "
.



IMPORTING Parameters details for ISH_APPENDIX_GETLIST

I_APXNR -

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

I_FILTER_LEAD -

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

I_FILTER_OUTOD -

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

I_FILTER_EINRI -

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

I_FILTER_FALNR -

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

I_FILTER_REASON -

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

I_STORN_INCLUDED -

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

EXPORTING Parameters details for ISH_APPENDIX_GETLIST

E_NAPX -

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

E_NAPX_FAL_TAB -

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

E_NAPX_BEW_TAB -

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

E_NAPX_DIA_TAB -

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

E_NAPX_ICP_TAB -

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

E_NAPX_DRG_TAB -

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

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

Copy and paste ABAP code example for ISH_APPENDIX_GETLIST 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_e_napx  TYPE NAPX, "   
lv_i_apxnr  TYPE APXNR, "   
lv_i_filter_lead  TYPE ISH_YT_XFELD, "   
lv_e_napx_fal_tab  TYPE ISH_T_NAPX_FAL, "   
lv_e_napx_bew_tab  TYPE ISH_T_NAPX_BEW, "   
lv_i_filter_outod  TYPE ISH_YT_XFELD, "   
lv_e_napx_dia_tab  TYPE ISH_T_NAPX_DIA, "   
lv_i_filter_einri  TYPE RNRANGEEINRI_TT, "   
lv_e_napx_icp_tab  TYPE ISH_T_NAPX_ICP, "   
lv_i_filter_falnr  TYPE RNRANGEFALNR_TT, "   
lv_e_napx_drg_tab  TYPE ISH_T_NAPX_DRG, "   
lv_i_filter_reason  TYPE RNRANGERETURNREASON_TT, "   
lv_e_return_tab  TYPE ISH_BAPIRET2_TAB_TYPE, "   
lv_i_storn_included  TYPE ISH_ON_OFF, "   ' '
lv_e_retmaxtype  TYPE ISH_BAPIRETMAXTY. "   

  CALL FUNCTION 'ISH_APPENDIX_GETLIST'  "
    EXPORTING
         I_APXNR = lv_i_apxnr
         I_FILTER_LEAD = lv_i_filter_lead
         I_FILTER_OUTOD = lv_i_filter_outod
         I_FILTER_EINRI = lv_i_filter_einri
         I_FILTER_FALNR = lv_i_filter_falnr
         I_FILTER_REASON = lv_i_filter_reason
         I_STORN_INCLUDED = lv_i_storn_included
    IMPORTING
         E_NAPX = lv_e_napx
         E_NAPX_FAL_TAB = lv_e_napx_fal_tab
         E_NAPX_BEW_TAB = lv_e_napx_bew_tab
         E_NAPX_DIA_TAB = lv_e_napx_dia_tab
         E_NAPX_ICP_TAB = lv_e_napx_icp_tab
         E_NAPX_DRG_TAB = lv_e_napx_drg_tab
         E_RETURN_TAB = lv_e_return_tab
         E_RETMAXTYPE = lv_e_retmaxtype
. " ISH_APPENDIX_GETLIST




ABAP code using 7.40 inline data declarations to call FM ISH_APPENDIX_GETLIST

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


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!