PREPARE_ARCHIVE_WRITE SAP Method Prepare Archive Handle and write all tables to the archive
Below is documentation, parameters and attributes of ABAP Method PREPARE_ARCHIVE_WRITE within SAP class CL_ISU_BCONT_ARCHIVE. 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 CL_ISU_BCONT_ARCHIVE 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 directlyThe following technical details of method PREPARE_ARCHIVE_WRITE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method PREPARE_ARCHIVE_WRITE
.| Name | Type | Data Type | Description | Default Value |
| IM_ARCHIVE_HANDLE | Importing | TYPE SY-TABIX | The Archive Handle | |
| IM_BCONT | Importing | TYPE BCONT | Business Partner Contact | |
| CH_ARCHIVE_ERROR | Changing | TYPE C | Error in the archive |
Exceptions of Method PREPARE_ARCHIVE_WRITE
This method does not have any exceptionsExample ABAP coding
DATA: lv_CH_ARCHIVE_ERROR TYPE C,
lv_IM_ARCHIVE_HANDLE TYPE SY-TABIX,
lv_IM_BCONT TYPE BCONT,
lv_other TYPE c.
CALL METHOD CL_ISU_BCONT_ARCHIVE=>PREPARE_ARCHIVE_WRITE(
EXPORTING
IM_ARCHIVE_HANDLE = lv_IM_ARCHIVE_HANDLE
IM_BCONT = lv_IM_BCONT
CHANGING
CH_ARCHIVE_ERROR = lv_CH_ARCHIVE_ERROR ).
Links to Related Class(s)
CL_ISU_B...Full list of available SAP object classes
Search for further information about these or an SAP related objects