Skip to content

/AWS1/IF_SGN=>REVOKESIGNATURE()

About RevokeSignature

Changes the state of a signing job to REVOKED. This indicates that the signature is no longer valid.

Method Signature

METHODS /AWS1/IF_SGN~REVOKESIGNATURE
  IMPORTING
    !IV_JOBID TYPE /AWS1/SGNJOBID OPTIONAL
    !IV_JOBOWNER TYPE /AWS1/SGNACCOUNTID OPTIONAL
    !IV_REASON TYPE /AWS1/SGNREVOCATIONRSNSTRING OPTIONAL
  RAISING
    /AWS1/CX_SGNACCESSDENIEDEX
    /AWS1/CX_SGNINTERNALSVCERROREX
    /AWS1/CX_SGNRESOURCENOTFOUNDEX
    /AWS1/CX_SGNTOOMANYREQUESTSEX
    /AWS1/CX_SGNVALIDATIONEX
    /AWS1/CX_SGNCLIENTEXC
    /AWS1/CX_SGNSERVEREXC
    /AWS1/CX_RT_TECHNICAL_GENERIC
    /AWS1/CX_RT_SERVICE_GENERIC.

IMPORTING

Required arguments:

iv_jobid TYPE /AWS1/SGNJOBID /AWS1/SGNJOBID

ID of the signing job to be revoked.

iv_reason TYPE /AWS1/SGNREVOCATIONRSNSTRING /AWS1/SGNREVOCATIONRSNSTRING

The reason for revoking the signing job.

Optional arguments:

iv_jobowner TYPE /AWS1/SGNACCOUNTID /AWS1/SGNACCOUNTID

AWS account ID of the job owner.

Examples

Syntax Example

This is an example of the syntax for calling the method. It includes every possible argument and initializes every possible value. The data provided is not necessarily semantically accurate (for example the value "string" may be provided for something that is intended to be an instance ID, or in some cases two arguments may be mutually exclusive). The syntax shows the ABAP syntax for creating the various data structures.

lo_client->revokesignature(
  iv_jobid = |string|
  iv_jobowner = |string|
  iv_reason = |string|
).