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

Function OCS_ALV_UI_FULL_SYSTEM_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 'OCS_ALV_UI_FULL_SYSTEM_QUEUE'".
EXPORTING
* IV_ONE_PATCH = ' ' "
IMPORTING
EV_QUEUE_CHANGED = "
ES_BAD_PATCH = "
TABLES
TT_PATQ = "
EXCEPTIONS
CANCEL_FUNCTION = 1 UPGRADE_NOT_FINISHED = 2 FDP_NEEDED = 3 NO_VALID_QUEUE = 4 BAD_ATTRIBUTE = 5 COMPONENT_QUEUE = 6 INTERNAL_ERROR = 7 ALV_ERROR = 8
IMPORTING Parameters details for OCS_ALV_UI_FULL_SYSTEM_QUEUE
IV_ONE_PATCH -
Data type: CDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for OCS_ALV_UI_FULL_SYSTEM_QUEUE
EV_QUEUE_CHANGED -
Data type: COptional: No
Call by Reference: Yes
ES_BAD_PATCH -
Data type: BAD_PATCHOptional: No
Call by Reference: Yes
TABLES Parameters details for OCS_ALV_UI_FULL_SYSTEM_QUEUE
TT_PATQ -
Data type: PAT_QOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
CANCEL_FUNCTION -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
UPGRADE_NOT_FINISHED -
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_VALID_QUEUE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
BAD_ATTRIBUTE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
COMPONENT_QUEUE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
INTERNAL_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
ALV_ERROR -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for OCS_ALV_UI_FULL_SYSTEM_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: | ||||
| lt_tt_patq | TYPE STANDARD TABLE OF PAT_Q, " | |||
| lv_iv_one_patch | TYPE C, " SPACE | |||
| lv_cancel_function | TYPE C, " | |||
| lv_ev_queue_changed | TYPE C, " | |||
| lv_es_bad_patch | TYPE BAD_PATCH, " | |||
| lv_upgrade_not_finished | TYPE BAD_PATCH, " | |||
| lv_fdp_needed | TYPE BAD_PATCH, " | |||
| lv_no_valid_queue | TYPE BAD_PATCH, " | |||
| lv_bad_attribute | TYPE BAD_PATCH, " | |||
| lv_component_queue | TYPE BAD_PATCH, " | |||
| lv_internal_error | TYPE BAD_PATCH, " | |||
| lv_alv_error | TYPE BAD_PATCH. " |
|   CALL FUNCTION 'OCS_ALV_UI_FULL_SYSTEM_QUEUE' " |
| EXPORTING | ||
| IV_ONE_PATCH | = lv_iv_one_patch | |
| IMPORTING | ||
| EV_QUEUE_CHANGED | = lv_ev_queue_changed | |
| ES_BAD_PATCH | = lv_es_bad_patch | |
| TABLES | ||
| TT_PATQ | = lt_tt_patq | |
| EXCEPTIONS | ||
| CANCEL_FUNCTION = 1 | ||
| UPGRADE_NOT_FINISHED = 2 | ||
| FDP_NEEDED = 3 | ||
| NO_VALID_QUEUE = 4 | ||
| BAD_ATTRIBUTE = 5 | ||
| COMPONENT_QUEUE = 6 | ||
| INTERNAL_ERROR = 7 | ||
| ALV_ERROR = 8 | ||
| . " OCS_ALV_UI_FULL_SYSTEM_QUEUE | ||
ABAP code using 7.40 inline data declarations to call FM OCS_ALV_UI_FULL_SYSTEM_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) | = ' '. | |||
Search for further information about these or an SAP related objects