EVT_MD_CREATE_BY_DIALOG SAP Method Create/Change/Display Reporting Master Record in Dialog









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

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


Parameters of Method EVT_MD_CREATE_BY_DIALOG

.

NameTypeData TypeDescriptionDefault Value
IM_ASSET_NOImportingTYPE
RANL
Contract Number
IM_COMPANY_CODEImportingTYPE
BUKRS
Company Code
IM_MODEImportingTYPE
CHAR3
Edit Mode
IM_PRODUCT_CATEGORYImportingTYPE
SANLF
Product Category
IM_PRODUCT_TYPEImportingTYPE
VVSART
Product Type
IS_DFLT_DATAImportingTYPE
ANY
Additional default data
EX_FLG_CHANGEDExportingTYPE
CHAR1
Data rec. changed
EX_FLG_ERRORExportingTYPE
CHAR1
Error Y/N
EX_TAB_MESSAGEExportingTYPE
BAL_T_MSG
Application Log: Table with Messages



Exceptions of Method EVT_MD_CREATE_BY_DIALOG

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_BADI_FVD_BAFIN_SR.
DATA: lv_EX_FLG_CHANGED TYPE CHAR1,
lv_EX_FLG_ERROR TYPE CHAR1,
lv_EX_TAB_MESSAGE TYPE BAL_T_MSG,
lv_IM_ASSET_NO TYPE RANL,
lv_IM_COMPANY_CODE TYPE BUKRS,
lv_IM_MODE TYPE CHAR3,
lv_IM_PRODUCT_CATEGORY TYPE SANLF,
lv_IM_PRODUCT_TYPE TYPE VVSART,
lv_IS_DFLT_DATA TYPE ANY,
lv_other TYPE c.

CALL METHOD lo_class=>EVT_MD_CREATE_BY_DIALOG(
EXPORTING
IM_ASSET_NO = lv_IM_ASSET_NO
IM_COMPANY_CODE = lv_IM_COMPANY_CODE
IM_MODE = lv_IM_MODE
IM_PRODUCT_CATEGORY = lv_IM_PRODUCT_CATEGORY
IM_PRODUCT_TYPE = lv_IM_PRODUCT_TYPE
IS_DFLT_DATA = lv_IS_DFLT_DATA
IMPORTING
EX_FLG_CHANGED = lv_EX_FLG_CHANGED
EX_FLG_ERROR = lv_EX_FLG_ERROR
EX_TAB_MESSAGE = lv_EX_TAB_MESSAGE ).

Links to Related Class(s)

IF_BADI_...
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!