SAP CQI_PJ_INBOUND Function Module for NOTRANSL: Queue-Display Interface Function für CIF_PJ_INBOUND
CQI_PJ_INBOUND is a standard cqi pj inbound 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: Queue-Display Interface Function für CIF_PJ_INBOUND 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 cqi pj inbound FM, simply by entering the name CQI_PJ_INBOUND into the relevant SAP transaction such as SE37 or SE38.
Function Group: CFQI
Program Name: SAPLCFQI
Main Program: SAPLCFQI
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function CQI_PJ_INBOUND 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 'CQI_PJ_INBOUND'"NOTRANSL: Queue-Display Interface Function für CIF_PJ_INBOUND.
EXPORTING
IS_CTRLPARAMS = "Control Parameters for Data Transfers
TABLES
CT_HEADER_INBOUND = "
CT_ACTIVITY_INBOUND = "
CT_RESB_INBOUND = "
* CT_HEADER_INB_CI = "
* CT_ACTIVITY_INB_CI = "
* CT_RESB_INB_CI = "
IMPORTING Parameters details for CQI_PJ_INBOUND
IS_CTRLPARAMS - Control Parameters for Data Transfers
Data type: CIFCTRLPAROptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for CQI_PJ_INBOUND
CT_HEADER_INBOUND -
Data type: PRJ_S_HEADER_INOptional: No
Call by Reference: Yes
CT_ACTIVITY_INBOUND -
Data type: PRJ_S_ACTIVITY_INOptional: No
Call by Reference: Yes
CT_RESB_INBOUND -
Data type: PRJ_S_RESB_INOptional: No
Call by Reference: Yes
CT_HEADER_INB_CI -
Data type: PRJ_S_HEADER_IN_CUSOptional: Yes
Call by Reference: Yes
CT_ACTIVITY_INB_CI -
Data type: PRJ_S_ACTIVITY_IN_CUSOptional: Yes
Call by Reference: Yes
CT_RESB_INB_CI -
Data type: PRJ_S_RESB_IN_CUSOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for CQI_PJ_INBOUND 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_is_ctrlparams | TYPE CIFCTRLPAR, " | |||
| lt_ct_header_inbound | TYPE STANDARD TABLE OF PRJ_S_HEADER_IN, " | |||
| lt_ct_activity_inbound | TYPE STANDARD TABLE OF PRJ_S_ACTIVITY_IN, " | |||
| lt_ct_resb_inbound | TYPE STANDARD TABLE OF PRJ_S_RESB_IN, " | |||
| lt_ct_header_inb_ci | TYPE STANDARD TABLE OF PRJ_S_HEADER_IN_CUS, " | |||
| lt_ct_activity_inb_ci | TYPE STANDARD TABLE OF PRJ_S_ACTIVITY_IN_CUS, " | |||
| lt_ct_resb_inb_ci | TYPE STANDARD TABLE OF PRJ_S_RESB_IN_CUS. " |
|   CALL FUNCTION 'CQI_PJ_INBOUND' "NOTRANSL: Queue-Display Interface Function für CIF_PJ_INBOUND |
| EXPORTING | ||
| IS_CTRLPARAMS | = lv_is_ctrlparams | |
| TABLES | ||
| CT_HEADER_INBOUND | = lt_ct_header_inbound | |
| CT_ACTIVITY_INBOUND | = lt_ct_activity_inbound | |
| CT_RESB_INBOUND | = lt_ct_resb_inbound | |
| CT_HEADER_INB_CI | = lt_ct_header_inb_ci | |
| CT_ACTIVITY_INB_CI | = lt_ct_activity_inb_ci | |
| CT_RESB_INB_CI | = lt_ct_resb_inb_ci | |
| . " CQI_PJ_INBOUND | ||
ABAP code using 7.40 inline data declarations to call FM CQI_PJ_INBOUND
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