SAP SPAM_UI_SET_QUEUE Function Module for
SPAM_UI_SET_QUEUE is a standard spam ui set queue 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 spam ui set queue FM, simply by entering the name SPAM_UI_SET_QUEUE into the relevant SAP transaction such as SE37 or SE38.
Function Group: SPAM_UI
Program Name: SAPLSPAM_UI
Main Program: SAPLSPAM_UI
Appliation area: S
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SPAM_UI_SET_QUEUE 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 'SPAM_UI_SET_QUEUE'".
EXPORTING
* IV_ONE_PATCH = ' ' "
IMPORTING
ES_PATCH = "
CHANGING
* CS_COMPONENT = "
* CV_CRT_QUEUE = ' ' "
TABLES
TT_OUT_QUEUE = "
EXCEPTIONS
CANCEL_FUNCTION = 1 FDP_NEEDED = 2 NO_COMPONENT_FOUND = 3 NO_VALID_QUEUE = 4 INTERNAL_ERROR = 5
IMPORTING Parameters details for SPAM_UI_SET_QUEUE
IV_ONE_PATCH -
Data type: CDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for SPAM_UI_SET_QUEUE
ES_PATCH -
Data type: PAT_QOptional: No
Call by Reference: Yes
CHANGING Parameters details for SPAM_UI_SET_QUEUE
CS_COMPONENT -
Data type: SPAM_CVERSOptional: Yes
Call by Reference: Yes
CV_CRT_QUEUE -
Data type: CDefault: ' '
Optional: Yes
Call by Reference: Yes
TABLES Parameters details for SPAM_UI_SET_QUEUE
TT_OUT_QUEUE -
Data type: PAT_QOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
CANCEL_FUNCTION - Selection canceled
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
FDP_NEEDED -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_COMPONENT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_VALID_QUEUE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
INTERNAL_ERROR - Internal Error
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for SPAM_UI_SET_QUEUE 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_es_patch | TYPE PAT_Q, " | |||
| lv_cs_component | TYPE SPAM_CVERS, " | |||
| lv_iv_one_patch | TYPE C, " SPACE | |||
| lt_tt_out_queue | TYPE STANDARD TABLE OF PAT_Q, " | |||
| lv_cancel_function | TYPE PAT_Q, " | |||
| lv_fdp_needed | TYPE PAT_Q, " | |||
| lv_cv_crt_queue | TYPE C, " ' ' | |||
| lv_no_component_found | TYPE C, " | |||
| lv_no_valid_queue | TYPE C, " | |||
| lv_internal_error | TYPE C. " |
|   CALL FUNCTION 'SPAM_UI_SET_QUEUE' " |
| EXPORTING | ||
| IV_ONE_PATCH | = lv_iv_one_patch | |
| IMPORTING | ||
| ES_PATCH | = lv_es_patch | |
| CHANGING | ||
| CS_COMPONENT | = lv_cs_component | |
| CV_CRT_QUEUE | = lv_cv_crt_queue | |
| TABLES | ||
| TT_OUT_QUEUE | = lt_tt_out_queue | |
| EXCEPTIONS | ||
| CANCEL_FUNCTION = 1 | ||
| FDP_NEEDED = 2 | ||
| NO_COMPONENT_FOUND = 3 | ||
| NO_VALID_QUEUE = 4 | ||
| INTERNAL_ERROR = 5 | ||
| . " SPAM_UI_SET_QUEUE | ||
ABAP code using 7.40 inline data declarations to call FM SPAM_UI_SET_QUEUE
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_iv_one_patch) | = ' '. | |||
| DATA(ld_cv_crt_queue) | = ' '. | |||
Search for further information about these or an SAP related objects