FM_FMAC_DERIVE_SPECIFIC SAP Method Derive specific data for transfer FM to AC









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

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


Parameters of Method FM_FMAC_DERIVE_SPECIFIC

.

NameTypeData TypeDescriptionDefault Value
I_FLAG_SELECT_ON_ITEMImportingTYPE
FMDY-XFELD
Info if select on FMIOI
I_FM_DATA_INImportingTYPE
FMIOI
Import with FM item data info
E_FM_DATA_OUTExportingTYPE
FMIOI
Export derived FM item data info



Exceptions of Method FM_FMAC_DERIVE_SPECIFIC

E_FM_DATA_OUTExportingTYPE
FMIOIExport derived FM item data infoSKIP_RECORD - Skip current record due to error or special functionality

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_BADI_FM_FM2AC.
DATA: lv_E_FM_DATA_OUT TYPE FMIOI,
lv_I_FLAG_SELECT_ON_ITEM TYPE FMDY-XFELD,
lv_I_FM_DATA_IN TYPE FMIOI,
lv_other TYPE c.

CALL METHOD lo_class=>FM_FMAC_DERIVE_SPECIFIC(
EXPORTING
I_FLAG_SELECT_ON_ITEM = lv_I_FLAG_SELECT_ON_ITEM
I_FM_DATA_IN = lv_I_FM_DATA_IN
IMPORTING
E_FM_DATA_OUT = lv_E_FM_DATA_OUT ).

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!