SAP TMS_UIQ_IQD_READ_QUEUE Function Module for









TMS_UIQ_IQD_READ_QUEUE is a standard tms uiq iqd read 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 tms uiq iqd read queue FM, simply by entering the name TMS_UIQ_IQD_READ_QUEUE into the relevant SAP transaction such as SE37 or SE38.

Function Group: TMSU_IQ
Program Name: SAPLTMSU_IQ
Main Program: SAPLTMSU_IQ
Appliation area: S
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function TMS_UIQ_IQD_READ_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 'TMS_UIQ_IQD_READ_QUEUE'"
EXPORTING
IV_SYSTEM = "
* IV_DOMAIN = "
* IV_COLLECT = "
* IV_READ_SHADOW = "
* IV_USE_DATA = "
* IV_MAX_EXP = "
* IV_MONITOR = "
* IV_VERBOSE = "

IMPORTING
EV_COLLECT_DATE = "
ET_REQUESTS = "
ET_CLIENTS = "
ET_PROJECTS = "
EV_COLLECT_TIME = "
EV_NR_OF_GRPS = "
EV_IS_A_QA_SYS = "
EV_NO_IMP_ALL = "
EV_IMP_SINGLE = "
EV_FTP_INCOMPLETE = "
ES_SYSTEM = "
ES_BUFCNT = "

TABLES
* TT_SYSTEM = "

EXCEPTIONS
READ_QUEUE_FAILED = 1
.



IMPORTING Parameters details for TMS_UIQ_IQD_READ_QUEUE

IV_SYSTEM -

Data type: TMSSYSNAM
Optional: No
Call by Reference: Yes

IV_DOMAIN -

Data type: TMSDOMNAM
Optional: Yes
Call by Reference: Yes

IV_COLLECT -

Data type: FLAG
Optional: Yes
Call by Reference: Yes

IV_READ_SHADOW -

Data type: FLAG
Optional: Yes
Call by Reference: Yes

IV_USE_DATA -

Data type: FLAG
Optional: Yes
Call by Reference: Yes

IV_MAX_EXP -

Data type: N
Optional: Yes
Call by Reference: Yes

IV_MONITOR -

Data type: FLAG
Optional: Yes
Call by Reference: Yes

IV_VERBOSE -

Data type: FLAG
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for TMS_UIQ_IQD_READ_QUEUE

EV_COLLECT_DATE -

Data type: SYDATUM
Optional: No
Call by Reference: Yes

ET_REQUESTS -

Data type: TMSIQREQS
Optional: No
Call by Reference: Yes

ET_CLIENTS -

Data type: TMSIQCLIS
Optional: No
Call by Reference: Yes

ET_PROJECTS -

Data type: TMSIQPROS
Optional: No
Call by Reference: Yes

EV_COLLECT_TIME -

Data type: SYUZEIT
Optional: No
Call by Reference: Yes

EV_NR_OF_GRPS -

Data type: I
Optional: No
Call by Reference: Yes

EV_IS_A_QA_SYS -

Data type: STMS_FLAG
Optional: No
Call by Reference: Yes

EV_NO_IMP_ALL -

Data type: STMS_FLAG
Optional: No
Call by Reference: Yes

EV_IMP_SINGLE -

Data type: STMS_FLAG
Optional: No
Call by Reference: Yes

EV_FTP_INCOMPLETE -

Data type: STMS_FLAG
Optional: No
Call by Reference: Yes

ES_SYSTEM -

Data type: TMSCSYS
Optional: No
Call by Reference: Yes

ES_BUFCNT -

Data type: TMSBUFCNT
Optional: No
Call by Reference: Yes

TABLES Parameters details for TMS_UIQ_IQD_READ_QUEUE

TT_SYSTEM -

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

EXCEPTIONS details

READ_QUEUE_FAILED -

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

Copy and paste ABAP code example for TMS_UIQ_IQD_READ_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_iv_system  TYPE TMSSYSNAM, "   
lt_tt_system  TYPE STANDARD TABLE OF TMSCSYS, "   
lv_ev_collect_date  TYPE SYDATUM, "   
lv_read_queue_failed  TYPE SYDATUM, "   
lv_et_requests  TYPE TMSIQREQS, "   
lv_et_clients  TYPE TMSIQCLIS, "   
lv_et_projects  TYPE TMSIQPROS, "   
lv_iv_domain  TYPE TMSDOMNAM, "   
lv_ev_collect_time  TYPE SYUZEIT, "   
lv_iv_collect  TYPE FLAG, "   
lv_ev_nr_of_grps  TYPE I, "   
lv_ev_is_a_qa_sys  TYPE STMS_FLAG, "   
lv_iv_read_shadow  TYPE FLAG, "   
lv_iv_use_data  TYPE FLAG, "   
lv_ev_no_imp_all  TYPE STMS_FLAG, "   
lv_iv_max_exp  TYPE N, "   
lv_ev_imp_single  TYPE STMS_FLAG, "   
lv_iv_monitor  TYPE FLAG, "   
lv_ev_ftp_incomplete  TYPE STMS_FLAG, "   
lv_es_system  TYPE TMSCSYS, "   
lv_iv_verbose  TYPE FLAG, "   
lv_es_bufcnt  TYPE TMSBUFCNT. "   

  CALL FUNCTION 'TMS_UIQ_IQD_READ_QUEUE'  "
    EXPORTING
         IV_SYSTEM = lv_iv_system
         IV_DOMAIN = lv_iv_domain
         IV_COLLECT = lv_iv_collect
         IV_READ_SHADOW = lv_iv_read_shadow
         IV_USE_DATA = lv_iv_use_data
         IV_MAX_EXP = lv_iv_max_exp
         IV_MONITOR = lv_iv_monitor
         IV_VERBOSE = lv_iv_verbose
    IMPORTING
         EV_COLLECT_DATE = lv_ev_collect_date
         ET_REQUESTS = lv_et_requests
         ET_CLIENTS = lv_et_clients
         ET_PROJECTS = lv_et_projects
         EV_COLLECT_TIME = lv_ev_collect_time
         EV_NR_OF_GRPS = lv_ev_nr_of_grps
         EV_IS_A_QA_SYS = lv_ev_is_a_qa_sys
         EV_NO_IMP_ALL = lv_ev_no_imp_all
         EV_IMP_SINGLE = lv_ev_imp_single
         EV_FTP_INCOMPLETE = lv_ev_ftp_incomplete
         ES_SYSTEM = lv_es_system
         ES_BUFCNT = lv_es_bufcnt
    TABLES
         TT_SYSTEM = lt_tt_system
    EXCEPTIONS
        READ_QUEUE_FAILED = 1
. " TMS_UIQ_IQD_READ_QUEUE




ABAP code using 7.40 inline data declarations to call FM TMS_UIQ_IQD_READ_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.

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 


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!