SAP CIF_BGRFC_NETWORK_SEND Function Module for NOTRANSL: Versenden von PM-Aufträgen
CIF_BGRFC_NETWORK_SEND is a standard cif bgrfc network send 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: Versenden von PM-Aufträgen 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 cif bgrfc network send FM, simply by entering the name CIF_BGRFC_NETWORK_SEND into the relevant SAP transaction such as SE37 or SE38.
Function Group: CFBGRFCQOUT
Program Name: SAPLCFBGRFCQOUT
Main Program: SAPLCFBGRFCQOUT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function CIF_BGRFC_NETWORK_SEND 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 'CIF_BGRFC_NETWORK_SEND'"NOTRANSL: Versenden von PM-Aufträgen.
EXPORTING
IS_CTRLPARAMS = "Control Parameters for Data Transfers
TABLES
IT_HEADER = "
* IT_INPUT_CUS = "Customer Enhancement Structure for CIF_PRJINP
* IT_OUTPUT_CUS = "Customer Enhancement Structure for CIF_PRJOUT
* IT_CAP_REQ_CUS = "Customer Enhancement Structure for CIF_PRJREQ
* IT_ENQUEUE_ARGS = "Basis Table of Integration Model for APO Interface
* IT_QUEUE_NAMES = "Structure for qRFC receiver list
IT_ACTIVITY = "
IT_CONSTRAINT = "
IT_INPUT = "
IT_OUTPUT = "
IT_CAP_REQ = "
* IT_HEADER_CUS = "Customer Enhancement Structure for CIF_PRJORD
* IT_ACTIVITY_CUS = "Customer Enhancement Structure for CIF_PRJACT
* IT_CONSTRAINT_CUS = "Customer Enhancement Structure for CIF_PRJREL
EXCEPTIONS
CALL_FUNCTION_ERROR = 1
IMPORTING Parameters details for CIF_BGRFC_NETWORK_SEND
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 CIF_BGRFC_NETWORK_SEND
IT_HEADER -
Data type: CIF_PRJORDOptional: No
Call by Reference: No ( called with pass by value option)
IT_INPUT_CUS - Customer Enhancement Structure for CIF_PRJINP
Data type: CIFPRJINPCOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_OUTPUT_CUS - Customer Enhancement Structure for CIF_PRJOUT
Data type: CIFPRJOUTCOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_CAP_REQ_CUS - Customer Enhancement Structure for CIF_PRJREQ
Data type: CIFPRJREQCOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_ENQUEUE_ARGS - Basis Table of Integration Model for APO Interface
Data type: CIF_IMODOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_QUEUE_NAMES - Structure for qRFC receiver list
Data type: QRFCRCVOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_ACTIVITY -
Data type: CIF_PRJACTOptional: No
Call by Reference: No ( called with pass by value option)
IT_CONSTRAINT -
Data type: CIF_PRJRELOptional: No
Call by Reference: No ( called with pass by value option)
IT_INPUT -
Data type: CIF_PRJINPOptional: No
Call by Reference: No ( called with pass by value option)
IT_OUTPUT -
Data type: CIF_PRJOUTOptional: No
Call by Reference: No ( called with pass by value option)
IT_CAP_REQ -
Data type: CIF_PRJREQOptional: No
Call by Reference: No ( called with pass by value option)
IT_HEADER_CUS - Customer Enhancement Structure for CIF_PRJORD
Data type: CIFPRJORDCOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_ACTIVITY_CUS - Customer Enhancement Structure for CIF_PRJACT
Data type: CIFPRJACTCOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_CONSTRAINT_CUS - Customer Enhancement Structure for CIF_PRJREL
Data type: CIFPRJRELCOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
CALL_FUNCTION_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for CIF_BGRFC_NETWORK_SEND 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_it_header | TYPE STANDARD TABLE OF CIF_PRJORD, " | |||
| lv_is_ctrlparams | TYPE CIFCTRLPAR, " | |||
| lv_call_function_error | TYPE CIFCTRLPAR, " | |||
| lt_it_input_cus | TYPE STANDARD TABLE OF CIFPRJINPC, " | |||
| lt_it_output_cus | TYPE STANDARD TABLE OF CIFPRJOUTC, " | |||
| lt_it_cap_req_cus | TYPE STANDARD TABLE OF CIFPRJREQC, " | |||
| lt_it_enqueue_args | TYPE STANDARD TABLE OF CIF_IMOD, " | |||
| lt_it_queue_names | TYPE STANDARD TABLE OF QRFCRCV, " | |||
| lt_it_activity | TYPE STANDARD TABLE OF CIF_PRJACT, " | |||
| lt_it_constraint | TYPE STANDARD TABLE OF CIF_PRJREL, " | |||
| lt_it_input | TYPE STANDARD TABLE OF CIF_PRJINP, " | |||
| lt_it_output | TYPE STANDARD TABLE OF CIF_PRJOUT, " | |||
| lt_it_cap_req | TYPE STANDARD TABLE OF CIF_PRJREQ, " | |||
| lt_it_header_cus | TYPE STANDARD TABLE OF CIFPRJORDC, " | |||
| lt_it_activity_cus | TYPE STANDARD TABLE OF CIFPRJACTC, " | |||
| lt_it_constraint_cus | TYPE STANDARD TABLE OF CIFPRJRELC. " |
|   CALL FUNCTION 'CIF_BGRFC_NETWORK_SEND' "NOTRANSL: Versenden von PM-Aufträgen |
| EXPORTING | ||
| IS_CTRLPARAMS | = lv_is_ctrlparams | |
| TABLES | ||
| IT_HEADER | = lt_it_header | |
| IT_INPUT_CUS | = lt_it_input_cus | |
| IT_OUTPUT_CUS | = lt_it_output_cus | |
| IT_CAP_REQ_CUS | = lt_it_cap_req_cus | |
| IT_ENQUEUE_ARGS | = lt_it_enqueue_args | |
| IT_QUEUE_NAMES | = lt_it_queue_names | |
| IT_ACTIVITY | = lt_it_activity | |
| IT_CONSTRAINT | = lt_it_constraint | |
| IT_INPUT | = lt_it_input | |
| IT_OUTPUT | = lt_it_output | |
| IT_CAP_REQ | = lt_it_cap_req | |
| IT_HEADER_CUS | = lt_it_header_cus | |
| IT_ACTIVITY_CUS | = lt_it_activity_cus | |
| IT_CONSTRAINT_CUS | = lt_it_constraint_cus | |
| EXCEPTIONS | ||
| CALL_FUNCTION_ERROR = 1 | ||
| . " CIF_BGRFC_NETWORK_SEND | ||
ABAP code using 7.40 inline data declarations to call FM CIF_BGRFC_NETWORK_SEND
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