GET_COMPARE_STOCK SAP Method Get Comparison Stock for Srv. Priority Calc.
Below is documentation, parameters and attributes of ABAP Method GET_COMPARE_STOCK within SAP class IF_EX_BADI_DIROT_USVPRIO. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name IF_EX_BADI_DIROT_USVPRIO into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method GET_COMPARE_STOCK can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_COMPARE_STOCK
.| Name | Type | Data Type | Description | Default Value |
| I_CAUFVD | Importing | TYPE CAUFVD | Dialog Structure for Order Headers and Items | |
| I_LGGRP | Importing | TYPE ADPMWHGRPHD-LGGRP | Inventory Group ID (Rotable Control) | |
| I_MATNR | Importing | TYPE MATNR | Material Number | |
| I_PRF | Importing | TYPE ADPMPRIOPRF | CMC Profile | |
| I_WERKS | Importing | TYPE WERKS_D | Plant Table for National (Centrally Agreed) Contracts | |
| E_CMPSTKQYT | Changing | TYPE LGORT-LABST | Valuated Stock with Unrestricted Use | |
| E_RC | Changing | TYPE SY-SUBRC | Return value, return value after ABAP statements |
Exceptions of Method GET_COMPARE_STOCK
INTERNAL_ERROR - internal errorExample ABAP coding
DATA: lo_class TYPE REF TO IF_EX_BADI_DIROT_USVPRIO.
DATA: lv_E_CMPSTKQYT TYPE LGORT-LABST,
lv_E_RC TYPE SY-SUBRC,
lv_I_CAUFVD TYPE CAUFVD,
lv_I_LGGRP TYPE ADPMWHGRPHD-LGGRP,
lv_I_MATNR TYPE MATNR,
lv_I_PRF TYPE ADPMPRIOPRF,
lv_I_WERKS TYPE WERKS_D,
lv_other TYPE c.
CALL METHOD lo_class=>GET_COMPARE_STOCK(
EXPORTING
I_CAUFVD = lv_I_CAUFVD
I_LGGRP = lv_I_LGGRP
I_MATNR = lv_I_MATNR
I_PRF = lv_I_PRF
I_WERKS = lv_I_WERKS
CHANGING
E_CMPSTKQYT = lv_E_CMPSTKQYT
E_RC = lv_E_RC ).
Links to Related Class(s)
IF_EX_BA...Full list of available SAP object classes
Search for further information about these or an SAP related objects