SAP /SCMB/CL_DF_ARCHIVE OO Class - Archiving Document Flow
/SCMB/CL_DF_ARCHIVE 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_ARCHIVE 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_ARCHIVE 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 |
| ARCHIVE_OBJECT | ADK: Select and Buffer Keys of DocFlow Data to be Archived | Public |
| CALL METHOD /scmb/cl_df_archive=>ARCHIVE_OBJECT...more details | ||
| CHECK_HANDLE | Check Validity of the Archive Handle for Chosen Access Mode | Private |
| CALL METHOD /scmb/cl_df_archive=>CHECK_HANDLE...more details | ||
| DELETE | ADK: Delete Document Flow Objects from Database | Public |
| CALL METHOD /scmb/cl_df_archive=>DELETE...more details | ||
| DELETE_FROM_DB | Delete Document Flow Objects from Database | Public |
| CALL METHOD /scmb/cl_df_archive=>DELETE_FROM_DB...more details | ||
| FREE_DATA | ADK: Clear Archiving Class Buffers | Public |
| CALL METHOD /scmb/cl_df_archive=>FREE_DATA...more details | ||
| GET_DATA | ADK: Supply DocFlow Node Data for Writing into Archive | Public |
| CALL METHOD /scmb/cl_df_archive=>GET_DATA...more details | ||
|
| ||
| GET_TABLE | ADK: Get DF Relevant Data of Specified Structure from Archiv | Public |
| CALL METHOD /scmb/cl_df_archive=>GET_TABLE...more details | ||
| INIT_READ | ADK: Initialize Archiving Class for Reading Session | Public |
| CALL METHOD /scmb/cl_df_archive=>INIT_READ...more details | ||
| INIT_WRITE | ADK: Initialize Archiving Class for Write Session | Public |
| CALL METHOD /scmb/cl_df_archive=>INIT_WRITE...more details | ||
| PUT_DATA | ADK: Fill Read Buffers with Data Received from Archive (ADK) | Public |
| CALL METHOD /scmb/cl_df_archive=>PUT_DATA...more details | ||
| READ_FROM_ARCHIVE | Reading Document Flow from Archive File | Public |
| CALL METHOD /scmb/cl_df_archive=>READ_FROM_ARCHIVE...more details | ||
| REGISTER_TABLES | Read Generated Tables of Document Flow | Public |
| CALL METHOD /scmb/cl_df_archive=>REGISTER_TABLES...more details | ||
| RELOAD | ADK: Reload DF Node Data from Archive into DB Tables | Public |
| CALL METHOD /scmb/cl_df_archive=>RELOAD...more details | ||
| RENEW | ADK: Release Data Buffered of a Single Archiving Object | Public |
| CALL METHOD /scmb/cl_df_archive=>RENEW...more details | ||
| ROLLBACK_WORK | ADK: Rollback Results of Delete or Reload; Delete Buffers | Public |
| CALL METHOD /scmb/cl_df_archive=>ROLLBACK_WORK...more details | ||
| WRITE_BY_DOC | Writing to Archive by Document | Public |
| CALL METHOD /scmb/cl_df_archive=>WRITE_BY_DOC...more details | ||
/SCMB/CL_DF_ARCHIVE attributes
List of attributes within class CL_ABAP_CHAR_UTILITIES. These can be referenced using the following syntax CL_ABAP_CHAR_UTILITIES=>. Although depending on where you are inserting the ABAP code you do need to check if the attribute is public or private.
| Name | Level | Description | Initial Value | Type | Visability |
| GC_ACCESS_MODE | Constant | Archive access mode (Read or Write) | LIKE | Public | |
| GC_ARCH_CLASS | Constant | DocFlow Archiving class name | '/SCMB/DF' | LIKE ARCH_CLAS_ | Public |
| GC_FALSE | Constant | Boolean false | SPACE | LIKE XFELD | Private |
| GC_STRUCTURE | Constant | Document structure | '/SCMB/DF_NODE_ARCHIVE_STR' | LIKE SEOCLSNAME | Public |
| GC_TRUE | Constant | Checkbox | 'X' | LIKE XFELD | Private |
| GT_ARCH_INSTANCE | Static Attribute | Archive instance buffer table | LIKE | Private | |
| GT_READ_BUFFER | Static Attribute | Read buffer for DocFlow data | LIKE | Private | |
| GT_WRITE_BUFFER | Static Attribute | Write buffer for DocFlow keys | LIKE | Private | |
| GV_IND | Static Attribute | Indicator for register table | LIKE FLAG | Private |
/SCMB/CL_DF_ARCHIVE types
TYP_S_ARC_INSTANCE - Archive instance structure (ADK compliant)TYP_S_READ_BUFFER - Archive read buffer for DF node data (ADK compliant)
TYP_S_WRITE_BUFFER - Archive write buffer for DF node keys (ADK compliant)
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