INIT_READ SAP Method ADK: Initialize Archiving Class for Reading Session









Below is documentation, parameters and attributes of ABAP Method INIT_READ within SAP class /SCMB/CL_DF_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 /SCMB/CL_DF_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 directly

The following technical details of method INIT_READ can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method INIT_READ

.

NameTypeData TypeDescriptionDefault Value
IV_ARCHIVE_HANDLEImportingTYPE
SYTABIX
archive file handle
IV_CODE_PAGEImportingTYPE
TCP00-CPCODEPAGE
Codepage ID valid at file write time
IV_DATEImportingTYPE
SYDATUM
Date of file write
IV_NUMBER_FORMATImportingTYPE
TCP00-CPCODEPAGE
Number format valid at file write time
IV_RELEASE_NUMBERImportingTYPE
SYSAPRL
SAP BASIS release number valid at file write time



Exceptions of Method INIT_READ

This method does not have any exceptions

Example ABAP coding


DATA: lv_IV_ARCHIVE_HANDLE TYPE SYTABIX,
lv_IV_CODE_PAGE TYPE TCP00-CPCODEPAGE,
lv_IV_DATE TYPE SYDATUM,
lv_IV_NUMBER_FORMAT TYPE TCP00-CPCODEPAGE,
lv_IV_RELEASE_NUMBER TYPE SYSAPRL,
lv_other TYPE c.

CALL METHOD /SCMB/CL_DF_ARCHIVE=>INIT_READ(
EXPORTING
IV_ARCHIVE_HANDLE = lv_IV_ARCHIVE_HANDLE
IV_CODE_PAGE = lv_IV_CODE_PAGE
IV_DATE = lv_IV_DATE
IV_NUMBER_FORMAT = lv_IV_NUMBER_FORMAT
IV_RELEASE_NUMBER = lv_IV_RELEASE_NUMBER ).

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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!