GET_PRODUCT_SCM SAP Method Determines the Product
Below is documentation, parameters and attributes of ABAP Method GET_PRODUCT_SCM within SAP class /SCMB/IF_EX_SCR_BIF_CONVERT. 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 /SCMB/IF_EX_SCR_BIF_CONVERT 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_PRODUCT_SCM can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_PRODUCT_SCM
.| Name | Type | Data Type | Description | Default Value |
| IO_BO | Importing | TYPE REF TO /SCMB/CL_SCR_BO | Business Object in Supply Chain Analytical Tools | |
| IS_BTD_PRODUCT | Importing | TYPE /SCMB/SCR_BIF_BTD_PROD | Proxy Structure (Generated) | |
| IV_PROD_LOGQS | Importing | TYPE /SCMB/MDL_LOGQS | Business System Group | |
| IV_PROD_LOGSYS | Importing | TYPE /SCMB/MDL_LOGSYS | Logical System | |
| IV_PROD_PARTY_ID | Importing | TYPE /SCMB/SCR_BIF_PROD_PARTY_ID | Proxy Data Element (Generated) | |
| EV_PROD_EXTID | Exporting | TYPE /SCMB/SCR_AO_PROD_EXTID | Product |
Exceptions of Method GET_PRODUCT_SCM
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /SCMB/IF_EX_SCR_BIF_CONVERT.
DATA: lv_EV_PROD_EXTID TYPE /SCMB/SCR_AO_PROD_EXTID,
lv_IO_BO TYPE /SCMB/CL_SCR_BO,
lv_IS_BTD_PRODUCT TYPE /SCMB/SCR_BIF_BTD_PROD,
lv_IV_PROD_LOGQS TYPE /SCMB/MDL_LOGQS,
lv_IV_PROD_LOGSYS TYPE /SCMB/MDL_LOGSYS,
lv_IV_PROD_PARTY_ID TYPE /SCMB/SCR_BIF_PROD_PARTY_ID,
lv_other TYPE c.
CALL METHOD lo_class=>GET_PRODUCT_SCM(
EXPORTING
IO_BO = lv_IO_BO
IS_BTD_PRODUCT = lv_IS_BTD_PRODUCT
IV_PROD_LOGQS = lv_IV_PROD_LOGQS
IV_PROD_LOGSYS = lv_IV_PROD_LOGSYS
IV_PROD_PARTY_ID = lv_IV_PROD_PARTY_ID
IMPORTING
EV_PROD_EXTID = lv_EV_PROD_EXTID ).
Links to Related Class(s)
/SCMB/IF...Full list of available SAP object classes
Search for further information about these or an SAP related objects