SAP /SCMB/CL_DF_DOCDAL OO Class - Document Data Access Layer
/SCMB/CL_DF_DOCDAL is a standard SAP object class available within R/3 SAP systems depending on your version and release level. You can view/maintain the class details by entering its name into the relevant SAP transactions such as SE24, SE80 or even SE84. Below is the documentation available for class /SCMB/CL_DF_DOCDAL including details of:
- Interface class implementations
- Inheritance details
- Methods defined within class ( including link to full details )
- Attributes ( including initial values )
- Class Events
Method list of /SCMB/CL_DF_DOCDAL SAP class
A method is a coding block that performs a certain procedure (i.e. ABAP functionality) on an object within the overall SAP class. In simple terms if the object is an SAP database table a method could be the procedure to add a record or to delete a record. If you are new to OO in many respects, the implementation of a method is similar to a function module and can be called in a very similar way using CALL METHOD.
Instead of "CALL FUNCTION", Methods are referenced using the following syntax: CALL METHOD =>methodname EXPORTING/IMPORTING...
| Method Name | Description | Visability |
| GET_DOCID_BY_KEY | Get ID of Documents Selected by Keys | Public |
| CALL METHOD /scmb/cl_df_docdal=>GET_DOCID_BY_KEY...more details | ||
| GET_DOCID_BY_RNG | Get ID of Documents Selected by Range | Public |
| CALL METHOD /scmb/cl_df_docdal=>GET_DOCID_BY_RNG...more details | ||
| INITIALIZE | Initialize Data Access Layer | Public |
| CALL METHOD /scmb/cl_df_docdal=>INITIALIZE...more details | ||
| READ_DOC | Read Documents from Database | Public |
| CALL METHOD /scmb/cl_df_docdal=>READ_DOC...more details | ||
| REFRESH | Clear Buffers of Loaded Documents | Public |
| CALL METHOD /scmb/cl_df_docdal=>REFRESH...more details | ||
| SET_DOCID_BY_KEY | Set ID of Documents to Selected Keys | Public |
| CALL METHOD /scmb/cl_df_docdal=>SET_DOCID_BY_KEY...more details | ||
|
| ||
| WRITE_DOC | Write Documents to Database | Public |
| CALL METHOD /scmb/cl_df_docdal=>WRITE_DOC...more details | ||
/SCMB/CL_DF_DOCDAL types
TYP_S_DB_COUNT - Number of Processed DB Table RowsTYP_S_DOC - Document
TYP_S_DOC_ID - Document ID
TYP_S_DOC_KEY_ID - Document Key - ID mapping
TYP_S_DOC_SELOPT - Document Selection Structure
TYP_S_DOC_SEL_KEY - Document Selection by Key
TYP_S_DOC_SEL_RES - Document Selection Result
TYP_S_DOC_SEL_RNG - Document Selection by Range
TYP_T_DB_COUNT - Number of Processed DB Table Rows Table
TYP_T_DOC - Document Table
TYP_T_DOC_ID - Documen ID Table
TYP_T_DOC_KEY_ID - Document Key - ID mapping Table
TYP_T_DOC_SELOPT - Document Selection Table Type
TYP_T_DOC_SEL_KEY - Document Selection by Key Table
TYP_T_DOC_SEL_RES - Document Selection Result Table
TYP_T_DOC_SEL_RNG - Document Selection by Range Table
Links to Related Class(s)
/SCMB/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects