MOVE_RANGES_TO_WHERE_FOR_TABLE SAP Method Link Together WHERE - Conditions









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

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


Parameters of Method MOVE_RANGES_TO_WHERE_FOR_TABLE

.

NameTypeData TypeDescriptionDefault Value
IV_TABNAMEImportingTYPE
STRING
Table Name for CASE
IV_WHEREImportingTYPE
STRING
Start value
RV_RETURNReturningTYPE
STRING
Start Value && ' AND ' ...



Exceptions of Method MOVE_RANGES_TO_WHERE_FOR_TABLE

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /FMP/CA_MP_PRICE_HISTORY.
DATA: lv_IV_TABNAME TYPE STRING,
lv_IV_WHERE TYPE STRING,
lv_RV_RETURN TYPE STRING,
lv_other TYPE c.

CALL METHOD lo_class=>MOVE_RANGES_TO_WHERE_FOR_TABLE(
EXPORTING
IV_TABNAME = lv_IV_TABNAME
IV_WHERE = lv_IV_WHERE
RECEIVING
RV_RETURN = lv_RV_RETURN )



"Alternate coding for Method Call with returning parameter
lv_RV_RETURN = lo_class=>MOVE_RANGES_TO_WHERE_FOR_TABLE(
EXPORTING
IV_TABNAME = lv_IV_TABNAME
IV_WHERE = lv_IV_WHERE ).

Links to Related Class(s)

/FMP/CA_...
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!