CHECK_STLOC_AND_FE SAP Method Check Storage Location and Force Element
Below is documentation, parameters and attributes of ABAP Method CHECK_STLOC_AND_FE within SAP class /ISDFPS/CL_GAF_PERSEQUI. 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_GAF_PERSEQUI 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 directlyThe following technical details of method CHECK_STLOC_AND_FE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CHECK_STLOC_AND_FE
.| Name | Type | Data Type | Description | Default Value |
| IV_FORCE_NEW | Importing | TYPE XFLAG | New Force Element | |
| IV_LGORT | Importing | TYPE LGORT_D | Storage Location | |
| IV_OBJID | Importing | TYPE HROBJID | Object ID | |
| IV_STLOC_NEW | Importing | TYPE XFLAG | New Storage Location | |
| IV_WERKS | Importing | TYPE WERKS_D | Plant | |
| EV_LGORT | Exporting | TYPE LGORT_D | Storage Location | |
| EV_OBJID | Exporting | TYPE HROBJID | Object ID |
Exceptions of Method CHECK_STLOC_AND_FE
LGORT_D
HROBJID
Example ABAP coding
DATA: lv_EV_LGORT TYPE LGORT_D,
lv_EV_OBJID TYPE HROBJID,
lv_IV_FORCE_NEW TYPE XFLAG,
lv_IV_LGORT TYPE LGORT_D,
lv_IV_OBJID TYPE HROBJID,
lv_IV_STLOC_NEW TYPE XFLAG,
lv_IV_WERKS TYPE WERKS_D,
lv_other TYPE c.
CALL METHOD /ISDFPS/CL_GAF_PERSEQUI=>CHECK_STLOC_AND_FE(
EXPORTING
IV_FORCE_NEW = lv_IV_FORCE_NEW
IV_LGORT = lv_IV_LGORT
IV_OBJID = lv_IV_OBJID
IV_STLOC_NEW = lv_IV_STLOC_NEW
IV_WERKS = lv_IV_WERKS
IMPORTING
EV_LGORT = lv_EV_LGORT
EV_OBJID = lv_EV_OBJID ).
Links to Related Class(s)
/ISDFPS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects