SAP BAPI_DOCUMENT_GETDETAIL Function Module for Determine Detail Data for a Document
BAPI_DOCUMENT_GETDETAIL is a standard bapi document getdetail SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Determine Detail Data for a Document processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for bapi document getdetail FM, simply by entering the name BAPI_DOCUMENT_GETDETAIL into the relevant SAP transaction such as SE37 or SE38.
Function Group: CVBAPI
Program Name: SAPLCVBAPI
Main Program: SAPLCVBAPI
Appliation area: M
Release date: 03-Jun-1998
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function BAPI_DOCUMENT_GETDETAIL pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'BAPI_DOCUMENT_GETDETAIL'"Determine Detail Data for a Document.
EXPORTING
DOCUMENTTYPE = "Document Type
DOCUMENTNUMBER = "Document Number
DOCUMENTPART = "Document Part
DOCUMENTVERSION = "Document Version
* GETOBJECTLINKS = ' ' "Read Object Links
* GETDESCRIPTIONS = ' ' "Read Descriptions
* GETSTATUSLOG = ' ' "Read Status Log
* GETLONGTEXTS = ' ' "Read Long Texts (All if GETDESCRIPTIONS = X)
* GETLINKDESCRIPTIONS = 'X' "Read Descriptions of Linked Objects
IMPORTING
DOCUMENTDATA = "Document Data
RETURN = "BAPI Return
TABLES
* OBJECTLINKS = "Object Links
* DOCUMENTDESCRIPTIONS = "Language-Dependent Descriptions
* LONGTEXTS = "Long Texts
* STATUSLOG = "Status Log
IMPORTING Parameters details for BAPI_DOCUMENT_GETDETAIL
DOCUMENTTYPE - Document Type
Data type: BAPI_DOC_AUX-DOCTYPEOptional: No
Call by Reference: No ( called with pass by value option)
DOCUMENTNUMBER - Document Number
Data type: BAPI_DOC_AUX-DOCNUMBEROptional: No
Call by Reference: No ( called with pass by value option)
DOCUMENTPART - Document Part
Data type: BAPI_DOC_AUX-DOCPARTOptional: No
Call by Reference: No ( called with pass by value option)
DOCUMENTVERSION - Document Version
Data type: BAPI_DOC_AUX-DOCVERSIONOptional: No
Call by Reference: No ( called with pass by value option)
GETOBJECTLINKS - Read Object Links
Data type: BAPI_DOC_AUX-FLAGDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
GETDESCRIPTIONS - Read Descriptions
Data type: BAPI_DOC_AUX-FLAGDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
GETSTATUSLOG - Read Status Log
Data type: BAPI_DOC_AUX-FLAGDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
GETLONGTEXTS - Read Long Texts (All if GETDESCRIPTIONS = X)
Data type: BAPI_DOC_AUX-FLAGDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
GETLINKDESCRIPTIONS - Read Descriptions of Linked Objects
Data type: BAPI_DOC_AUX-FLAGDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for BAPI_DOCUMENT_GETDETAIL
DOCUMENTDATA - Document Data
Data type: BAPI_DOC_DRAWOptional: No
Call by Reference: No ( called with pass by value option)
RETURN - BAPI Return
Data type: BAPIRET2Optional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for BAPI_DOCUMENT_GETDETAIL
OBJECTLINKS - Object Links
Data type: BAPI_DOC_DRADOptional: Yes
Call by Reference: No ( called with pass by value option)
DOCUMENTDESCRIPTIONS - Language-Dependent Descriptions
Data type: BAPI_DOC_DRATOptional: Yes
Call by Reference: No ( called with pass by value option)
LONGTEXTS - Long Texts
Data type: BAPI_DOC_TEXTOptional: Yes
Call by Reference: No ( called with pass by value option)
STATUSLOG - Status Log
Data type: BAPI_DOC_DRAPOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for BAPI_DOCUMENT_GETDETAIL Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lt_objectlinks | TYPE STANDARD TABLE OF BAPI_DOC_DRAD, " | |||
| lv_documentdata | TYPE BAPI_DOC_DRAW, " | |||
| lv_documenttype | TYPE BAPI_DOC_AUX-DOCTYPE, " | |||
| lv_return | TYPE BAPIRET2, " | |||
| lv_documentnumber | TYPE BAPI_DOC_AUX-DOCNUMBER, " | |||
| lt_documentdescriptions | TYPE STANDARD TABLE OF BAPI_DOC_DRAT, " | |||
| lt_longtexts | TYPE STANDARD TABLE OF BAPI_DOC_TEXT, " | |||
| lv_documentpart | TYPE BAPI_DOC_AUX-DOCPART, " | |||
| lt_statuslog | TYPE STANDARD TABLE OF BAPI_DOC_DRAP, " | |||
| lv_documentversion | TYPE BAPI_DOC_AUX-DOCVERSION, " | |||
| lv_getobjectlinks | TYPE BAPI_DOC_AUX-FLAG, " SPACE | |||
| lv_getdescriptions | TYPE BAPI_DOC_AUX-FLAG, " SPACE | |||
| lv_getstatuslog | TYPE BAPI_DOC_AUX-FLAG, " SPACE | |||
| lv_getlongtexts | TYPE BAPI_DOC_AUX-FLAG, " SPACE | |||
| lv_getlinkdescriptions | TYPE BAPI_DOC_AUX-FLAG. " 'X' |
|   CALL FUNCTION 'BAPI_DOCUMENT_GETDETAIL' "Determine Detail Data for a Document |
| EXPORTING | ||
| DOCUMENTTYPE | = lv_documenttype | |
| DOCUMENTNUMBER | = lv_documentnumber | |
| DOCUMENTPART | = lv_documentpart | |
| DOCUMENTVERSION | = lv_documentversion | |
| GETOBJECTLINKS | = lv_getobjectlinks | |
| GETDESCRIPTIONS | = lv_getdescriptions | |
| GETSTATUSLOG | = lv_getstatuslog | |
| GETLONGTEXTS | = lv_getlongtexts | |
| GETLINKDESCRIPTIONS | = lv_getlinkdescriptions | |
| IMPORTING | ||
| DOCUMENTDATA | = lv_documentdata | |
| RETURN | = lv_return | |
| TABLES | ||
| OBJECTLINKS | = lt_objectlinks | |
| DOCUMENTDESCRIPTIONS | = lt_documentdescriptions | |
| LONGTEXTS | = lt_longtexts | |
| STATUSLOG | = lt_statuslog | |
| . " BAPI_DOCUMENT_GETDETAIL | ||
ABAP code using 7.40 inline data declarations to call FM BAPI_DOCUMENT_GETDETAIL
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| "SELECT single DOCTYPE FROM BAPI_DOC_AUX INTO @DATA(ld_documenttype). | ||||
| "SELECT single DOCNUMBER FROM BAPI_DOC_AUX INTO @DATA(ld_documentnumber). | ||||
| "SELECT single DOCPART FROM BAPI_DOC_AUX INTO @DATA(ld_documentpart). | ||||
| "SELECT single DOCVERSION FROM BAPI_DOC_AUX INTO @DATA(ld_documentversion). | ||||
| "SELECT single FLAG FROM BAPI_DOC_AUX INTO @DATA(ld_getobjectlinks). | ||||
| DATA(ld_getobjectlinks) | = ' '. | |||
| "SELECT single FLAG FROM BAPI_DOC_AUX INTO @DATA(ld_getdescriptions). | ||||
| DATA(ld_getdescriptions) | = ' '. | |||
| "SELECT single FLAG FROM BAPI_DOC_AUX INTO @DATA(ld_getstatuslog). | ||||
| DATA(ld_getstatuslog) | = ' '. | |||
| "SELECT single FLAG FROM BAPI_DOC_AUX INTO @DATA(ld_getlongtexts). | ||||
| DATA(ld_getlongtexts) | = ' '. | |||
| "SELECT single FLAG FROM BAPI_DOC_AUX INTO @DATA(ld_getlinkdescriptions). | ||||
| DATA(ld_getlinkdescriptions) | = 'X'. | |||
Search for further information about these or an SAP related objects