TOP_EQUI_IDENT SAP Method Identifies top equipment from CC point of view









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

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


Parameters of Method TOP_EQUI_IDENT

.

NameTypeData TypeDescriptionDefault Value
IV_EQUNRImportingTYPE
EQUNR
Equipment Number
IV_MATNRImportingTYPE
MATNR
Material Number
IV_SERNRImportingTYPE
GERNR
Serial number
EV_TOP_EQUNRExportingTYPE
EQUNR
Equipment Number



Exceptions of Method TOP_EQUI_IDENT

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_BADI_PHIN_DATA_PREPARE.
DATA: lv_EV_TOP_EQUNR TYPE EQUNR,
lv_IV_EQUNR TYPE EQUNR,
lv_IV_MATNR TYPE MATNR,
lv_IV_SERNR TYPE GERNR,
lv_other TYPE c.

CALL METHOD lo_class=>TOP_EQUI_IDENT(
EXPORTING
IV_EQUNR = lv_IV_EQUNR
IV_MATNR = lv_IV_MATNR
IV_SERNR = lv_IV_SERNR
IMPORTING
EV_TOP_EQUNR = lv_EV_TOP_EQUNR ).

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!