SAP L_RESTART_QUEUE Function Module for NOTRANSL: Startet fehlerhafte und hängende Queues
L_RESTART_QUEUE is a standard l restart queue 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: Startet fehlerhafte und hängende Queues 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 l restart queue FM, simply by entering the name L_RESTART_QUEUE into the relevant SAP transaction such as SE37 or SE38.
Function Group: L03B
Program Name: SAPLL03B
Main Program: SAPLL03B
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function L_RESTART_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 'L_RESTART_QUEUE'"NOTRANSL: Startet fehlerhafte und hängende Queues.
EXPORTING
* IV_QUEUE_NAME = "Name of tRFC queue
* IV_LGNUM = "Transfer Order Number
* IV_TANUM = "Transfer Order Number
IMPORTING
EV_FOUND = "
EV_ERR_TEXT = "
EXCEPTIONS
OTHERS = 1 ERR_TEXT = 2
IMPORTING Parameters details for L_RESTART_QUEUE
IV_QUEUE_NAME - Name of tRFC queue
Data type: TRFCQOUT-QNAMEOptional: Yes
Call by Reference: No ( called with pass by value option)
IV_LGNUM - Transfer Order Number
Data type: LTAK-LGNUMOptional: Yes
Call by Reference: No ( called with pass by value option)
IV_TANUM - Transfer Order Number
Data type: LTAK-TANUMOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for L_RESTART_QUEUE
EV_FOUND -
Data type: CHAR01Optional: No
Call by Reference: No ( called with pass by value option)
EV_ERR_TEXT -
Data type: TRFCQVIEW-ERRMESSOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
OTHERS -
Data type:Optional: No
Call by Reference: Yes
ERR_TEXT -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for L_RESTART_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_others | TYPE STRING, " | |||
| lv_ev_found | TYPE CHAR01, " | |||
| lv_iv_queue_name | TYPE TRFCQOUT-QNAME, " | |||
| lv_err_text | TYPE TRFCQOUT, " | |||
| lv_iv_lgnum | TYPE LTAK-LGNUM, " | |||
| lv_ev_err_text | TYPE TRFCQVIEW-ERRMESS, " | |||
| lv_iv_tanum | TYPE LTAK-TANUM. " |
|   CALL FUNCTION 'L_RESTART_QUEUE' "NOTRANSL: Startet fehlerhafte und hängende Queues |
| EXPORTING | ||
| IV_QUEUE_NAME | = lv_iv_queue_name | |
| IV_LGNUM | = lv_iv_lgnum | |
| IV_TANUM | = lv_iv_tanum | |
| IMPORTING | ||
| EV_FOUND | = lv_ev_found | |
| EV_ERR_TEXT | = lv_ev_err_text | |
| EXCEPTIONS | ||
| OTHERS = 1 | ||
| ERR_TEXT = 2 | ||
| . " L_RESTART_QUEUE | ||
ABAP code using 7.40 inline data declarations to call FM L_RESTART_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.| "SELECT single QNAME FROM TRFCQOUT INTO @DATA(ld_iv_queue_name). | ||||
| "SELECT single LGNUM FROM LTAK INTO @DATA(ld_iv_lgnum). | ||||
| "SELECT single ERRMESS FROM TRFCQVIEW INTO @DATA(ld_ev_err_text). | ||||
| "SELECT single TANUM FROM LTAK INTO @DATA(ld_iv_tanum). | ||||
Search for further information about these or an SAP related objects