/AWS1/IF_MDV=>CREATEPACKAGINGCONFIGURATION()¶
About CreatePackagingConfiguration¶
Creates a new MediaPackage VOD PackagingConfiguration resource.
Method Signature¶
METHODS /AWS1/IF_MDV~CREATEPACKAGINGCONFIGURATION
  IMPORTING
    !IO_CMAFPACKAGE TYPE REF TO /AWS1/CL_MDVCMAFPACKAGE OPTIONAL
    !IO_DASHPACKAGE TYPE REF TO /AWS1/CL_MDVDASHPACKAGE OPTIONAL
    !IO_HLSPACKAGE TYPE REF TO /AWS1/CL_MDVHLSPACKAGE OPTIONAL
    !IV_ID TYPE /AWS1/MDV__STRING OPTIONAL
    !IO_MSSPACKAGE TYPE REF TO /AWS1/CL_MDVMSSPACKAGE OPTIONAL
    !IV_PACKAGINGGROUPID TYPE /AWS1/MDV__STRING OPTIONAL
    !IT_TAGS TYPE /AWS1/CL_MDVTAGS_W=>TT_TAGS OPTIONAL
  RETURNING
    VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_mdvcrepackagingconf01
  RAISING
    /AWS1/CX_MDVFORBIDDENEXCEPTION
    /AWS1/CX_MDVINTERNALSERVERER00
    /AWS1/CX_MDVNOTFOUNDEXCEPTION
    /AWS1/CX_MDVSERVICEUNAVAILEX
    /AWS1/CX_MDVTOOMANYREQUESTSEX
    /AWS1/CX_MDVUNPROCABLEENTITYEX
    /AWS1/CX_MDVCLIENTEXC
    /AWS1/CX_MDVSERVEREXC
    /AWS1/CX_RT_TECHNICAL_GENERIC
    /AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_id TYPE /AWS1/MDV__STRING /AWS1/MDV__STRING¶
The ID of the PackagingConfiguration.
iv_packaginggroupid TYPE /AWS1/MDV__STRING /AWS1/MDV__STRING¶
The ID of a PackagingGroup.
Optional arguments:¶
io_cmafpackage TYPE REF TO /AWS1/CL_MDVCMAFPACKAGE /AWS1/CL_MDVCMAFPACKAGE¶
CmafPackage
io_dashpackage TYPE REF TO /AWS1/CL_MDVDASHPACKAGE /AWS1/CL_MDVDASHPACKAGE¶
DashPackage
io_hlspackage TYPE REF TO /AWS1/CL_MDVHLSPACKAGE /AWS1/CL_MDVHLSPACKAGE¶
HlsPackage
io_msspackage TYPE REF TO /AWS1/CL_MDVMSSPACKAGE /AWS1/CL_MDVMSSPACKAGE¶
MssPackage
it_tags TYPE /AWS1/CL_MDVTAGS_W=>TT_TAGS TT_TAGS¶
Tags
RETURNING¶
oo_output TYPE REF TO /aws1/cl_mdvcrepackagingconf01 /AWS1/CL_MDVCREPACKAGINGCONF01¶
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->createpackagingconfiguration(
  io_cmafpackage = new /aws1/cl_mdvcmafpackage(
    io_encryption = new /aws1/cl_mdvcmafencryption(
      io_spekekeyprovider = new /aws1/cl_mdvspekekeyprovider(
        io_encryptioncontractconf = new /aws1/cl_mdvenccontractconf(
          iv_presetspeke20audio = |string|
          iv_presetspeke20video = |string|
        )
        it_systemids = VALUE /aws1/cl_mdv__listof__string_w=>tt___listof__string(
          ( new /aws1/cl_mdv__listof__string_w( |string| ) )
        )
        iv_rolearn = |string|
        iv_url = |string|
      )
      iv_constantinitializationv00 = |string|
    )
    it_hlsmanifests = VALUE /aws1/cl_mdvhlsmanifest=>tt___listofhlsmanifest(
      (
        new /aws1/cl_mdvhlsmanifest(
          io_streamselection = new /aws1/cl_mdvstreamselection(
            iv_maxvideobitspersecond = 123
            iv_minvideobitspersecond = 123
            iv_streamorder = |string|
          )
          iv_admarkers = |string|
          iv_includeiframeonlystream = ABAP_TRUE
          iv_manifestname = |string|
          iv_programdatetimeinterval00 = 123
          iv_repeatextxkey = ABAP_TRUE
        )
      )
    )
    iv_inclencoderconfinsegments = ABAP_TRUE
    iv_segmentdurationseconds = 123
  )
  io_dashpackage = new /aws1/cl_mdvdashpackage(
    io_encryption = new /aws1/cl_mdvdashencryption(
      io_spekekeyprovider = new /aws1/cl_mdvspekekeyprovider(
        io_encryptioncontractconf = new /aws1/cl_mdvenccontractconf(
          iv_presetspeke20audio = |string|
          iv_presetspeke20video = |string|
        )
        it_systemids = VALUE /aws1/cl_mdv__listof__string_w=>tt___listof__string(
          ( new /aws1/cl_mdv__listof__string_w( |string| ) )
        )
        iv_rolearn = |string|
        iv_url = |string|
      )
    )
    it_dashmanifests = VALUE /aws1/cl_mdvdashmanifest=>tt___listofdashmanifest(
      (
        new /aws1/cl_mdvdashmanifest(
          io_streamselection = new /aws1/cl_mdvstreamselection(
            iv_maxvideobitspersecond = 123
            iv_minvideobitspersecond = 123
            iv_streamorder = |string|
          )
          iv_manifestlayout = |string|
          iv_manifestname = |string|
          iv_minbuffertimeseconds = 123
          iv_profile = |string|
          iv_sctemarkerssource = |string|
        )
      )
    )
    it_periodtriggers = VALUE /aws1/cl_mdv__lstof__pertrig00=>tt___lstof__pertriggerselement(
      ( new /aws1/cl_mdv__lstof__pertrig00( |string| ) )
    )
    iv_inclencoderconfinsegments = ABAP_TRUE
    iv_includeiframeonlystream = ABAP_TRUE
    iv_segmentdurationseconds = 123
    iv_segmenttemplateformat = |string|
  )
  io_hlspackage = new /aws1/cl_mdvhlspackage(
    io_encryption = new /aws1/cl_mdvhlsencryption(
      io_spekekeyprovider = new /aws1/cl_mdvspekekeyprovider(
        io_encryptioncontractconf = new /aws1/cl_mdvenccontractconf(
          iv_presetspeke20audio = |string|
          iv_presetspeke20video = |string|
        )
        it_systemids = VALUE /aws1/cl_mdv__listof__string_w=>tt___listof__string(
          ( new /aws1/cl_mdv__listof__string_w( |string| ) )
        )
        iv_rolearn = |string|
        iv_url = |string|
      )
      iv_constantinitializationv00 = |string|
      iv_encryptionmethod = |string|
    )
    it_hlsmanifests = VALUE /aws1/cl_mdvhlsmanifest=>tt___listofhlsmanifest(
      (
        new /aws1/cl_mdvhlsmanifest(
          io_streamselection = new /aws1/cl_mdvstreamselection(
            iv_maxvideobitspersecond = 123
            iv_minvideobitspersecond = 123
            iv_streamorder = |string|
          )
          iv_admarkers = |string|
          iv_includeiframeonlystream = ABAP_TRUE
          iv_manifestname = |string|
          iv_programdatetimeinterval00 = 123
          iv_repeatextxkey = ABAP_TRUE
        )
      )
    )
    iv_includedvbsubtitles = ABAP_TRUE
    iv_segmentdurationseconds = 123
    iv_useaudiorenditiongroup = ABAP_TRUE
  )
  io_msspackage = new /aws1/cl_mdvmsspackage(
    io_encryption = new /aws1/cl_mdvmssencryption(
      io_spekekeyprovider = new /aws1/cl_mdvspekekeyprovider(
        io_encryptioncontractconf = new /aws1/cl_mdvenccontractconf(
          iv_presetspeke20audio = |string|
          iv_presetspeke20video = |string|
        )
        it_systemids = VALUE /aws1/cl_mdv__listof__string_w=>tt___listof__string(
          ( new /aws1/cl_mdv__listof__string_w( |string| ) )
        )
        iv_rolearn = |string|
        iv_url = |string|
      )
    )
    it_mssmanifests = VALUE /aws1/cl_mdvmssmanifest=>tt___listofmssmanifest(
      (
        new /aws1/cl_mdvmssmanifest(
          io_streamselection = new /aws1/cl_mdvstreamselection(
            iv_maxvideobitspersecond = 123
            iv_minvideobitspersecond = 123
            iv_streamorder = |string|
          )
          iv_manifestname = |string|
        )
      )
    )
    iv_segmentdurationseconds = 123
  )
  it_tags = VALUE /aws1/cl_mdvtags_w=>tt_tags(
    (
      VALUE /aws1/cl_mdvtags_w=>ts_tags_maprow(
        value = new /aws1/cl_mdvtags_w( |string| )
        key = |string|
      )
    )
  )
  iv_id = |string|
  iv_packaginggroupid = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
  lv___string = lo_result->get_arn( ).
  lo_cmafpackage = lo_result->get_cmafpackage( ).
  IF lo_cmafpackage IS NOT INITIAL.
    lo_cmafencryption = lo_cmafpackage->get_encryption( ).
    IF lo_cmafencryption IS NOT INITIAL.
      lv___string = lo_cmafencryption->get_constantinitialization00( ).
      lo_spekekeyprovider = lo_cmafencryption->get_spekekeyprovider( ).
      IF lo_spekekeyprovider IS NOT INITIAL.
        lo_encryptioncontractconfi = lo_spekekeyprovider->get_encryptioncontractconf( ).
        IF lo_encryptioncontractconfi IS NOT INITIAL.
          lv_presetspeke20audio = lo_encryptioncontractconfi->get_presetspeke20audio( ).
          lv_presetspeke20video = lo_encryptioncontractconfi->get_presetspeke20video( ).
        ENDIF.
        lv___string = lo_spekekeyprovider->get_rolearn( ).
        LOOP AT lo_spekekeyprovider->get_systemids( ) into lo_row.
          lo_row_1 = lo_row.
          IF lo_row_1 IS NOT INITIAL.
            lv___string = lo_row_1->get_value( ).
          ENDIF.
        ENDLOOP.
        lv___string = lo_spekekeyprovider->get_url( ).
      ENDIF.
    ENDIF.
    LOOP AT lo_cmafpackage->get_hlsmanifests( ) into lo_row_2.
      lo_row_3 = lo_row_2.
      IF lo_row_3 IS NOT INITIAL.
        lv_admarkers = lo_row_3->get_admarkers( ).
        lv___boolean = lo_row_3->get_includeiframeonlystream( ).
        lv___string = lo_row_3->get_manifestname( ).
        lv___integer = lo_row_3->get_programdatetimeinterva00( ).
        lv___boolean = lo_row_3->get_repeatextxkey( ).
        lo_streamselection = lo_row_3->get_streamselection( ).
        IF lo_streamselection IS NOT INITIAL.
          lv___integer = lo_streamselection->get_maxvideobitspersecond( ).
          lv___integer = lo_streamselection->get_minvideobitspersecond( ).
          lv_streamorder = lo_streamselection->get_streamorder( ).
        ENDIF.
      ENDIF.
    ENDLOOP.
    lv___boolean = lo_cmafpackage->get_incencoderconfinsegments( ).
    lv___integer = lo_cmafpackage->get_segmentdurationseconds( ).
  ENDIF.
  lv___string = lo_result->get_createdat( ).
  lo_dashpackage = lo_result->get_dashpackage( ).
  IF lo_dashpackage IS NOT INITIAL.
    LOOP AT lo_dashpackage->get_dashmanifests( ) into lo_row_4.
      lo_row_5 = lo_row_4.
      IF lo_row_5 IS NOT INITIAL.
        lv_manifestlayout = lo_row_5->get_manifestlayout( ).
        lv___string = lo_row_5->get_manifestname( ).
        lv___integer = lo_row_5->get_minbuffertimeseconds( ).
        lv_profile = lo_row_5->get_profile( ).
        lv_sctemarkerssource = lo_row_5->get_sctemarkerssource( ).
        lo_streamselection = lo_row_5->get_streamselection( ).
        IF lo_streamselection IS NOT INITIAL.
          lv___integer = lo_streamselection->get_maxvideobitspersecond( ).
          lv___integer = lo_streamselection->get_minvideobitspersecond( ).
          lv_streamorder = lo_streamselection->get_streamorder( ).
        ENDIF.
      ENDIF.
    ENDLOOP.
    lo_dashencryption = lo_dashpackage->get_encryption( ).
    IF lo_dashencryption IS NOT INITIAL.
      lo_spekekeyprovider = lo_dashencryption->get_spekekeyprovider( ).
      IF lo_spekekeyprovider IS NOT INITIAL.
        lo_encryptioncontractconfi = lo_spekekeyprovider->get_encryptioncontractconf( ).
        IF lo_encryptioncontractconfi IS NOT INITIAL.
          lv_presetspeke20audio = lo_encryptioncontractconfi->get_presetspeke20audio( ).
          lv_presetspeke20video = lo_encryptioncontractconfi->get_presetspeke20video( ).
        ENDIF.
        lv___string = lo_spekekeyprovider->get_rolearn( ).
        LOOP AT lo_spekekeyprovider->get_systemids( ) into lo_row.
          lo_row_1 = lo_row.
          IF lo_row_1 IS NOT INITIAL.
            lv___string = lo_row_1->get_value( ).
          ENDIF.
        ENDLOOP.
        lv___string = lo_spekekeyprovider->get_url( ).
      ENDIF.
    ENDIF.
    lv___boolean = lo_dashpackage->get_incencoderconfinsegments( ).
    lv___boolean = lo_dashpackage->get_includeiframeonlystream( ).
    LOOP AT lo_dashpackage->get_periodtriggers( ) into lo_row_6.
      lo_row_7 = lo_row_6.
      IF lo_row_7 IS NOT INITIAL.
        lv___periodtriggerselement = lo_row_7->get_value( ).
      ENDIF.
    ENDLOOP.
    lv___integer = lo_dashpackage->get_segmentdurationseconds( ).
    lv_segmenttemplateformat = lo_dashpackage->get_segmenttemplateformat( ).
  ENDIF.
  lo_hlspackage = lo_result->get_hlspackage( ).
  IF lo_hlspackage IS NOT INITIAL.
    lo_hlsencryption = lo_hlspackage->get_encryption( ).
    IF lo_hlsencryption IS NOT INITIAL.
      lv___string = lo_hlsencryption->get_constantinitialization00( ).
      lv_encryptionmethod = lo_hlsencryption->get_encryptionmethod( ).
      lo_spekekeyprovider = lo_hlsencryption->get_spekekeyprovider( ).
      IF lo_spekekeyprovider IS NOT INITIAL.
        lo_encryptioncontractconfi = lo_spekekeyprovider->get_encryptioncontractconf( ).
        IF lo_encryptioncontractconfi IS NOT INITIAL.
          lv_presetspeke20audio = lo_encryptioncontractconfi->get_presetspeke20audio( ).
          lv_presetspeke20video = lo_encryptioncontractconfi->get_presetspeke20video( ).
        ENDIF.
        lv___string = lo_spekekeyprovider->get_rolearn( ).
        LOOP AT lo_spekekeyprovider->get_systemids( ) into lo_row.
          lo_row_1 = lo_row.
          IF lo_row_1 IS NOT INITIAL.
            lv___string = lo_row_1->get_value( ).
          ENDIF.
        ENDLOOP.
        lv___string = lo_spekekeyprovider->get_url( ).
      ENDIF.
    ENDIF.
    LOOP AT lo_hlspackage->get_hlsmanifests( ) into lo_row_2.
      lo_row_3 = lo_row_2.
      IF lo_row_3 IS NOT INITIAL.
        lv_admarkers = lo_row_3->get_admarkers( ).
        lv___boolean = lo_row_3->get_includeiframeonlystream( ).
        lv___string = lo_row_3->get_manifestname( ).
        lv___integer = lo_row_3->get_programdatetimeinterva00( ).
        lv___boolean = lo_row_3->get_repeatextxkey( ).
        lo_streamselection = lo_row_3->get_streamselection( ).
        IF lo_streamselection IS NOT INITIAL.
          lv___integer = lo_streamselection->get_maxvideobitspersecond( ).
          lv___integer = lo_streamselection->get_minvideobitspersecond( ).
          lv_streamorder = lo_streamselection->get_streamorder( ).
        ENDIF.
      ENDIF.
    ENDLOOP.
    lv___boolean = lo_hlspackage->get_includedvbsubtitles( ).
    lv___integer = lo_hlspackage->get_segmentdurationseconds( ).
    lv___boolean = lo_hlspackage->get_useaudiorenditiongroup( ).
  ENDIF.
  lv___string = lo_result->get_id( ).
  lo_msspackage = lo_result->get_msspackage( ).
  IF lo_msspackage IS NOT INITIAL.
    lo_mssencryption = lo_msspackage->get_encryption( ).
    IF lo_mssencryption IS NOT INITIAL.
      lo_spekekeyprovider = lo_mssencryption->get_spekekeyprovider( ).
      IF lo_spekekeyprovider IS NOT INITIAL.
        lo_encryptioncontractconfi = lo_spekekeyprovider->get_encryptioncontractconf( ).
        IF lo_encryptioncontractconfi IS NOT INITIAL.
          lv_presetspeke20audio = lo_encryptioncontractconfi->get_presetspeke20audio( ).
          lv_presetspeke20video = lo_encryptioncontractconfi->get_presetspeke20video( ).
        ENDIF.
        lv___string = lo_spekekeyprovider->get_rolearn( ).
        LOOP AT lo_spekekeyprovider->get_systemids( ) into lo_row.
          lo_row_1 = lo_row.
          IF lo_row_1 IS NOT INITIAL.
            lv___string = lo_row_1->get_value( ).
          ENDIF.
        ENDLOOP.
        lv___string = lo_spekekeyprovider->get_url( ).
      ENDIF.
    ENDIF.
    LOOP AT lo_msspackage->get_mssmanifests( ) into lo_row_8.
      lo_row_9 = lo_row_8.
      IF lo_row_9 IS NOT INITIAL.
        lv___string = lo_row_9->get_manifestname( ).
        lo_streamselection = lo_row_9->get_streamselection( ).
        IF lo_streamselection IS NOT INITIAL.
          lv___integer = lo_streamselection->get_maxvideobitspersecond( ).
          lv___integer = lo_streamselection->get_minvideobitspersecond( ).
          lv_streamorder = lo_streamselection->get_streamorder( ).
        ENDIF.
      ENDIF.
    ENDLOOP.
    lv___integer = lo_msspackage->get_segmentdurationseconds( ).
  ENDIF.
  lv___string = lo_result->get_packaginggroupid( ).
  LOOP AT lo_result->get_tags( ) into ls_row_10.
    lv_key = ls_row_10-key.
    lo_value = ls_row_10-value.
    IF lo_value IS NOT INITIAL.
      lv___string = lo_value->get_value( ).
    ENDIF.
  ENDLOOP.
ENDIF.