FORCEREPA_READ SAP Method Read a FORCEREPA Relationship









Below is documentation, parameters and attributes of ABAP Method FORCEREPA_READ within SAP class /ISDFPS/CL_FORCEREPA. 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 /ISDFPS/CL_FORCEREPA into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Static

This is a Static Method so you can call it directly

The following technical details of method FORCEREPA_READ can also be found below:

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


Parameters of Method FORCEREPA_READ

.

NameTypeData TypeDescriptionDefault Value
IS_FORCERDATImportingTYPE
/ISDFPS/FORCERDAT
Time Attributes of the Relationships
IS_FORCERIDImportingTYPE
/ISDFPS/FORCERID
IDs of Force Elements
IS_FORCERID_HRImportingTYPE
/ISDFPS/FORCERID_HR
IDs of the Assignments of iPPE Nodes to HR
IT_STATUSImportingTYPE
/ISDFPS/ASSIGNSTAT_TAB
Table Type for Assignment Status
IV_MSG_OPTImportingTYPE
C
Message Option
ET_FORCERDELExportingTYPE
/ISDFPS/FORDEL_TAB
Planned Delimitation and Deletion Operations
ET_FORCEREPAExportingTYPE
/ISDFPS/FOREPA_TAB
Attributes of the FE-EPA relationship
ET_FORCERIDExportingTYPE
/ISDFPS/FORCERID_TAB
IDs of Force Elements
ET_FORCERID_HRExportingTYPE
/ISDFPS/FORCERID_HR_TAB
IDs of the HR Objects



Exceptions of Method FORCEREPA_READ

ET_FORCERDELExportingTYPE
/ISDFPS/FORDEL_TABPlanned Delimitation and Deletion OperationsET_FORCEREPAExportingTYPE
/ISDFPS/FOREPA_TABAttributes of the FE-EPA relationshipET_FORCERIDExportingTYPE
/ISDFPS/FORCERID_TABIDs of Force ElementsET_FORCERID_HRExportingTYPE
/ISDFPS/FORCERID_HR_TABIDs of the HR ObjectsFORCEREPA_READ_ERROR - Error reading data

Example ABAP coding


DATA: lv_ET_FORCERDEL TYPE /ISDFPS/FORDEL_TAB,
lv_ET_FORCEREPA TYPE /ISDFPS/FOREPA_TAB,
lv_ET_FORCERID TYPE /ISDFPS/FORCERID_TAB,
lv_ET_FORCERID_HR TYPE /ISDFPS/FORCERID_HR_TAB,
lv_IS_FORCERDAT TYPE /ISDFPS/FORCERDAT,
lv_IS_FORCERID TYPE /ISDFPS/FORCERID,
lv_IS_FORCERID_HR TYPE /ISDFPS/FORCERID_HR,
lv_IT_STATUS TYPE /ISDFPS/ASSIGNSTAT_TAB,
lv_IV_MSG_OPT TYPE C,
lv_other TYPE c.

CALL METHOD /ISDFPS/CL_FORCEREPA=>FORCEREPA_READ(
EXPORTING
IS_FORCERDAT = lv_IS_FORCERDAT
IS_FORCERID = lv_IS_FORCERID
IS_FORCERID_HR = lv_IS_FORCERID_HR
IT_STATUS = lv_IT_STATUS
IV_MSG_OPT = lv_IV_MSG_OPT
IMPORTING
ET_FORCERDEL = lv_ET_FORCERDEL
ET_FORCEREPA = lv_ET_FORCEREPA
ET_FORCERID = lv_ET_FORCERID
ET_FORCERID_HR = lv_ET_FORCERID_HR ).

Links to Related Class(s)

/ISDFPS/...
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!