SAP COMMUNICATION_AREA_KOM_ISPAM_C Function Module for
COMMUNICATION_AREA_KOM_ISPAM_C is a standard communication area kom ispam c SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 communication area kom ispam c FM, simply by entering the name COMMUNICATION_AREA_KOM_ISPAM_C into the relevant SAP transaction such as SE37 or SE38.
Function Group: JJ00
Program Name: SAPLJJ00
Main Program: SAPLJJ00
Appliation area: J
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function COMMUNICATION_AREA_KOM_ISPAM_C 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 'COMMUNICATION_AREA_KOM_ISPAM_C'".
EXPORTING
* MSG_OLD = ' ' "
* MSG_IN_KOMKBJA = "
* MSG_IN_KOMKBJF = "
* MSG_IN_KOMKBJG = "
* MSG_IN_KOMKBJK = "
* MSG_IN_KOMKBJH = "
* MSG_IN_KOMKBJM = "
* IN_STRUKTUR = ' ' "
* IN_STRUNAME = ' ' "
IMPORTING Parameters details for COMMUNICATION_AREA_KOM_ISPAM_C
MSG_OLD -
Data type:Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
MSG_IN_KOMKBJA -
Data type: KOMKBJAOptional: Yes
Call by Reference: No ( called with pass by value option)
MSG_IN_KOMKBJF -
Data type: KOMKBJFOptional: Yes
Call by Reference: No ( called with pass by value option)
MSG_IN_KOMKBJG -
Data type: KOMKBJGOptional: Yes
Call by Reference: No ( called with pass by value option)
MSG_IN_KOMKBJK -
Data type: KOMKBJKOptional: Yes
Call by Reference: No ( called with pass by value option)
MSG_IN_KOMKBJH -
Data type: KOMKBJHOptional: Yes
Call by Reference: No ( called with pass by value option)
MSG_IN_KOMKBJM -
Data type: KOMKBJMOptional: Yes
Call by Reference: No ( called with pass by value option)
IN_STRUKTUR -
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
IN_STRUNAME -
Data type: DD02L-TABNAMEDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for COMMUNICATION_AREA_KOM_ISPAM_C 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_msg_old | TYPE STRING, " ' ' | |||
| lv_msg_in_komkbja | TYPE KOMKBJA, " | |||
| lv_msg_in_komkbjf | TYPE KOMKBJF, " | |||
| lv_msg_in_komkbjg | TYPE KOMKBJG, " | |||
| lv_msg_in_komkbjk | TYPE KOMKBJK, " | |||
| lv_msg_in_komkbjh | TYPE KOMKBJH, " | |||
| lv_msg_in_komkbjm | TYPE KOMKBJM, " | |||
| lv_in_struktur | TYPE KOMKBJM, " SPACE | |||
| lv_in_struname | TYPE DD02L-TABNAME. " SPACE |
|   CALL FUNCTION 'COMMUNICATION_AREA_KOM_ISPAM_C' " |
| EXPORTING | ||
| MSG_OLD | = lv_msg_old | |
| MSG_IN_KOMKBJA | = lv_msg_in_komkbja | |
| MSG_IN_KOMKBJF | = lv_msg_in_komkbjf | |
| MSG_IN_KOMKBJG | = lv_msg_in_komkbjg | |
| MSG_IN_KOMKBJK | = lv_msg_in_komkbjk | |
| MSG_IN_KOMKBJH | = lv_msg_in_komkbjh | |
| MSG_IN_KOMKBJM | = lv_msg_in_komkbjm | |
| IN_STRUKTUR | = lv_in_struktur | |
| IN_STRUNAME | = lv_in_struname | |
| . " COMMUNICATION_AREA_KOM_ISPAM_C | ||
ABAP code using 7.40 inline data declarations to call FM COMMUNICATION_AREA_KOM_ISPAM_C
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.| DATA(ld_msg_old) | = ' '. | |||
| DATA(ld_in_struktur) | = ' '. | |||
| "SELECT single TABNAME FROM DD02L INTO @DATA(ld_in_struname). | ||||
| DATA(ld_in_struname) | = ' '. | |||
Search for further information about these or an SAP related objects