METHOD_PACKING_MAT SAP Method Reduction of or Indiv. Determin. of Allowed Pckg. Matl Types









Below is documentation, parameters and attributes of ABAP Method METHOD_PACKING_MAT within SAP class IF_EX_BADI_HU_ALWD_PM. 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_HU_ALWD_PM 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 METHOD_PACKING_MAT can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method METHOD_PACKING_MAT

.

NameTypeData TypeDescriptionDefault Value
IT_MATNRImportingTYPE
V_MATNR_HU_T
Materials for which Packaging Materials are To Be Found
ES_MATNRExportingTYPE
V_MATNR_HU
Allowed Packaging Materials
CF_DIALOGChangingTYPE
XFELD
Dialog Box with Allowed Packaging Materials
CT_PMTYPEChangingTYPE
TERVH_T
Table Type for Allowed Packaging Material Types



Exceptions of Method METHOD_PACKING_MAT

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_BADI_HU_ALWD_PM.
DATA: lv_CF_DIALOG TYPE XFELD,
lv_CT_PMTYPE TYPE TERVH_T,
lv_ES_MATNR TYPE V_MATNR_HU,
lv_IT_MATNR TYPE V_MATNR_HU_T,
lv_other TYPE c.

CALL METHOD lo_class=>METHOD_PACKING_MAT(
EXPORTING
IT_MATNR = lv_IT_MATNR
IMPORTING
ES_MATNR = lv_ES_MATNR
CHANGING
CF_DIALOG = lv_CF_DIALOG
CT_PMTYPE = lv_CT_PMTYPE ).

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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!