SAP Function Modules

CSM_CONTROL SAP Function module







CSM_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 CSM_CONTROL into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: SMON
Released Date: Not Released
Processing type: Remote-Enabled
remote enabled module settings


Pattern for FM CSM_CONTROL - CSM CONTROL





CALL FUNCTION 'CSM_CONTROL' "
  EXPORTING
    command =                   " def_par_fu-req_param1
    operation =                 " def_par_fu-req_param1
    timeout =                   " int2
  TABLES
    output_std =                " smon_text
*   error_std =                 " smon_text
  EXCEPTIONS
    ILLEGAL_COMMAND = 1         "
    ILLEGAL_OPERATION = 2       "
    COMMAND_NOT_FOUND = 4       "
    PATH_NOT_FOUND = 5          "
    INTERNAL_ERROR = 6          "
    .  "  CSM_CONTROL

ABAP code example for Function Module CSM_CONTROL





The ABAP code below is a full code listing to execute function module CSM_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:
it_output_std  TYPE STANDARD TABLE OF SMON_TEXT,"TABLES PARAM
wa_output_std  LIKE LINE OF it_output_std ,
it_error_std  TYPE STANDARD TABLE OF SMON_TEXT,"TABLES PARAM
wa_error_std  LIKE LINE OF it_error_std .


DATA(ld_command) = some text here

DATA(ld_operation) = some text here
DATA(ld_timeout) = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_output_std to it_output_std.

"populate fields of struture and append to itab
append wa_error_std to it_error_std. . CALL FUNCTION 'CSM_CONTROL' EXPORTING command = ld_command operation = ld_operation timeout = ld_timeout TABLES output_std = it_output_std * error_std = it_error_std EXCEPTIONS ILLEGAL_COMMAND = 1 ILLEGAL_OPERATION = 2 COMMAND_NOT_FOUND = 4 PATH_NOT_FOUND = 5 INTERNAL_ERROR = 6 . " CSM_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 ELSEIF SY-SUBRC EQ 4. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 5. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 6. "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_command  TYPE DEF_PAR_FU-REQ_PARAM1 ,
it_output_std  TYPE STANDARD TABLE OF SMON_TEXT ,
wa_output_std  LIKE LINE OF it_output_std,
ld_operation  TYPE DEF_PAR_FU-REQ_PARAM1 ,
it_error_std  TYPE STANDARD TABLE OF SMON_TEXT ,
wa_error_std  LIKE LINE OF it_error_std,
ld_timeout  TYPE INT2 .


ld_command = some text here

"populate fields of struture and append to itab
append wa_output_std to it_output_std.

ld_operation = some text here

"populate fields of struture and append to itab
append wa_error_std to it_error_std.
ld_timeout = '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 CSM_CONTROL or its description.