READ_WBS_F_ISSUE_DOC SAP Method Provides WBS Element from Material Document
Below is documentation, parameters and attributes of ABAP Method READ_WBS_F_ISSUE_DOC 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 READ_WBS_F_ISSUE_DOC can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method READ_WBS_F_ISSUE_DOC
.| Name | Type | Data Type | Description | Default Value |
| IV_MBLNR | Importing | TYPE MBLNR | Number of Material Document | |
| IV_ZEILE | Importing | TYPE MBLPO | Item in Material Document | |
| RV_MAT_PSPNR | Returning | TYPE MAT_PSPNR | Valuated Sales Order Stock WBS Element |
Exceptions of Method READ_WBS_F_ISSUE_DOC
This method does not have any exceptionsExample ABAP coding
DATA: lv_IV_MBLNR TYPE MBLNR,
lv_IV_ZEILE TYPE MBLPO,
lv_RV_MAT_PSPNR TYPE MAT_PSPNR,
lv_other TYPE c.
CALL METHOD /ISDFPS/CL_GAF_PERSEQUI=>READ_WBS_F_ISSUE_DOC(
EXPORTING
IV_MBLNR = lv_IV_MBLNR
IV_ZEILE = lv_IV_ZEILE
RECEIVING
RV_MAT_PSPNR = lv_RV_MAT_PSPNR )
"Alternate coding for Method Call with returning parameter
lv_RV_MAT_PSPNR = /ISDFPS/CL_GAF_PERSEQUI=>READ_WBS_F_ISSUE_DOC(
EXPORTING
IV_MBLNR = lv_IV_MBLNR
IV_ZEILE = lv_IV_ZEILE ).
Links to Related Class(s)
/ISDFPS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects