READ_CRYPT SAP Method Get Original Data
Below is documentation, parameters and attributes of ABAP Method READ_CRYPT within SAP class READ_ENCRYPTION. 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 READ_ENCRYPTION into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method READ_CRYPT can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method READ_CRYPT
.| Name | Type | Data Type | Description | Default Value |
| CONTROL | Importing | TYPE EDIDC | Control Record (IDoc) | |
| SEGNAM | Importing | TYPE EDILSEGTYP | Name of SAP segment | |
| DATA_RECORD | Changing | TYPE EDI_SDATA | Application Data | |
| HAVE_TO_CHANGE | Changing | TYPE CHAR1 | = 'X' - Adopt Changes |
Exceptions of Method READ_CRYPT
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO READ_ENCRYPTION.
DATA: lv_CONTROL TYPE EDIDC,
lv_DATA_RECORD TYPE EDI_SDATA,
lv_HAVE_TO_CHANGE TYPE CHAR1,
lv_SEGNAM TYPE EDILSEGTYP,
lv_other TYPE c.
CALL METHOD lo_class=>READ_CRYPT(
EXPORTING
CONTROL = lv_CONTROL
SEGNAM = lv_SEGNAM
CHANGING
DATA_RECORD = lv_DATA_RECORD
HAVE_TO_CHANGE = lv_HAVE_TO_CHANGE ).
Links to Related Class(s)
READ_ENC...Full list of available SAP object classes
Search for further information about these or an SAP related objects