SAP EXIT_SAPLEDI6_002 Function Module for CA-EDI, Partner IDoc: Exit After Segment E1ADRM0









EXIT_SAPLEDI6_002 is a standard exit sapledi6 002 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for CA-EDI, Partner IDoc: Exit After Segment E1ADRM0 processing and below is the pattern details for this FM, 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 exit sapledi6 002 FM, simply by entering the name EXIT_SAPLEDI6_002 into the relevant SAP transaction such as SE37 or SE38.

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



Function EXIT_SAPLEDI6_002 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 'EXIT_SAPLEDI6_002'"CA-EDI, Partner IDoc: Exit After Segment E1ADRM0
CHANGING
PC_EDIDC = "

TABLES
PT_EDIDD = "
.



Related Function Modules

Below is a list of related SAP function modules this CUSTOMER FUNCTION exit / user exit is relevant for.
EDI_AGREE_IN_MESSTYPE_DELETE Deletion of inbound profiles from EDP21
EDI_AGREE_IN_MESSTYPE_INSERT Insert new entry (EDI/ALE) in EDP21
EDI_AGREE_IN_MESSTYPE_READ Read inbound data (EDI/ALE) from EDP21
EDI_AGREE_IN_MESSTYPE_TEST Insert new entry (EDI/ALE) in EDP21
EDI_AGREE_IN_MESSTYPE_UPDATE Change inbound profile in EDP21
EDI_AGREE_IN_OPTION_GET
EDI_AGREE_IN_OPTION_SAVE
EDI_AGREE_OUT_IDOC_DELETE Delete outbound profiles from EDP12
EDI_AGREE_OUT_IDOC_INSERT Insert new entry (process code) in EDP12
EDI_AGREE_OUT_IDOC_READ Read outbound data (process code) from EDP12
EDI_AGREE_OUT_IDOC_TEST Insert new entry (process code) in EDP12
EDI_AGREE_OUT_IDOC_UPDATE Change outbound profile in EDP12
EDI_AGREE_OUT_MESSTYPE_DELETE Delete outbound profiles from EDP13
EDI_AGREE_OUT_MESSTYPE_INSERT Insert new entry (EDI/ALE) in EDP13
EDI_AGREE_OUT_MESSTYPE_READ Read outbound data (EDI/ALE) from EDP13
EDI_AGREE_OUT_MESSTYPE_TEST Insert new entry (EDI/ALE) in EDP13
EDI_AGREE_OUT_MESSTYPE_UPDATE Change outbound profile in EDP13
EDI_AGREE_OUT_OPTION_GET
EDI_AGREE_OUT_OPTION_SAVE
EDI_AGREE_PARTNER_DELETE Delete partner data from header table
EDI_AGREE_PARTNER_INSERT Insert new partner in header table
EDI_AGREE_PARTNER_READ Read partner data from EDPP1
EDI_AGREE_PARTNER_TEST Insert new partner in header table
EDI_AGREE_PARTNER_UPDATE Change partner in EDPP1
EDI_CHECK_EDP12_KAPPL Check application in EDP12
EDI_CHECK_EDP12_KSCHL
EDI_CHECK_EDP12_RCVPFC Check partner function in EDP12
EDI_CHECK_EDP13_IDOCTYP
EDI_GET_SERVERGROUP_RESOURCES
EDI_PARTNER_APPL_READ_OUT EDI PP: Read partner profile for one partner (outbound parameters)
EDI_PARTNER_AS_TREE
EDI_PARTNER_COPY_COMPLETE EDI PP: Copy complete partner profile
EDI_PARTNER_DELETE_COMPLETE Delete all table entries for partner profile
EDI_PARTNER_GET_DESCRIPTION
EDI_PARTNER_READ_COMPLETE EDI PP: Read all table entries for one partner
EDI_PARTNER_READ_INCOMING EDI PP: Read partner profile for inbound processing (EDK21 -> EDP21)
EDI_PARTNER_READ_OUTGOING EDI PP: Read partner profile for outb. processing (EDK12 -> EDP12,EDP13)
EDI_PARTNER_READ_USER_INCOMING EDI PP: Read all parties to be notified from EDP21 or EDPP1
EDI_PARTNER_READ_USER_OUTGOING EDI PP: Read party to be notified from EDP13 or EDPP1
EDI_PARTNER_SEND_IDOC
EDI_PARTNER_TEST_INCOMING CA-EDI: Partner available for inbound processing?
EDI_PARTNER_TEST_OUTGOING CA-EDI: EDI partner profile available (outb.procg, MC)?
F4HLP_EDIVIEW

CHANGING Parameters details for EXIT_SAPLEDI6_002

PC_EDIDC -

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

TABLES Parameters details for EXIT_SAPLEDI6_002

PT_EDIDD -

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

Copy and paste ABAP code example for EXIT_SAPLEDI6_002 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_pc_edidc  TYPE EDIDC, "   
lt_pt_edidd  TYPE STANDARD TABLE OF EDIDD. "   

  CALL FUNCTION 'EXIT_SAPLEDI6_002'  "CA-EDI, Partner IDoc: Exit After Segment E1ADRM0
    CHANGING
         PC_EDIDC = lv_pc_edidc
    TABLES
         PT_EDIDD = lt_pt_edidd
. " EXIT_SAPLEDI6_002




ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLEDI6_002

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.

 
 


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!