SAP Function Modules

RS_MESSAGE_ID_PRINT SAP Function module







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

Associated Function Group: SEUW
Released Date: Not Released
Processing type: Normal fucntion module
Normal function module settings


Pattern for FM RS_MESSAGE_ID_PRINT - RS MESSAGE ID PRINT





CALL FUNCTION 'RS_MESSAGE_ID_PRINT' "
* EXPORTING
*   message_id =                " t100-arbgb
*   langu = SY-LANGU            " sy-langu
*   with_print_on = 'X'         "
*   with_print_off = 'X'        "
* TABLES
*   message_ids =               "
* CHANGING
*   priparams = SPACE           " pri_params    Print Parameters
  EXCEPTIONS
    CANCELED = 1                "               Printer output canceled by user
    OPEN_FORM_ERROR = 2         "               Error opeining SAPscript layout set
    MESSAGE_ID_NOT_EXIST = 3    "               Program does not exist
    NO_MESSAGE_IDS = 4          "
    .  "  RS_MESSAGE_ID_PRINT

ABAP code example for Function Module RS_MESSAGE_ID_PRINT





The ABAP code below is a full code listing to execute function module RS_MESSAGE_ID_PRINT 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_message_ids  TYPE STANDARD TABLE OF STRING,"TABLES PARAM
wa_message_ids  LIKE LINE OF it_message_ids .

DATA(ld_priparams) = 'Check type of data required'.

SELECT single ARBGB
FROM T100
INTO @DATA(ld_message_id).

DATA(ld_langu) = 'Check type of data required'.
DATA(ld_with_print_on) = 'some text here'.
DATA(ld_with_print_off) = 'some text here'.

"populate fields of struture and append to itab
append wa_message_ids to it_message_ids. . CALL FUNCTION 'RS_MESSAGE_ID_PRINT' * EXPORTING * message_id = ld_message_id * langu = ld_langu * with_print_on = ld_with_print_on * with_print_off = ld_with_print_off * TABLES * message_ids = it_message_ids * CHANGING * priparams = ld_priparams EXCEPTIONS CANCELED = 1 OPEN_FORM_ERROR = 2 MESSAGE_ID_NOT_EXIST = 3 NO_MESSAGE_IDS = 4 . " RS_MESSAGE_ID_PRINT
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 3. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 4. "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_priparams  TYPE PRI_PARAMS ,
ld_message_id  TYPE T100-ARBGB ,
it_message_ids  TYPE STANDARD TABLE OF STRING ,
wa_message_ids  LIKE LINE OF it_message_ids,
ld_langu  TYPE SY-LANGU ,
ld_with_print_on  TYPE STRING ,
ld_with_print_off  TYPE STRING .

ld_priparams = 'Check type of data required'.

SELECT single ARBGB
FROM T100
INTO ld_message_id.


"populate fields of struture and append to itab
append wa_message_ids to it_message_ids.
ld_langu = 'Check type of data required'.
ld_with_print_on = 'some text here'.
ld_with_print_off = 'some text here'.

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 RS_MESSAGE_ID_PRINT or its description.