PRODUCT_INTO_PARAMETER SAP Method Convert load into customer parameter value
Below is documentation, parameters and attributes of ABAP Method PRODUCT_INTO_PARAMETER within SAP class /SCA/IF_EX_TLB_EXT. 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 /SCA/IF_EX_TLB_EXT 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 PRODUCT_INTO_PARAMETER can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method PRODUCT_INTO_PARAMETER
.| Name | Type | Data Type | Description | Default Value |
| IO_TLB_EXCEPTION | Importing | TYPE REF TO /SCA/CL_TLB_EXCEPTION | TLB exception handling | |
| IO_TLB_PARAM_CALC | Importing | TYPE REF TO /SCA/CL_TLB_PARAM_CALC | TLB Parameter Calculation | |
| IS_EXACT_OBJECT | Importing | TYPE /SCA/TLB_QUANTITY_ATTR_STR | Object for exact parameter values for remain. cap. calc. | |
| IT_LOAD | Importing | TYPE /SCA/TLB_QUANTITY_TAB | TLB: Load of one transporation unit | |
| IV_PARAID | Importing | TYPE /SCMB/VT_PARAID | TLB: Parameter ID for rule definitions | |
| IV_PARAUNIT | Importing | TYPE /SCMB/MDL_UNIT | Unit of requested parameter value | |
| IV_TTYPE | Importing | TYPE /SCMB/MDL_TTYPE | Means of Transportation | |
| IV_VRSIOID | Importing | TYPE /SCMB/MDL_VRSIOID | Name of Planning Version | |
| EV_BADI_ACTIVE | Exporting | TYPE FLAG | BADI is active for this parameter | |
| EV_PARAVAL | Exporting | TYPE /SCA/TLB_PARAVAL | TLB: Parameter value |
Exceptions of Method PRODUCT_INTO_PARAMETER
/SCA/CX_TLB - TLB exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /SCA/IF_EX_TLB_EXT.
DATA: lv_EV_BADI_ACTIVE TYPE FLAG,
lv_EV_PARAVAL TYPE /SCA/TLB_PARAVAL,
lv_IO_TLB_EXCEPTION TYPE /SCA/CL_TLB_EXCEPTION,
lv_IO_TLB_PARAM_CALC TYPE /SCA/CL_TLB_PARAM_CALC,
lv_IS_EXACT_OBJECT TYPE /SCA/TLB_QUANTITY_ATTR_STR,
lv_IT_LOAD TYPE /SCA/TLB_QUANTITY_TAB,
lv_IV_PARAID TYPE /SCMB/VT_PARAID,
lv_IV_PARAUNIT TYPE /SCMB/MDL_UNIT,
lv_IV_TTYPE TYPE /SCMB/MDL_TTYPE,
lv_IV_VRSIOID TYPE /SCMB/MDL_VRSIOID,
lv_other TYPE c.
CALL METHOD lo_class=>PRODUCT_INTO_PARAMETER(
EXPORTING
IO_TLB_EXCEPTION = lv_IO_TLB_EXCEPTION
IO_TLB_PARAM_CALC = lv_IO_TLB_PARAM_CALC
IS_EXACT_OBJECT = lv_IS_EXACT_OBJECT
IT_LOAD = lv_IT_LOAD
IV_PARAID = lv_IV_PARAID
IV_PARAUNIT = lv_IV_PARAUNIT
IV_TTYPE = lv_IV_TTYPE
IV_VRSIOID = lv_IV_VRSIOID
IMPORTING
EV_BADI_ACTIVE = lv_EV_BADI_ACTIVE
EV_PARAVAL = lv_EV_PARAVAL ).
Links to Related Class(s)
/SCA/IF_...Full list of available SAP object classes
Search for further information about these or an SAP related objects