DO_SELECTION_FORCEROTH SAP Method Read Other Relationships
Below is documentation, parameters and attributes of ABAP Method DO_SELECTION_FORCEROTH within SAP class /ISDFPS/CL_EXT_RELAT. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name /ISDFPS/CL_EXT_RELAT 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 DO_SELECTION_FORCEROTH can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method DO_SELECTION_FORCEROTH
.| Name | Type | Data Type | Description | Default Value |
| IO_SEL_CONDITION | Importing | TYPE REF TO CL_HRBAS_CONDITION | Condition When Reading Data | |
| IT_SEL_ISTAT_RANGE | Importing | TYPE TY_GT_RANGE_ISTAT | Selection Conditions for ISTAT | |
| IT_SEL_OBJECTS_EXT | Importing | TYPE HRTB_OBJKEYX | HR: Enhanced Object Key | |
| IV_BUFFER_FLAG | Importing | TYPE CHAR1 | Single-Character Indicator | |
| IV_SEL_BEGDA | Importing | TYPE BEGDATUM | Start Date | |
| IV_SEL_ENDDA | Importing | TYPE ENDDATUM | End Date | |
| IV_SEL_ISTAT | Importing | TYPE ISTAT_D | Planning Status | |
| IV_SEL_MANDT | Importing | TYPE MANDT | Client | |
| IV_SEL_SUBTY | Importing | TYPE SUBTYP | Subtype | |
| ET_I1001 | Exporting | TYPE HRI1001_TAB | Table with Line Type HRI1001 | |
| EV_SKIP_CHECKS | Exporting | TYPE FLAG | General Indicator |
Exceptions of Method DO_SELECTION_FORCEROTH
DO_SELECTION_FORCEROTH_ERROR - Error Reading DataExample ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lo_class TYPE REF TO /ISDFPS/CL_EXT_RELAT.
DATA: lv_ET_I1001 TYPE HRI1001_TAB,
lv_EV_SKIP_CHECKS TYPE FLAG,
lv_IO_SEL_CONDITION TYPE CL_HRBAS_CONDITION,
lv_IT_SEL_ISTAT_RANGE TYPE TY_GT_RANGE_ISTAT,
lv_IT_SEL_OBJECTS_EXT TYPE HRTB_OBJKEYX,
lv_IV_BUFFER_FLAG TYPE CHAR1,
lv_IV_SEL_BEGDA TYPE BEGDATUM,
lv_IV_SEL_ENDDA TYPE ENDDATUM,
lv_IV_SEL_ISTAT TYPE ISTAT_D,
lv_IV_SEL_MANDT TYPE MANDT,
lv_IV_SEL_SUBTY TYPE SUBTYP,
lv_other TYPE c.
CALL METHOD lo_class=>DO_SELECTION_FORCEROTH(
EXPORTING
IO_SEL_CONDITION = lv_IO_SEL_CONDITION
IT_SEL_ISTAT_RANGE = lv_IT_SEL_ISTAT_RANGE
IT_SEL_OBJECTS_EXT = lv_IT_SEL_OBJECTS_EXT
IV_BUFFER_FLAG = lv_IV_BUFFER_FLAG
IV_SEL_BEGDA = lv_IV_SEL_BEGDA
IV_SEL_ENDDA = lv_IV_SEL_ENDDA
IV_SEL_ISTAT = lv_IV_SEL_ISTAT
IV_SEL_MANDT = lv_IV_SEL_MANDT
IV_SEL_SUBTY = lv_IV_SEL_SUBTY
IMPORTING
ET_I1001 = lv_ET_I1001
EV_SKIP_CHECKS = lv_EV_SKIP_CHECKS ).
Links to Related Class(s)
/ISDFPS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects