SAP FM_MODIFY_ECSALES Function Module for Modify RFASLD20 For Slovakia EC Sales List
FM_MODIFY_ECSALES is a standard fm modify ecsales SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Modify RFASLD20 For Slovakia EC Sales List 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 fm modify ecsales FM, simply by entering the name FM_MODIFY_ECSALES into the relevant SAP transaction such as SE37 or SE38.
Function Group: SK_VAT2010
Program Name: SAPLSK_VAT2010
Main Program: SAPLSK_VAT2010
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FM_MODIFY_ECSALES 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 'FM_MODIFY_ECSALES'"Modify RFASLD20 For Slovakia EC Sales List.
EXPORTING
DMEE_TREE_ID = "DMEE: unique description for a DMEE format tree
TABLES
T_EPOST = "Structure for Data Transfer to DMEE (EC Sales List)
IMPORTING Parameters details for FM_MODIFY_ECSALES
DMEE_TREE_ID - DMEE: unique description for a DMEE format tree
Data type: DMEE_TREEIDOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for FM_MODIFY_ECSALES
T_EPOST - Structure for Data Transfer to DMEE (EC Sales List)
Data type: ASL_ITEMOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for FM_MODIFY_ECSALES 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_t_epost | TYPE STANDARD TABLE OF ASL_ITEM, " | |||
| lv_dmee_tree_id | TYPE DMEE_TREEID. " |
|   CALL FUNCTION 'FM_MODIFY_ECSALES' "Modify RFASLD20 For Slovakia EC Sales List |
| EXPORTING | ||
| DMEE_TREE_ID | = lv_dmee_tree_id | |
| TABLES | ||
| T_EPOST | = lt_t_epost | |
| . " FM_MODIFY_ECSALES | ||
ABAP code using 7.40 inline data declarations to call FM FM_MODIFY_ECSALES
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