GET_DOC_INFO SAP Method Returns Material Document Number for External Reference









Below is documentation, parameters and attributes of ABAP Method GET_DOC_INFO 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 directly

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

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


Parameters of Method GET_DOC_INFO

.

NameTypeData TypeDescriptionDefault Value
IT_MAT_DOCImportingTYPE
/ISDFPS/TT_PE_MAT_RESULT
IV_BUDATImportingTYPE
BUDAT
Posting Date in the Document
RT_DOC_REFReturningTYPE
/ISDFPS/TT_DOC_REF



Exceptions of Method GET_DOC_INFO

This method does not have any exceptions

Example ABAP coding


DATA: lv_IT_MAT_DOC TYPE /ISDFPS/TT_PE_MAT_RESULT,
lv_IV_BUDAT TYPE BUDAT,
lv_RT_DOC_REF TYPE /ISDFPS/TT_DOC_REF,
lv_other TYPE c.

CALL METHOD /ISDFPS/CL_GAF_PERSEQUI=>GET_DOC_INFO(
EXPORTING
IT_MAT_DOC = lv_IT_MAT_DOC
IV_BUDAT = lv_IV_BUDAT
RECEIVING
RT_DOC_REF = lv_RT_DOC_REF )



"Alternate coding for Method Call with returning parameter
lv_RT_DOC_REF = /ISDFPS/CL_GAF_PERSEQUI=>GET_DOC_INFO(
EXPORTING
IT_MAT_DOC = lv_IT_MAT_DOC
IV_BUDAT = lv_IV_BUDAT ).

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!