SAP EASYDMS_GETDOCDEFAULTS Function Module for Get Default values for Document
EASYDMS_GETDOCDEFAULTS is a standard easydms getdocdefaults SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Get Default values for 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 easydms getdocdefaults FM, simply by entering the name EASYDMS_GETDOCDEFAULTS into the relevant SAP transaction such as SE37 or SE38.
Function Group: EASYDMS
Program Name: SAPLEASYDMS
Main Program: SAPLEASYDMS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function EASYDMS_GETDOCDEFAULTS 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 'EASYDMS_GETDOCDEFAULTS'"Get Default values for Document.
EXPORTING
* FOLDERDOCUMENT = "BAPIS DMS: document key
* DOCUMENTTYPE = "Document Type
* ISFOLDER = "CAD Indicator
IMPORTING
RETURN = "Return Parameter
DOCUMENTDATA = "BAPIS DMS: Document Data
TABLES
* CLASSALLOCATIONS = "BAPI structure for allocation of object to class
* CHARACTERISTICVALUES = "BAPI structure for characteristic value assignment
IMPORTING Parameters details for EASYDMS_GETDOCDEFAULTS
FOLDERDOCUMENT - BAPIS DMS: document key
Data type: BAPI_DOC_KEYSOptional: Yes
Call by Reference: No ( called with pass by value option)
DOCUMENTTYPE - Document Type
Data type: BAPI_DOC_DRAW2-DOCUMENTTYPEOptional: Yes
Call by Reference: No ( called with pass by value option)
ISFOLDER - CAD Indicator
Data type: BAPI_DOC_DRAW2-CADINDICATOROptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for EASYDMS_GETDOCDEFAULTS
RETURN - Return Parameter
Data type: BAPIRET2Optional: No
Call by Reference: No ( called with pass by value option)
DOCUMENTDATA - BAPIS DMS: Document Data
Data type: BAPI_DOC_DRAW2Optional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for EASYDMS_GETDOCDEFAULTS
CLASSALLOCATIONS - BAPI structure for allocation of object to class
Data type: BAPI_CLASS_ALLOCATIONOptional: Yes
Call by Reference: Yes
CHARACTERISTICVALUES - BAPI structure for characteristic value assignment
Data type: BAPI_CHARACTERISTIC_VALUESOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for EASYDMS_GETDOCDEFAULTS 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: | ||||
| lv_return | TYPE BAPIRET2, " | |||
| lv_folderdocument | TYPE BAPI_DOC_KEYS, " | |||
| lt_classallocations | TYPE STANDARD TABLE OF BAPI_CLASS_ALLOCATION, " | |||
| lv_documentdata | TYPE BAPI_DOC_DRAW2, " | |||
| lv_documenttype | TYPE BAPI_DOC_DRAW2-DOCUMENTTYPE, " | |||
| lt_characteristicvalues | TYPE STANDARD TABLE OF BAPI_CHARACTERISTIC_VALUES, " | |||
| lv_isfolder | TYPE BAPI_DOC_DRAW2-CADINDICATOR. " |
|   CALL FUNCTION 'EASYDMS_GETDOCDEFAULTS' "Get Default values for Document |
| EXPORTING | ||
| FOLDERDOCUMENT | = lv_folderdocument | |
| DOCUMENTTYPE | = lv_documenttype | |
| ISFOLDER | = lv_isfolder | |
| IMPORTING | ||
| RETURN | = lv_return | |
| DOCUMENTDATA | = lv_documentdata | |
| TABLES | ||
| CLASSALLOCATIONS | = lt_classallocations | |
| CHARACTERISTICVALUES | = lt_characteristicvalues | |
| . " EASYDMS_GETDOCDEFAULTS | ||
ABAP code using 7.40 inline data declarations to call FM EASYDMS_GETDOCDEFAULTS
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 DOCUMENTTYPE FROM BAPI_DOC_DRAW2 INTO @DATA(ld_documenttype). | ||||
| "SELECT single CADINDICATOR FROM BAPI_DOC_DRAW2 INTO @DATA(ld_isfolder). | ||||
Search for further information about these or an SAP related objects