SAP QUOTA_VECTOR_CALC Function Module for NOTRANSL: PLAN: Verrechung der Kontingentbelegung in Zeitintervall für fle
QUOTA_VECTOR_CALC is a standard quota vector calc 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: PLAN: Verrechung der Kontingentbelegung in Zeitintervall für fle 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 quota vector calc FM, simply by entering the name QUOTA_VECTOR_CALC into the relevant SAP transaction such as SE37 or SE38.
Function Group: QUOT
Program Name: SAPLQUOT
Main Program: SAPLQUOT
Appliation area: V
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function QUOTA_VECTOR_CALC 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 'QUOTA_VECTOR_CALC'"NOTRANSL: PLAN: Verrechung der Kontingentbelegung in Zeitintervall für fle.
EXPORTING
LINE_KCQTY = "
LINE_AEMENGE = "
LINE_KLTBK = "
T_T445M = "
TABLES
T_COLS_INDEX = "
T_TAB = "
T_TAB_OLD = "
T_COLS = "
Customer Function user exits
Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.EXIT_SAPLQUOT_001 User Exit: SD Product Allocation, Enhanced Checks
EXIT_SAPLQUOT_002 User exit: SD Product Allocation, Change Schedule Line
EXIT_SAPLQUOT_003 User Exit: SD Product Allocation, Extended Checks (ATP)
EXIT_SAPLQUOT_004 Product Allocations: Change the Product Allocation Steps
EXIT_SAPLQUOT_005 User Exit: SD Product Allocation, Change Product Allocation
IMPORTING Parameters details for QUOTA_VECTOR_CALC
LINE_KCQTY -
Data type: MXSOP-ZOptional: No
Call by Reference: No ( called with pass by value option)
LINE_AEMENGE -
Data type: MXSOP-ZOptional: No
Call by Reference: No ( called with pass by value option)
LINE_KLTBK -
Data type: MXSOP-ZOptional: No
Call by Reference: No ( called with pass by value option)
T_T445M -
Data type: MCP6_MAKROOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for QUOTA_VECTOR_CALC
T_COLS_INDEX -
Data type: PGCOLSOptional: No
Call by Reference: No ( called with pass by value option)
T_TAB -
Data type: MXSOPOptional: No
Call by Reference: No ( called with pass by value option)
T_TAB_OLD -
Data type: MXSOPOptional: No
Call by Reference: No ( called with pass by value option)
T_COLS -
Data type: VESOPOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for QUOTA_VECTOR_CALC 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_line_kcqty | TYPE MXSOP-Z, " | |||
| lt_t_cols_index | TYPE STANDARD TABLE OF PGCOLS, " | |||
| lt_t_tab | TYPE STANDARD TABLE OF MXSOP, " | |||
| lv_line_aemenge | TYPE MXSOP-Z, " | |||
| lt_t_tab_old | TYPE STANDARD TABLE OF MXSOP, " | |||
| lv_line_kltbk | TYPE MXSOP-Z, " | |||
| lt_t_cols | TYPE STANDARD TABLE OF VESOP, " | |||
| lv_t_t445m | TYPE MCP6_MAKRO. " |
|   CALL FUNCTION 'QUOTA_VECTOR_CALC' "NOTRANSL: PLAN: Verrechung der Kontingentbelegung in Zeitintervall für fle |
| EXPORTING | ||
| LINE_KCQTY | = lv_line_kcqty | |
| LINE_AEMENGE | = lv_line_aemenge | |
| LINE_KLTBK | = lv_line_kltbk | |
| T_T445M | = lv_t_t445m | |
| TABLES | ||
| T_COLS_INDEX | = lt_t_cols_index | |
| T_TAB | = lt_t_tab | |
| T_TAB_OLD | = lt_t_tab_old | |
| T_COLS | = lt_t_cols | |
| . " QUOTA_VECTOR_CALC | ||
ABAP code using 7.40 inline data declarations to call FM QUOTA_VECTOR_CALC
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 Z FROM MXSOP INTO @DATA(ld_line_kcqty). | ||||
| "SELECT single Z FROM MXSOP INTO @DATA(ld_line_aemenge). | ||||
| "SELECT single Z FROM MXSOP INTO @DATA(ld_line_kltbk). | ||||
Search for further information about these or an SAP related objects