GET_SHMETHDIFF SAP Method Determines Initial Values for VICASHFVALUES-SHMETHDIFF









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

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


Parameters of Method GET_SHMETHDIFF

.

NameTypeData TypeDescriptionDefault Value
FLT_VALImportingTYPE
RECASHMETH
BAdI Filter Value: Name of Search Method
ID_CONTEXTImportingTYPE
STRING
Context (Such As First Part of Key) for Search Field
IO_REF_OBJImportingTYPE REF TO
IF_RECA_OBJECT
Real Estate Object from Context of Which Search Was Started
IS_SHFIELDImportingTYPE
RECAC_SEARCH_FIELD_X
Detail Data on Search Field
IS_SHSTRATImportingTYPE
RECA_SEARCH_STRATEGY_DETAIL
Detail Data on Search Strategy
CD_DEFAULT_VALUEChangingTYPE
RECA_SEARCH_VALUES-KEY
Value for SMETHDIFF, from Which Default Value Comes
CF_OTHER_VALUES_ALLOWEDChangingTYPE
RECASHHASOTHERVALUES
T/F: Display Addit. Entry for Call of Standard F4 Help?
CT_VALUESChangingTYPE
RECA_T_SEARCH_VALUES
Fill KEY of Table with Value for SHMETHDIFF



Exceptions of Method GET_SHMETHDIFF

ERROR - Values could not be determined

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_RECA_SEARCH_METHOD.
DATA: lv_CD_DEFAULT_VALUE TYPE RECA_SEARCH_VALUES-KEY,
lv_CF_OTHER_VALUES_ALLOWED TYPE RECASHHASOTHERVALUES,
lv_CT_VALUES TYPE RECA_T_SEARCH_VALUES,
lv_FLT_VAL TYPE RECASHMETH,
lv_ID_CONTEXT TYPE STRING,
lv_IO_REF_OBJ TYPE IF_RECA_OBJECT,
lv_IS_SHFIELD TYPE RECAC_SEARCH_FIELD_X,
lv_IS_SHSTRAT TYPE RECA_SEARCH_STRATEGY_DETAIL,
lv_other TYPE c.

CALL METHOD lo_class=>GET_SHMETHDIFF(
EXPORTING
FLT_VAL = lv_FLT_VAL
ID_CONTEXT = lv_ID_CONTEXT
IO_REF_OBJ = lv_IO_REF_OBJ
IS_SHFIELD = lv_IS_SHFIELD
IS_SHSTRAT = lv_IS_SHSTRAT
CHANGING
CD_DEFAULT_VALUE = lv_CD_DEFAULT_VALUE
CF_OTHER_VALUES_ALLOWED = lv_CF_OTHER_VALUES_ALLOWED
CT_VALUES = lv_CT_VALUES ).

Links to Related Class(s)

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