PARSE_CERTIFICATE SAP Method of class CL_ABAP_PSE









Below is documentation, parameters and attributes of ABAP Method PARSE_CERTIFICATE within SAP class CL_ABAP_PSE. 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_ABAP_PSE 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 PARSE_CERTIFICATE can also be found below:

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


Parameters of Method PARSE_CERTIFICATE

.

NameTypeData TypeDescriptionDefault Value
IV_CERTIFICITEImportingTYPE
XSTRING
EV_EMAIL_ADDRESSExportingTYPE
STRUSTEMAIL
EV_FINGERPRINTExportingTYPE
STRUSTFINGERPRINTSHA1
EV_ISSUERExportingTYPE
STRING
EV_PUBLIC_KEY_FINGERPRINTExportingTYPE
STRUSTPKFINGERPRINT
EV_SERIALNOExportingTYPE
STRING
EV_SUBJECTExportingTYPE
STRING
EV_SUBJECT_KEY_IDENTIFIERExportingTYPE
STRUSTSUBJECTKEYID
EV_VALID_TOExportingTYPE
STRUSTVALIDTO



Exceptions of Method PARSE_CERTIFICATE

CX_ABAP_PSE -

Example ABAP coding


DATA: lv_EV_EMAIL_ADDRESS TYPE STRUSTEMAIL,
lv_EV_FINGERPRINT TYPE STRUSTFINGERPRINTSHA1,
lv_EV_ISSUER TYPE STRING,
lv_EV_PUBLIC_KEY_FINGERPRINT TYPE STRUSTPKFINGERPRINT,
lv_EV_SERIALNO TYPE STRING,
lv_EV_SUBJECT TYPE STRING,
lv_EV_SUBJECT_KEY_IDENTIFIER TYPE STRUSTSUBJECTKEYID,
lv_EV_VALID_TO TYPE STRUSTVALIDTO,
lv_IV_CERTIFICITE TYPE XSTRING,
lv_other TYPE c.

CALL METHOD CL_ABAP_PSE=>PARSE_CERTIFICATE(
EXPORTING
IV_CERTIFICITE = lv_IV_CERTIFICITE
IMPORTING
EV_EMAIL_ADDRESS = lv_EV_EMAIL_ADDRESS
EV_FINGERPRINT = lv_EV_FINGERPRINT
EV_ISSUER = lv_EV_ISSUER
EV_PUBLIC_KEY_FINGERPRINT = lv_EV_PUBLIC_KEY_FINGERPRINT
EV_SERIALNO = lv_EV_SERIALNO
EV_SUBJECT = lv_EV_SUBJECT
EV_SUBJECT_KEY_IDENTIFIER = lv_EV_SUBJECT_KEY_IDENTIFIER
EV_VALID_TO = lv_EV_VALID_TO ).

Links to Related Class(s)

CL_ABAP_...
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!