ECRM_IDE_CONTROL is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name ECRM_IDE_CONTROL into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
ECRM_CONTR
Released Date:
Not Released
Processing type: Remote-Enabled
CALL FUNCTION 'ECRM_IDE_CONTROL' "Start IDE Workflow
EXPORTING
x_partner_guid = " bu_partner_guid Business Partner GUID
x_pod_guid = " guid_16 GUID in 'RAW' Format
x_contractpos = " guid_16 GUID in 'RAW' Format
* x_container = " ecrmcont_t CRM_IN Container
* x_moveindate = " eidemoveindate Move-in Date for Switch
* x_moveoutdate = " eidemoveoutdate Move-Out Date for Switch
IMPORTING
y_msgdatanum = " eideswtmdnum Message Data for Switch Document
y_logsys = " logsys Logical System
* TABLES
* ty_errmsg = " bapiret2 Generic Structure for Error Message
* ty_method_container = " ecrmcont
EXCEPTIONS
CANCELLED = 1 "
FAILED = 2 "
. " ECRM_IDE_CONTROL
The ABAP code below is a full code listing to execute function module ECRM_IDE_CONTROL including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| ld_y_msgdatanum | TYPE EIDESWTMDNUM , |
| ld_y_logsys | TYPE LOGSYS , |
| it_ty_errmsg | TYPE STANDARD TABLE OF BAPIRET2,"TABLES PARAM |
| wa_ty_errmsg | LIKE LINE OF it_ty_errmsg , |
| it_ty_method_container | TYPE STANDARD TABLE OF ECRMCONT,"TABLES PARAM |
| wa_ty_method_container | LIKE LINE OF it_ty_method_container . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_y_msgdatanum | TYPE EIDESWTMDNUM , |
| ld_x_partner_guid | TYPE BU_PARTNER_GUID , |
| it_ty_errmsg | TYPE STANDARD TABLE OF BAPIRET2 , |
| wa_ty_errmsg | LIKE LINE OF it_ty_errmsg, |
| ld_y_logsys | TYPE LOGSYS , |
| ld_x_pod_guid | TYPE GUID_16 , |
| it_ty_method_container | TYPE STANDARD TABLE OF ECRMCONT , |
| wa_ty_method_container | LIKE LINE OF it_ty_method_container, |
| ld_x_contractpos | TYPE GUID_16 , |
| ld_x_container | TYPE ECRMCONT_T , |
| ld_x_moveindate | TYPE EIDEMOVEINDATE , |
| ld_x_moveoutdate | TYPE EIDEMOVEOUTDATE . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name ECRM_IDE_CONTROL or its description.
ECRM_IDE_CONTROL - Start IDE Workflow ECRM_GET_IBASE_UPLOAD_ACTIVE - ECRM_F4_GRID_LEVEL_TYPE - Determined Grid Level Category ECRM_F4_GRID_LEVEL_ALL - Determination of All Grid Level Details for a Division ECRM_F4_GRID_LEVEL - Determined Grid Level ECRM_F4_GRID_FOR_ADDRESS - Remote Input Help for Grid - General