SAP Function Modules

ECRM_IDE_CONTROL SAP Function module - Start IDE Workflow







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
remote enabled module settings


Pattern for FM ECRM_IDE_CONTROL - ECRM IDE CONTROL





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

ABAP code example for Function Module 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).

DATA:
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 .

DATA(ld_x_partner_guid) = 'Check type of data required'.
DATA(ld_x_pod_guid) = 'Check type of data required'.
DATA(ld_x_contractpos) = 'Check type of data required'.
DATA(ld_x_container) = 'Check type of data required'.
DATA(ld_x_moveindate) = 'Check type of data required'.
DATA(ld_x_moveoutdate) = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_ty_errmsg to it_ty_errmsg.

"populate fields of struture and append to itab
append wa_ty_method_container to it_ty_method_container. . CALL FUNCTION 'ECRM_IDE_CONTROL' EXPORTING x_partner_guid = ld_x_partner_guid x_pod_guid = ld_x_pod_guid x_contractpos = ld_x_contractpos * x_container = ld_x_container * x_moveindate = ld_x_moveindate * x_moveoutdate = ld_x_moveoutdate IMPORTING y_msgdatanum = ld_y_msgdatanum y_logsys = ld_y_logsys * TABLES * ty_errmsg = it_ty_errmsg * ty_method_container = it_ty_method_container EXCEPTIONS CANCELLED = 1 FAILED = 2 . " ECRM_IDE_CONTROL
IF SY-SUBRC EQ 0. "All OK ELSEIF SY-SUBRC EQ 1. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 2. "Exception "Add code for exception here ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

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 .

ld_x_partner_guid = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_ty_errmsg to it_ty_errmsg.
ld_x_pod_guid = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_ty_method_container to it_ty_method_container.
ld_x_contractpos = 'Check type of data required'.
ld_x_container = 'Check type of data required'.
ld_x_moveindate = 'Check type of data required'.
ld_x_moveoutdate = 'Check type of data required'.

Contribute (Add Comments)

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.