GET_SELCRIT_ID_POSTFIX SAP Method Get postfix for a copied or user defined Selection Criterion









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

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


Parameters of Method GET_SELCRIT_ID_POSTFIX

.

NameTypeData TypeDescriptionDefault Value
IT_SELCRITImportingTYPE
/BCV/T_CFG_QUERY_SELCRIT
Query Selection Criterion Table in BCV Configuration Center
IV_SELCRID_MAXImportingTYPE
/BCV/QRM_CRITERION_ID
Maximum Selection Criterion ID
EV_SELCRIT_IDExportingTYPE
/BCV/QRM_CRITERION_ID
Query Selection Criterion ID



Exceptions of Method GET_SELCRIT_ID_POSTFIX

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /BCV/CL_CFG_CENTER_ASSISTANCE.
DATA: lv_EV_SELCRIT_ID TYPE /BCV/QRM_CRITERION_ID,
lv_IT_SELCRIT TYPE /BCV/T_CFG_QUERY_SELCRIT,
lv_IV_SELCRID_MAX TYPE /BCV/QRM_CRITERION_ID,
lv_other TYPE c.

CALL METHOD lo_class=>GET_SELCRIT_ID_POSTFIX(
EXPORTING
IT_SELCRIT = lv_IT_SELCRIT
IV_SELCRID_MAX = lv_IV_SELCRID_MAX
IMPORTING
EV_SELCRIT_ID = lv_EV_SELCRIT_ID ).

Links to Related Class(s)

/BCV/CL_...
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!