Skip to content

/AWS1/IF_FNS=>GETKXDATABASE()

About GetKxDatabase

Returns database information for the specified environment ID.

Method Signature

METHODS /AWS1/IF_FNS~GETKXDATABASE
  IMPORTING
    !IV_ENVIRONMENTID TYPE /AWS1/FNSENVIRONMENTID OPTIONAL
    !IV_DATABASENAME TYPE /AWS1/FNSDATABASENAME OPTIONAL
  RETURNING
    VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_fnsgetkxdatabasersp
  RAISING
    /AWS1/CX_FNSACCESSDENIEDEX
    /AWS1/CX_FNSINTERNALSERVEREX
    /AWS1/CX_FNSRESOURCENOTFOUNDEX
    /AWS1/CX_FNSTHROTTLINGEX
    /AWS1/CX_FNSVALIDATIONEX
    /AWS1/CX_FNSCLIENTEXC
    /AWS1/CX_FNSSERVEREXC
    /AWS1/CX_RT_TECHNICAL_GENERIC
    /AWS1/CX_RT_SERVICE_GENERIC.

IMPORTING

Required arguments:

iv_environmentid TYPE /AWS1/FNSENVIRONMENTID /AWS1/FNSENVIRONMENTID

A unique identifier for the kdb environment.

iv_databasename TYPE /AWS1/FNSDATABASENAME /AWS1/FNSDATABASENAME

The name of the kdb database.

RETURNING

oo_output TYPE REF TO /aws1/cl_fnsgetkxdatabasersp /AWS1/CL_FNSGETKXDATABASERSP

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->getkxdatabase(
  iv_databasename = |string|
  iv_environmentid = |string|
).

This is an example of reading all possible response values

lo_result = lo_result.
IF lo_result IS NOT INITIAL.
  lv_databasename = lo_result->get_databasename( ).
  lv_databasearn = lo_result->get_databasearn( ).
  lv_environmentid = lo_result->get_environmentid( ).
  lv_description = lo_result->get_description( ).
  lv_timestamp = lo_result->get_createdtimestamp( ).
  lv_timestamp = lo_result->get_lastmodifiedtimestamp( ).
  lv_changesetid = lo_result->get_lastcompletedchangesetid( ).
  lv_numbytes = lo_result->get_numbytes( ).
  lv_numchangesets = lo_result->get_numchangesets( ).
  lv_numfiles = lo_result->get_numfiles( ).
ENDIF.