Skip to content

/AWS1/IF_DZN=>CREATEASSETTYPE()

About CreateAssetType

Creates a custom asset type.

Prerequisites:

  • The formsInput field is required, however, can be passed as empty (e.g. -forms-input {}).

  • You must have CreateAssetType permissions.

  • The domain-identifier and owning-project-identifier must be valid and active.

  • The name of the asset type must be unique within the domain — duplicate names will cause failure.

  • JSON input must be valid — incorrect formatting causes Invalid JSON errors.

Method Signature

IMPORTING

Required arguments:

iv_domainidentifier TYPE /AWS1/DZNDOMAINID /AWS1/DZNDOMAINID

The unique identifier of the Amazon DataZone domain where the custom asset type is being created.

iv_name TYPE /AWS1/DZNTYPENAME /AWS1/DZNTYPENAME

The name of the custom asset type.

it_formsinput TYPE /AWS1/CL_DZNFORMENTRYINPUT=>TT_FORMSINPUTMAP TT_FORMSINPUTMAP

The metadata forms that are to be attached to the custom asset type.

iv_owningprojectidentifier TYPE /AWS1/DZNPROJECTID /AWS1/DZNPROJECTID

The identifier of the Amazon DataZone project that is to own the custom asset type.

Optional arguments:

iv_description TYPE /AWS1/DZNDESCRIPTION /AWS1/DZNDESCRIPTION

The descripton of the custom asset type.

RETURNING

oo_output TYPE REF TO /aws1/cl_dzncreateassettypeout /AWS1/CL_DZNCREATEASSETTYPEOUT

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->createassettype(
  it_formsinput = VALUE /aws1/cl_dznformentryinput=>tt_formsinputmap(
    (
      VALUE /aws1/cl_dznformentryinput=>ts_formsinputmap_maprow(
        key = |string|
        value = new /aws1/cl_dznformentryinput(
          iv_required = ABAP_TRUE
          iv_typeidentifier = |string|
          iv_typerevision = |string|
        )
      )
    )
  )
  iv_description = |string|
  iv_domainidentifier = |string|
  iv_name = |string|
  iv_owningprojectidentifier = |string|
).

This is an example of reading all possible response values

lo_result = lo_result.
IF lo_result IS NOT INITIAL.
  lv_domainid = lo_result->get_domainid( ).
  lv_typename = lo_result->get_name( ).
  lv_revision = lo_result->get_revision( ).
  lv_description = lo_result->get_description( ).
  LOOP AT lo_result->get_formsoutput( ) into ls_row.
    lv_key = ls_row-key.
    lo_value = ls_row-value.
    IF lo_value IS NOT INITIAL.
      lv_formtypename = lo_value->get_typename( ).
      lv_revision = lo_value->get_typerevision( ).
      lv_boolean = lo_value->get_required( ).
    ENDIF.
  ENDLOOP.
  lv_projectid = lo_result->get_owningprojectid( ).
  lv_domainid = lo_result->get_origindomainid( ).
  lv_projectid = lo_result->get_originprojectid( ).
  lv_createdat = lo_result->get_createdat( ).
  lv_createdby = lo_result->get_createdby( ).
  lv_updatedat = lo_result->get_updatedat( ).
  lv_updatedby = lo_result->get_updatedby( ).
ENDIF.