SAP CM_F_PROTOCOL_PRINT Function Module for NOTRANSL: Drucken der Meldungen die gesammelt wurden









CM_F_PROTOCOL_PRINT is a standard cm f protocol print SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Drucken der Meldungen die gesammelt wurden 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 cm f protocol print FM, simply by entering the name CM_F_PROTOCOL_PRINT into the relevant SAP transaction such as SE37 or SE38.

Function Group: CMFE
Program Name: SAPLCMFE
Main Program: SAPLCMFE
Appliation area: M
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function CM_F_PROTOCOL_PRINT 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 'CM_F_PROTOCOL_PRINT'"NOTRANSL: Drucken der Meldungen die gesammelt wurden
EXPORTING
* APLID = ' ' "
* HEADLINE = ' ' "Heading for list printout of messages
* NEW_LIST_ID = 'X' "
* ONLY_MSGTYP = ' ' "Print messages only for a specific message type
* WITH_INFO = 'X' "Print messages and general information
* ALV_VARIANT = '1' "
* PRINT_PARAMETER_DIALOG = 'X' "
* ADDITIONAL_INFO = "

EXCEPTIONS
NOT_ACTIVE = 1 NO_PROTOCOL = 2
.



IMPORTING Parameters details for CM_F_PROTOCOL_PRINT

APLID -

Data type: TCMF6-APLID
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

HEADLINE - Heading for list printout of messages

Data type:
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

NEW_LIST_ID -

Data type: XFLAG
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

ONLY_MSGTYP - Print messages only for a specific message type

Data type: SY-MSGTY
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

WITH_INFO - Print messages and general information

Data type: XFLAG
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

ALV_VARIANT -

Data type: SLIS_VARI
Default: '1'
Optional: Yes
Call by Reference: No ( called with pass by value option)

PRINT_PARAMETER_DIALOG -

Data type: C
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

ADDITIONAL_INFO -

Data type: CMFADDINFO
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

NOT_ACTIVE - Error management is not active

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

NO_PROTOCOL - No messages exist

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for CM_F_PROTOCOL_PRINT 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:
lv_aplid  TYPE TCMF6-APLID, "   SPACE
lv_not_active  TYPE TCMF6, "   
lv_headline  TYPE TCMF6, "   SPACE
lv_no_protocol  TYPE TCMF6, "   
lv_new_list_id  TYPE XFLAG, "   'X'
lv_only_msgtyp  TYPE SY-MSGTY, "   SPACE
lv_with_info  TYPE XFLAG, "   'X'
lv_alv_variant  TYPE SLIS_VARI, "   '1'
lv_print_parameter_dialog  TYPE C, "   'X'
lv_additional_info  TYPE CMFADDINFO. "   

  CALL FUNCTION 'CM_F_PROTOCOL_PRINT'  "NOTRANSL: Drucken der Meldungen die gesammelt wurden
    EXPORTING
         APLID = lv_aplid
         HEADLINE = lv_headline
         NEW_LIST_ID = lv_new_list_id
         ONLY_MSGTYP = lv_only_msgtyp
         WITH_INFO = lv_with_info
         ALV_VARIANT = lv_alv_variant
         PRINT_PARAMETER_DIALOG = lv_print_parameter_dialog
         ADDITIONAL_INFO = lv_additional_info
    EXCEPTIONS
        NOT_ACTIVE = 1
        NO_PROTOCOL = 2
. " CM_F_PROTOCOL_PRINT




ABAP code using 7.40 inline data declarations to call FM CM_F_PROTOCOL_PRINT

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.

"SELECT single APLID FROM TCMF6 INTO @DATA(ld_aplid).
DATA(ld_aplid) = ' '.
 
 
DATA(ld_headline) = ' '.
 
 
DATA(ld_new_list_id) = 'X'.
 
"SELECT single MSGTY FROM SY INTO @DATA(ld_only_msgtyp).
DATA(ld_only_msgtyp) = ' '.
 
DATA(ld_with_info) = 'X'.
 
DATA(ld_alv_variant) = '1'.
 
DATA(ld_print_parameter_dialog) = 'X'.
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!