Skip to content

/AWS1/IF_HLL=>DESCRIBEFHIREXPORTJOB()

About DescribeFHIRExportJob

Get FHIR export job properties.

Method Signature

IMPORTING

Required arguments:

iv_datastoreid TYPE /AWS1/HLLDATASTOREID /AWS1/HLLDATASTOREID

The data store identifier from which FHIR data is being exported from.

iv_jobid TYPE /AWS1/HLLJOBID /AWS1/HLLJOBID

The export job identifier.

RETURNING

oo_output TYPE REF TO /aws1/cl_hlldescrfhirexpjobrsp /AWS1/CL_HLLDESCRFHIREXPJOBRSP

Domain /AWS1/RT_ACCOUNT_ID
Primitive Type NUMC

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.

DATA(lo_result) = lo_client->/aws1/if_hll~describefhirexportjob(
  iv_datastoreid = |string|
  iv_jobid = |string|
).

This is an example of reading all possible response values

lo_result = lo_result.
IF lo_result IS NOT INITIAL.
  lo_exportjobproperties = lo_result->get_exportjobproperties( ).
  IF lo_exportjobproperties IS NOT INITIAL.
    lv_jobid = lo_exportjobproperties->get_jobid( ).
    lv_jobname = lo_exportjobproperties->get_jobname( ).
    lv_jobstatus = lo_exportjobproperties->get_jobstatus( ).
    lv_timestamp = lo_exportjobproperties->get_submittime( ).
    lv_timestamp = lo_exportjobproperties->get_endtime( ).
    lv_datastoreid = lo_exportjobproperties->get_datastoreid( ).
    lo_outputdataconfig = lo_exportjobproperties->get_outputdataconfig( ).
    IF lo_outputdataconfig IS NOT INITIAL.
      lo_s3configuration = lo_outputdataconfig->get_s3configuration( ).
      IF lo_s3configuration IS NOT INITIAL.
        lv_s3uri = lo_s3configuration->get_s3uri( ).
        lv_encryptionkeyid = lo_s3configuration->get_kmskeyid( ).
      ENDIF.
    ENDIF.
    lv_iamrolearn = lo_exportjobproperties->get_dataaccessrolearn( ).
    lv_message = lo_exportjobproperties->get_message( ).
  ENDIF.
ENDIF.