SAP ISH_AT_ELDAL_RECEIVE_DISPATCH Function Module for









ISH_AT_ELDAL_RECEIVE_DISPATCH is a standard ish at eldal receive dispatch 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 at eldal receive dispatch FM, simply by entering the name ISH_AT_ELDAL_RECEIVE_DISPATCH into the relevant SAP transaction such as SE37 or SE38.

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



Function ISH_AT_ELDAL_RECEIVE_DISPATCH 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_AT_ELDAL_RECEIVE_DISPATCH'"
EXPORTING
CREATION_DATE = "
CREATION_TIME = "
* RECOVERY_FLAG = ' ' "
* EINRI = "

TABLES
IRNC301ERR = "
INC301S = "
IRNC4K = "
.




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_SAPLN1C3_001

IMPORTING Parameters details for ISH_AT_ELDAL_RECEIVE_DISPATCH

CREATION_DATE -

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

CREATION_TIME -

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

RECOVERY_FLAG -

Data type: RNCOM-XFELD
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

EINRI -

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

TABLES Parameters details for ISH_AT_ELDAL_RECEIVE_DISPATCH

IRNC301ERR -

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

INC301S -

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

IRNC4K -

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

Copy and paste ABAP code example for ISH_AT_ELDAL_RECEIVE_DISPATCH 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:
lt_irnc301err  TYPE STANDARD TABLE OF RNC301ERR, "   
lv_creation_date  TYPE NC301D-CREBEGDT, "   
lt_inc301s  TYPE STANDARD TABLE OF NC301S, "   
lv_creation_time  TYPE NC301D-CREBEGZT, "   
lt_irnc4k  TYPE STANDARD TABLE OF RNC4K, "   
lv_recovery_flag  TYPE RNCOM-XFELD, "   SPACE
lv_einri  TYPE NFAL-EINRI. "   

  CALL FUNCTION 'ISH_AT_ELDAL_RECEIVE_DISPATCH'  "
    EXPORTING
         CREATION_DATE = lv_creation_date
         CREATION_TIME = lv_creation_time
         RECOVERY_FLAG = lv_recovery_flag
         EINRI = lv_einri
    TABLES
         IRNC301ERR = lt_irnc301err
         INC301S = lt_inc301s
         IRNC4K = lt_irnc4k
. " ISH_AT_ELDAL_RECEIVE_DISPATCH




ABAP code using 7.40 inline data declarations to call FM ISH_AT_ELDAL_RECEIVE_DISPATCH

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 CREBEGDT FROM NC301D INTO @DATA(ld_creation_date).
 
 
"SELECT single CREBEGZT FROM NC301D INTO @DATA(ld_creation_time).
 
 
"SELECT single XFELD FROM RNCOM INTO @DATA(ld_recovery_flag).
DATA(ld_recovery_flag) = ' '.
 
"SELECT single EINRI FROM NFAL INTO @DATA(ld_einri).
 


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!