SAP CIF_BGRFC_QUOTA_ALLOC_SEND Function Module for NOTRANSL: APO Outbound interface for Allocation
CIF_BGRFC_QUOTA_ALLOC_SEND is a standard cif bgrfc quota alloc 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: APO Outbound interface for Allocation 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 quota alloc send FM, simply by entering the name CIF_BGRFC_QUOTA_ALLOC_SEND into the relevant SAP transaction such as SE37 or SE38.
Function Group: CFBGRFCQOUT
Program Name: SAPLCFBGRFCQOUT
Main Program: SAPLCFBGRFCQOUT
Appliation area: C
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function CIF_BGRFC_QUOTA_ALLOC_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_QUOTA_ALLOC_SEND'"NOTRANSL: APO Outbound interface for Allocation.
EXPORTING
IS_CTRLPARAMS = "Control Parameters for Data Transfers
IF_DATE_END = "
IS_GEN_PARAMS = "General Control Parameters for CIF
IV_LOGSYS = "Logical System
IF_FILTER_GSTRU = "
IF_KCGRP = "
IF_DELETE_ALLOCATION = "
IF_DELETE_CHARACTER = "
IF_DELETE_AEMENGE = "
IF_DATE_BEGIN = "
IMPORTING
EV_DONE = "Checkbox
TABLES
IT_QTOBJ = "
IT_QTCHA = "
IT_QTTAB = "
* IT_QTOBJ_X = "
* IT_QTCHA_X = "
* IT_QTTAB_X = "
* EXTENSIONOUT = "
IMPORTING Parameters details for CIF_BGRFC_QUOTA_ALLOC_SEND
IS_CTRLPARAMS - Control Parameters for Data Transfers
Data type: CIFCTRLPAROptional: No
Call by Reference: No ( called with pass by value option)
IF_DATE_END -
Data type: QUOT_PAR-DATUMOptional: No
Call by Reference: No ( called with pass by value option)
IS_GEN_PARAMS - General Control Parameters for CIF
Data type: CIFGENPARAOptional: No
Call by Reference: No ( called with pass by value option)
IV_LOGSYS - Logical System
Data type: LOGSYSOptional: No
Call by Reference: No ( called with pass by value option)
IF_FILTER_GSTRU -
Data type: CIF_IMGSTK-GSTRUOptional: No
Call by Reference: No ( called with pass by value option)
IF_KCGRP -
Data type: QUOT_PAR-KCGRPOptional: No
Call by Reference: No ( called with pass by value option)
IF_DELETE_ALLOCATION -
Data type: QUOT_PAR-DEL_ALLOCOptional: No
Call by Reference: No ( called with pass by value option)
IF_DELETE_CHARACTER -
Data type: QUOT_PAR-DEL_CHARCOptional: No
Call by Reference: No ( called with pass by value option)
IF_DELETE_AEMENGE -
Data type: QUOT_PAR-DEL_AEMNGOptional: No
Call by Reference: No ( called with pass by value option)
IF_DATE_BEGIN -
Data type: QUOT_PAR-DATUMOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for CIF_BGRFC_QUOTA_ALLOC_SEND
EV_DONE - Checkbox
Data type: XFELDOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for CIF_BGRFC_QUOTA_ALLOC_SEND
IT_QTOBJ -
Data type: CIFQUOTOBJOptional: No
Call by Reference: No ( called with pass by value option)
IT_QTCHA -
Data type: CIFQUOTCHAOptional: No
Call by Reference: No ( called with pass by value option)
IT_QTTAB -
Data type: CIFQUOTTABOptional: No
Call by Reference: No ( called with pass by value option)
IT_QTOBJ_X -
Data type: CIFQUOTOBXOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_QTCHA_X -
Data type: CIFQUOTCHXOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_QTTAB_X -
Data type: CIFQUOTTAXOptional: Yes
Call by Reference: No ( called with pass by value option)
EXTENSIONOUT -
Data type: CIFBPAREXOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for CIF_BGRFC_QUOTA_ALLOC_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: | ||||
| lv_ev_done | TYPE XFELD, " | |||
| lt_it_qtobj | TYPE STANDARD TABLE OF CIFQUOTOBJ, " | |||
| lv_is_ctrlparams | TYPE CIFCTRLPAR, " | |||
| lv_if_date_end | TYPE QUOT_PAR-DATUM, " | |||
| lt_it_qtcha | TYPE STANDARD TABLE OF CIFQUOTCHA, " | |||
| lv_is_gen_params | TYPE CIFGENPARA, " | |||
| lt_it_qttab | TYPE STANDARD TABLE OF CIFQUOTTAB, " | |||
| lv_iv_logsys | TYPE LOGSYS, " | |||
| lt_it_qtobj_x | TYPE STANDARD TABLE OF CIFQUOTOBX, " | |||
| lv_if_filter_gstru | TYPE CIF_IMGSTK-GSTRU, " | |||
| lv_if_kcgrp | TYPE QUOT_PAR-KCGRP, " | |||
| lt_it_qtcha_x | TYPE STANDARD TABLE OF CIFQUOTCHX, " | |||
| lt_it_qttab_x | TYPE STANDARD TABLE OF CIFQUOTTAX, " | |||
| lv_if_delete_allocation | TYPE QUOT_PAR-DEL_ALLOC, " | |||
| lt_extensionout | TYPE STANDARD TABLE OF CIFBPAREX, " | |||
| lv_if_delete_character | TYPE QUOT_PAR-DEL_CHARC, " | |||
| lv_if_delete_aemenge | TYPE QUOT_PAR-DEL_AEMNG, " | |||
| lv_if_date_begin | TYPE QUOT_PAR-DATUM. " |
|   CALL FUNCTION 'CIF_BGRFC_QUOTA_ALLOC_SEND' "NOTRANSL: APO Outbound interface for Allocation |
| EXPORTING | ||
| IS_CTRLPARAMS | = lv_is_ctrlparams | |
| IF_DATE_END | = lv_if_date_end | |
| IS_GEN_PARAMS | = lv_is_gen_params | |
| IV_LOGSYS | = lv_iv_logsys | |
| IF_FILTER_GSTRU | = lv_if_filter_gstru | |
| IF_KCGRP | = lv_if_kcgrp | |
| IF_DELETE_ALLOCATION | = lv_if_delete_allocation | |
| IF_DELETE_CHARACTER | = lv_if_delete_character | |
| IF_DELETE_AEMENGE | = lv_if_delete_aemenge | |
| IF_DATE_BEGIN | = lv_if_date_begin | |
| IMPORTING | ||
| EV_DONE | = lv_ev_done | |
| TABLES | ||
| IT_QTOBJ | = lt_it_qtobj | |
| IT_QTCHA | = lt_it_qtcha | |
| IT_QTTAB | = lt_it_qttab | |
| IT_QTOBJ_X | = lt_it_qtobj_x | |
| IT_QTCHA_X | = lt_it_qtcha_x | |
| IT_QTTAB_X | = lt_it_qttab_x | |
| EXTENSIONOUT | = lt_extensionout | |
| . " CIF_BGRFC_QUOTA_ALLOC_SEND | ||
ABAP code using 7.40 inline data declarations to call FM CIF_BGRFC_QUOTA_ALLOC_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.| "SELECT single DATUM FROM QUOT_PAR INTO @DATA(ld_if_date_end). | ||||
| "SELECT single GSTRU FROM CIF_IMGSTK INTO @DATA(ld_if_filter_gstru). | ||||
| "SELECT single KCGRP FROM QUOT_PAR INTO @DATA(ld_if_kcgrp). | ||||
| "SELECT single DEL_ALLOC FROM QUOT_PAR INTO @DATA(ld_if_delete_allocation). | ||||
| "SELECT single DEL_CHARC FROM QUOT_PAR INTO @DATA(ld_if_delete_character). | ||||
| "SELECT single DEL_AEMNG FROM QUOT_PAR INTO @DATA(ld_if_delete_aemenge). | ||||
| "SELECT single DATUM FROM QUOT_PAR INTO @DATA(ld_if_date_begin). | ||||
Search for further information about these or an SAP related objects