Skip to content

/AWS1/CL_QST=>LISTTOPICREVIEWEDANSWERS()

About ListTopicReviewedAnswers

Lists all reviewed answers for a Q Topic.

Method Signature

IMPORTING

Required arguments:

iv_awsaccountid TYPE /AWS1/QSTAWSACCOUNTID /AWS1/QSTAWSACCOUNTID

The ID of the Amazon Web Services account that containd the reviewed answers that you want listed.

iv_topicid TYPE /AWS1/QSTTOPICID /AWS1/QSTTOPICID

The ID for the topic that contains the reviewed answer that you want to list. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.

RETURNING

oo_output TYPE REF TO /aws1/cl_qstlsttpcreviewedan01 /AWS1/CL_QSTLSTTPCREVIEWEDAN01

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_qst~listtopicreviewedanswers(
  iv_awsaccountid = |string|
  iv_topicid = |string|
).

This is an example of reading all possible response values

lo_result = lo_result.
IF lo_result IS NOT INITIAL.
  lv_topicid = lo_result->get_topicid( ).
  lv_arn = lo_result->get_topicarn( ).
  LOOP AT lo_result->get_answers( ) into lo_row.
    lo_row_1 = lo_row.
    IF lo_row_1 IS NOT INITIAL.
      lv_arn = lo_row_1->get_arn( ).
      lv_answerid = lo_row_1->get_answerid( ).
      lv_arn = lo_row_1->get_datasetarn( ).
      lv_limitedstring = lo_row_1->get_question( ).
      lo_topicir = lo_row_1->get_mir( ).
      IF lo_topicir IS NOT INITIAL.
        LOOP AT lo_topicir->get_metrics( ) into lo_row_2.
          lo_row_3 = lo_row_2.
          IF lo_row_3 IS NOT INITIAL.
            lo_identifier = lo_row_3->get_metricid( ).
            IF lo_identifier IS NOT INITIAL.
              lv_limitedstring = lo_identifier->get_identity( ).
            ENDIF.
            lo_aggfunction = lo_row_3->get_function( ).
            IF lo_aggfunction IS NOT INITIAL.
              lv_aggtype = lo_aggfunction->get_aggregation( ).
              LOOP AT lo_aggfunction->get_aggrfunctionparameters( ) into ls_row_4.
                lv_key = ls_row_4-key.
                lo_value = ls_row_4-value.
                IF lo_value IS NOT INITIAL.
                  lv_aggfunctionparamvalue = lo_value->get_value( ).
                ENDIF.
              ENDLOOP.
              lv_topictimegranularity = lo_aggfunction->get_period( ).
              lv_limitedstring = lo_aggfunction->get_periodfield( ).
            ENDIF.
            LOOP AT lo_row_3->get_operands( ) into lo_row_5.
              lo_row_6 = lo_row_5.
              IF lo_row_6 IS NOT INITIAL.
                lv_limitedstring = lo_row_6->get_identity( ).
              ENDIF.
            ENDLOOP.
            lo_topicircomparisonmethod = lo_row_3->get_comparisonmethod( ).
            IF lo_topicircomparisonmethod IS NOT INITIAL.
              lv_comparisonmethodtype = lo_topicircomparisonmethod->get_type( ).
              lv_topictimegranularity = lo_topicircomparisonmethod->get_period( ).
              lv_integer = lo_topicircomparisonmethod->get_windowsize( ).
            ENDIF.
            lv_expression = lo_row_3->get_expression( ).
            LOOP AT lo_row_3->get_calculatedfieldreferen00( ) into lo_row_5.
              lo_row_6 = lo_row_5.
              IF lo_row_6 IS NOT INITIAL.
                lv_limitedstring = lo_row_6->get_identity( ).
              ENDIF.
            ENDLOOP.
            lv_displayformat = lo_row_3->get_displayformat( ).
            lo_displayformatoptions = lo_row_3->get_displayformatoptions( ).
            IF lo_displayformatoptions IS NOT INITIAL.
              lv_boolean = lo_displayformatoptions->get_useblankcellformat( ).
              lv_limitedstring = lo_displayformatoptions->get_blankcellformat( ).
              lv_limitedstring = lo_displayformatoptions->get_dateformat( ).
              lv_topicnumericseparatorsy = lo_displayformatoptions->get_decimalseparator( ).
              lv_limitedstring = lo_displayformatoptions->get_groupingseparator( ).
              lv_boolean = lo_displayformatoptions->get_usegrouping( ).
              lv_integer = lo_displayformatoptions->get_fractiondigits( ).
              lv_limitedstring = lo_displayformatoptions->get_prefix( ).
              lv_limitedstring = lo_displayformatoptions->get_suffix( ).
              lv_numberscale = lo_displayformatoptions->get_unitscaler( ).
              lo_negativeformat = lo_displayformatoptions->get_negativeformat( ).
              IF lo_negativeformat IS NOT INITIAL.
                lv_limitedstring = lo_negativeformat->get_prefix( ).
                lv_limitedstring = lo_negativeformat->get_suffix( ).
              ENDIF.
              lv_limitedstring = lo_displayformatoptions->get_currencysymbol( ).
            ENDIF.
            lo_namedentityref = lo_row_3->get_namedentity( ).
            IF lo_namedentityref IS NOT INITIAL.
              lv_limitedstring = lo_namedentityref->get_namedentityname( ).
            ENDIF.
          ENDIF.
        ENDLOOP.
        LOOP AT lo_topicir->get_groupbylist( ) into lo_row_7.
          lo_row_8 = lo_row_7.
          IF lo_row_8 IS NOT INITIAL.
            lo_identifier = lo_row_8->get_fieldname( ).
            IF lo_identifier IS NOT INITIAL.
              lv_limitedstring = lo_identifier->get_identity( ).
            ENDIF.
            lv_topictimegranularity = lo_row_8->get_timegranularity( ).
            lo_topicsortclause = lo_row_8->get_sort( ).
            IF lo_topicsortclause IS NOT INITIAL.
              lo_identifier = lo_topicsortclause->get_operand( ).
              IF lo_identifier IS NOT INITIAL.
                lv_limitedstring = lo_identifier->get_identity( ).
              ENDIF.
              lv_topicsortdirection = lo_topicsortclause->get_sortdirection( ).
            ENDIF.
            lv_displayformat = lo_row_8->get_displayformat( ).
            lo_displayformatoptions = lo_row_8->get_displayformatoptions( ).
            IF lo_displayformatoptions IS NOT INITIAL.
              lv_boolean = lo_displayformatoptions->get_useblankcellformat( ).
              lv_limitedstring = lo_displayformatoptions->get_blankcellformat( ).
              lv_limitedstring = lo_displayformatoptions->get_dateformat( ).
              lv_topicnumericseparatorsy = lo_displayformatoptions->get_decimalseparator( ).
              lv_limitedstring = lo_displayformatoptions->get_groupingseparator( ).
              lv_boolean = lo_displayformatoptions->get_usegrouping( ).
              lv_integer = lo_displayformatoptions->get_fractiondigits( ).
              lv_limitedstring = lo_displayformatoptions->get_prefix( ).
              lv_limitedstring = lo_displayformatoptions->get_suffix( ).
              lv_numberscale = lo_displayformatoptions->get_unitscaler( ).
              lo_negativeformat = lo_displayformatoptions->get_negativeformat( ).
              IF lo_negativeformat IS NOT INITIAL.
                lv_limitedstring = lo_negativeformat->get_prefix( ).
                lv_limitedstring = lo_negativeformat->get_suffix( ).
              ENDIF.
              lv_limitedstring = lo_displayformatoptions->get_currencysymbol( ).
            ENDIF.
            lo_namedentityref = lo_row_8->get_namedentity( ).
            IF lo_namedentityref IS NOT INITIAL.
              lv_limitedstring = lo_namedentityref->get_namedentityname( ).
            ENDIF.
          ENDIF.
        ENDLOOP.
        LOOP AT lo_topicir->get_filters( ) into lt_row_9.
          LOOP AT lt_row_9 into lo_row_10.
            lo_row_11 = lo_row_10.
            IF lo_row_11 IS NOT INITIAL.
              lv_topicirfiltertype = lo_row_11->get_filtertype( ).
              lv_filterclass = lo_row_11->get_filterclass( ).
              lo_identifier = lo_row_11->get_operandfield( ).
              IF lo_identifier IS NOT INITIAL.
                lv_limitedstring = lo_identifier->get_identity( ).
              ENDIF.
              lv_topicirfilterfunction = lo_row_11->get_function( ).
              lo_topicconstantvalue = lo_row_11->get_constant( ).
              IF lo_topicconstantvalue IS NOT INITIAL.
                lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                  lo_row_13 = lo_row_12.
                  IF lo_row_13 IS NOT INITIAL.
                    lv_constanttype = lo_row_13->get_constanttype( ).
                    lv_constantvaluestring = lo_row_13->get_value( ).
                  ENDIF.
                ENDLOOP.
              ENDIF.
              lv_boolean = lo_row_11->get_inverse( ).
              lv_nullfilteroption = lo_row_11->get_nullfilter( ).
              lv_aggtype = lo_row_11->get_aggregation( ).
              LOOP AT lo_row_11->get_aggrfunctionparameters( ) into ls_row_4.
                lv_key = ls_row_4-key.
                lo_value = ls_row_4-value.
                IF lo_value IS NOT INITIAL.
                  lv_aggfunctionparamvalue = lo_value->get_value( ).
                ENDIF.
              ENDLOOP.
              LOOP AT lo_row_11->get_aggregationpartitionby( ) into lo_row_14.
                lo_row_15 = lo_row_14.
                IF lo_row_15 IS NOT INITIAL.
                  lv_limitedstring = lo_row_15->get_fieldname( ).
                  lv_timegranularity = lo_row_15->get_timegranularity( ).
                ENDIF.
              ENDLOOP.
              lo_topicconstantvalue = lo_row_11->get_range( ).
              IF lo_topicconstantvalue IS NOT INITIAL.
                lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                  lo_row_13 = lo_row_12.
                  IF lo_row_13 IS NOT INITIAL.
                    lv_constanttype = lo_row_13->get_constanttype( ).
                    lv_constantvaluestring = lo_row_13->get_value( ).
                  ENDIF.
                ENDLOOP.
              ENDIF.
              lv_boolean = lo_row_11->get_inclusive( ).
              lv_timegranularity = lo_row_11->get_timegranularity( ).
              lo_topicconstantvalue = lo_row_11->get_lastnextoffset( ).
              IF lo_topicconstantvalue IS NOT INITIAL.
                lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                  lo_row_13 = lo_row_12.
                  IF lo_row_13 IS NOT INITIAL.
                    lv_constanttype = lo_row_13->get_constanttype( ).
                    lv_constantvaluestring = lo_row_13->get_value( ).
                  ENDIF.
                ENDLOOP.
              ENDIF.
              LOOP AT lo_row_11->get_aggmetrics( ) into lo_row_16.
                lo_row_17 = lo_row_16.
                IF lo_row_17 IS NOT INITIAL.
                  lo_identifier = lo_row_17->get_metricoperand( ).
                  IF lo_identifier IS NOT INITIAL.
                    lv_limitedstring = lo_identifier->get_identity( ).
                  ENDIF.
                  lv_aggtype = lo_row_17->get_function( ).
                  lv_topicsortdirection = lo_row_17->get_sortdirection( ).
                ENDIF.
              ENDLOOP.
              lo_topicconstantvalue = lo_row_11->get_topbottomlimit( ).
              IF lo_topicconstantvalue IS NOT INITIAL.
                lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                  lo_row_13 = lo_row_12.
                  IF lo_row_13 IS NOT INITIAL.
                    lv_constanttype = lo_row_13->get_constanttype( ).
                    lv_constantvaluestring = lo_row_13->get_value( ).
                  ENDIF.
                ENDLOOP.
              ENDIF.
              lv_topicsortdirection = lo_row_11->get_sortdirection( ).
              lo_anchor = lo_row_11->get_anchor( ).
              IF lo_anchor IS NOT INITIAL.
                lv_anchortype = lo_anchor->get_anchortype( ).
                lv_timegranularity = lo_anchor->get_timegranularity( ).
                lv_integer = lo_anchor->get_offset( ).
              ENDIF.
            ENDIF.
          ENDLOOP.
        ENDLOOP.
        lo_topicsortclause = lo_topicir->get_sort( ).
        IF lo_topicsortclause IS NOT INITIAL.
          lo_identifier = lo_topicsortclause->get_operand( ).
          IF lo_identifier IS NOT INITIAL.
            lv_limitedstring = lo_identifier->get_identity( ).
          ENDIF.
          lv_topicsortdirection = lo_topicsortclause->get_sortdirection( ).
        ENDIF.
        lo_topicircontributionanal = lo_topicir->get_contributionanalysis( ).
        IF lo_topicircontributionanal IS NOT INITIAL.
          LOOP AT lo_topicircontributionanal->get_factors( ) into lo_row_18.
            lo_row_19 = lo_row_18.
            IF lo_row_19 IS NOT INITIAL.
              lv_limitedstring = lo_row_19->get_fieldname( ).
            ENDIF.
          ENDLOOP.
          lo_contributionanalysistim = lo_topicircontributionanal->get_timeranges( ).
          IF lo_contributionanalysistim IS NOT INITIAL.
            lo_topicirfilteroption = lo_contributionanalysistim->get_startrange( ).
            IF lo_topicirfilteroption IS NOT INITIAL.
              lv_topicirfiltertype = lo_topicirfilteroption->get_filtertype( ).
              lv_filterclass = lo_topicirfilteroption->get_filterclass( ).
              lo_identifier = lo_topicirfilteroption->get_operandfield( ).
              IF lo_identifier IS NOT INITIAL.
                lv_limitedstring = lo_identifier->get_identity( ).
              ENDIF.
              lv_topicirfilterfunction = lo_topicirfilteroption->get_function( ).
              lo_topicconstantvalue = lo_topicirfilteroption->get_constant( ).
              IF lo_topicconstantvalue IS NOT INITIAL.
                lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                  lo_row_13 = lo_row_12.
                  IF lo_row_13 IS NOT INITIAL.
                    lv_constanttype = lo_row_13->get_constanttype( ).
                    lv_constantvaluestring = lo_row_13->get_value( ).
                  ENDIF.
                ENDLOOP.
              ENDIF.
              lv_boolean = lo_topicirfilteroption->get_inverse( ).
              lv_nullfilteroption = lo_topicirfilteroption->get_nullfilter( ).
              lv_aggtype = lo_topicirfilteroption->get_aggregation( ).
              LOOP AT lo_topicirfilteroption->get_aggrfunctionparameters( ) into ls_row_4.
                lv_key = ls_row_4-key.
                lo_value = ls_row_4-value.
                IF lo_value IS NOT INITIAL.
                  lv_aggfunctionparamvalue = lo_value->get_value( ).
                ENDIF.
              ENDLOOP.
              LOOP AT lo_topicirfilteroption->get_aggregationpartitionby( ) into lo_row_14.
                lo_row_15 = lo_row_14.
                IF lo_row_15 IS NOT INITIAL.
                  lv_limitedstring = lo_row_15->get_fieldname( ).
                  lv_timegranularity = lo_row_15->get_timegranularity( ).
                ENDIF.
              ENDLOOP.
              lo_topicconstantvalue = lo_topicirfilteroption->get_range( ).
              IF lo_topicconstantvalue IS NOT INITIAL.
                lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                  lo_row_13 = lo_row_12.
                  IF lo_row_13 IS NOT INITIAL.
                    lv_constanttype = lo_row_13->get_constanttype( ).
                    lv_constantvaluestring = lo_row_13->get_value( ).
                  ENDIF.
                ENDLOOP.
              ENDIF.
              lv_boolean = lo_topicirfilteroption->get_inclusive( ).
              lv_timegranularity = lo_topicirfilteroption->get_timegranularity( ).
              lo_topicconstantvalue = lo_topicirfilteroption->get_lastnextoffset( ).
              IF lo_topicconstantvalue IS NOT INITIAL.
                lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                  lo_row_13 = lo_row_12.
                  IF lo_row_13 IS NOT INITIAL.
                    lv_constanttype = lo_row_13->get_constanttype( ).
                    lv_constantvaluestring = lo_row_13->get_value( ).
                  ENDIF.
                ENDLOOP.
              ENDIF.
              LOOP AT lo_topicirfilteroption->get_aggmetrics( ) into lo_row_16.
                lo_row_17 = lo_row_16.
                IF lo_row_17 IS NOT INITIAL.
                  lo_identifier = lo_row_17->get_metricoperand( ).
                  IF lo_identifier IS NOT INITIAL.
                    lv_limitedstring = lo_identifier->get_identity( ).
                  ENDIF.
                  lv_aggtype = lo_row_17->get_function( ).
                  lv_topicsortdirection = lo_row_17->get_sortdirection( ).
                ENDIF.
              ENDLOOP.
              lo_topicconstantvalue = lo_topicirfilteroption->get_topbottomlimit( ).
              IF lo_topicconstantvalue IS NOT INITIAL.
                lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                  lo_row_13 = lo_row_12.
                  IF lo_row_13 IS NOT INITIAL.
                    lv_constanttype = lo_row_13->get_constanttype( ).
                    lv_constantvaluestring = lo_row_13->get_value( ).
                  ENDIF.
                ENDLOOP.
              ENDIF.
              lv_topicsortdirection = lo_topicirfilteroption->get_sortdirection( ).
              lo_anchor = lo_topicirfilteroption->get_anchor( ).
              IF lo_anchor IS NOT INITIAL.
                lv_anchortype = lo_anchor->get_anchortype( ).
                lv_timegranularity = lo_anchor->get_timegranularity( ).
                lv_integer = lo_anchor->get_offset( ).
              ENDIF.
            ENDIF.
            lo_topicirfilteroption = lo_contributionanalysistim->get_endrange( ).
            IF lo_topicirfilteroption IS NOT INITIAL.
              lv_topicirfiltertype = lo_topicirfilteroption->get_filtertype( ).
              lv_filterclass = lo_topicirfilteroption->get_filterclass( ).
              lo_identifier = lo_topicirfilteroption->get_operandfield( ).
              IF lo_identifier IS NOT INITIAL.
                lv_limitedstring = lo_identifier->get_identity( ).
              ENDIF.
              lv_topicirfilterfunction = lo_topicirfilteroption->get_function( ).
              lo_topicconstantvalue = lo_topicirfilteroption->get_constant( ).
              IF lo_topicconstantvalue IS NOT INITIAL.
                lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                  lo_row_13 = lo_row_12.
                  IF lo_row_13 IS NOT INITIAL.
                    lv_constanttype = lo_row_13->get_constanttype( ).
                    lv_constantvaluestring = lo_row_13->get_value( ).
                  ENDIF.
                ENDLOOP.
              ENDIF.
              lv_boolean = lo_topicirfilteroption->get_inverse( ).
              lv_nullfilteroption = lo_topicirfilteroption->get_nullfilter( ).
              lv_aggtype = lo_topicirfilteroption->get_aggregation( ).
              LOOP AT lo_topicirfilteroption->get_aggrfunctionparameters( ) into ls_row_4.
                lv_key = ls_row_4-key.
                lo_value = ls_row_4-value.
                IF lo_value IS NOT INITIAL.
                  lv_aggfunctionparamvalue = lo_value->get_value( ).
                ENDIF.
              ENDLOOP.
              LOOP AT lo_topicirfilteroption->get_aggregationpartitionby( ) into lo_row_14.
                lo_row_15 = lo_row_14.
                IF lo_row_15 IS NOT INITIAL.
                  lv_limitedstring = lo_row_15->get_fieldname( ).
                  lv_timegranularity = lo_row_15->get_timegranularity( ).
                ENDIF.
              ENDLOOP.
              lo_topicconstantvalue = lo_topicirfilteroption->get_range( ).
              IF lo_topicconstantvalue IS NOT INITIAL.
                lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                  lo_row_13 = lo_row_12.
                  IF lo_row_13 IS NOT INITIAL.
                    lv_constanttype = lo_row_13->get_constanttype( ).
                    lv_constantvaluestring = lo_row_13->get_value( ).
                  ENDIF.
                ENDLOOP.
              ENDIF.
              lv_boolean = lo_topicirfilteroption->get_inclusive( ).
              lv_timegranularity = lo_topicirfilteroption->get_timegranularity( ).
              lo_topicconstantvalue = lo_topicirfilteroption->get_lastnextoffset( ).
              IF lo_topicconstantvalue IS NOT INITIAL.
                lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                  lo_row_13 = lo_row_12.
                  IF lo_row_13 IS NOT INITIAL.
                    lv_constanttype = lo_row_13->get_constanttype( ).
                    lv_constantvaluestring = lo_row_13->get_value( ).
                  ENDIF.
                ENDLOOP.
              ENDIF.
              LOOP AT lo_topicirfilteroption->get_aggmetrics( ) into lo_row_16.
                lo_row_17 = lo_row_16.
                IF lo_row_17 IS NOT INITIAL.
                  lo_identifier = lo_row_17->get_metricoperand( ).
                  IF lo_identifier IS NOT INITIAL.
                    lv_limitedstring = lo_identifier->get_identity( ).
                  ENDIF.
                  lv_aggtype = lo_row_17->get_function( ).
                  lv_topicsortdirection = lo_row_17->get_sortdirection( ).
                ENDIF.
              ENDLOOP.
              lo_topicconstantvalue = lo_topicirfilteroption->get_topbottomlimit( ).
              IF lo_topicconstantvalue IS NOT INITIAL.
                lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                  lo_row_13 = lo_row_12.
                  IF lo_row_13 IS NOT INITIAL.
                    lv_constanttype = lo_row_13->get_constanttype( ).
                    lv_constantvaluestring = lo_row_13->get_value( ).
                  ENDIF.
                ENDLOOP.
              ENDIF.
              lv_topicsortdirection = lo_topicirfilteroption->get_sortdirection( ).
              lo_anchor = lo_topicirfilteroption->get_anchor( ).
              IF lo_anchor IS NOT INITIAL.
                lv_anchortype = lo_anchor->get_anchortype( ).
                lv_timegranularity = lo_anchor->get_timegranularity( ).
                lv_integer = lo_anchor->get_offset( ).
              ENDIF.
            ENDIF.
          ENDIF.
          lv_contributionanalysisdir = lo_topicircontributionanal->get_direction( ).
          lv_contributionanalysissor = lo_topicircontributionanal->get_sorttype( ).
        ENDIF.
        lo_visualoptions = lo_topicir->get_visual( ).
        IF lo_visualoptions IS NOT INITIAL.
          lv_limitedstring = lo_visualoptions->get_type( ).
        ENDIF.
      ENDIF.
      lo_topicvisual = lo_row_1->get_primaryvisual( ).
      IF lo_topicvisual IS NOT INITIAL.
        lv_limitedstring = lo_topicvisual->get_visualid( ).
        lv_visualrole = lo_topicvisual->get_role( ).
        lo_topicir = lo_topicvisual->get_ir( ).
        IF lo_topicir IS NOT INITIAL.
          LOOP AT lo_topicir->get_metrics( ) into lo_row_2.
            lo_row_3 = lo_row_2.
            IF lo_row_3 IS NOT INITIAL.
              lo_identifier = lo_row_3->get_metricid( ).
              IF lo_identifier IS NOT INITIAL.
                lv_limitedstring = lo_identifier->get_identity( ).
              ENDIF.
              lo_aggfunction = lo_row_3->get_function( ).
              IF lo_aggfunction IS NOT INITIAL.
                lv_aggtype = lo_aggfunction->get_aggregation( ).
                LOOP AT lo_aggfunction->get_aggrfunctionparameters( ) into ls_row_4.
                  lv_key = ls_row_4-key.
                  lo_value = ls_row_4-value.
                  IF lo_value IS NOT INITIAL.
                    lv_aggfunctionparamvalue = lo_value->get_value( ).
                  ENDIF.
                ENDLOOP.
                lv_topictimegranularity = lo_aggfunction->get_period( ).
                lv_limitedstring = lo_aggfunction->get_periodfield( ).
              ENDIF.
              LOOP AT lo_row_3->get_operands( ) into lo_row_5.
                lo_row_6 = lo_row_5.
                IF lo_row_6 IS NOT INITIAL.
                  lv_limitedstring = lo_row_6->get_identity( ).
                ENDIF.
              ENDLOOP.
              lo_topicircomparisonmethod = lo_row_3->get_comparisonmethod( ).
              IF lo_topicircomparisonmethod IS NOT INITIAL.
                lv_comparisonmethodtype = lo_topicircomparisonmethod->get_type( ).
                lv_topictimegranularity = lo_topicircomparisonmethod->get_period( ).
                lv_integer = lo_topicircomparisonmethod->get_windowsize( ).
              ENDIF.
              lv_expression = lo_row_3->get_expression( ).
              LOOP AT lo_row_3->get_calculatedfieldreferen00( ) into lo_row_5.
                lo_row_6 = lo_row_5.
                IF lo_row_6 IS NOT INITIAL.
                  lv_limitedstring = lo_row_6->get_identity( ).
                ENDIF.
              ENDLOOP.
              lv_displayformat = lo_row_3->get_displayformat( ).
              lo_displayformatoptions = lo_row_3->get_displayformatoptions( ).
              IF lo_displayformatoptions IS NOT INITIAL.
                lv_boolean = lo_displayformatoptions->get_useblankcellformat( ).
                lv_limitedstring = lo_displayformatoptions->get_blankcellformat( ).
                lv_limitedstring = lo_displayformatoptions->get_dateformat( ).
                lv_topicnumericseparatorsy = lo_displayformatoptions->get_decimalseparator( ).
                lv_limitedstring = lo_displayformatoptions->get_groupingseparator( ).
                lv_boolean = lo_displayformatoptions->get_usegrouping( ).
                lv_integer = lo_displayformatoptions->get_fractiondigits( ).
                lv_limitedstring = lo_displayformatoptions->get_prefix( ).
                lv_limitedstring = lo_displayformatoptions->get_suffix( ).
                lv_numberscale = lo_displayformatoptions->get_unitscaler( ).
                lo_negativeformat = lo_displayformatoptions->get_negativeformat( ).
                IF lo_negativeformat IS NOT INITIAL.
                  lv_limitedstring = lo_negativeformat->get_prefix( ).
                  lv_limitedstring = lo_negativeformat->get_suffix( ).
                ENDIF.
                lv_limitedstring = lo_displayformatoptions->get_currencysymbol( ).
              ENDIF.
              lo_namedentityref = lo_row_3->get_namedentity( ).
              IF lo_namedentityref IS NOT INITIAL.
                lv_limitedstring = lo_namedentityref->get_namedentityname( ).
              ENDIF.
            ENDIF.
          ENDLOOP.
          LOOP AT lo_topicir->get_groupbylist( ) into lo_row_7.
            lo_row_8 = lo_row_7.
            IF lo_row_8 IS NOT INITIAL.
              lo_identifier = lo_row_8->get_fieldname( ).
              IF lo_identifier IS NOT INITIAL.
                lv_limitedstring = lo_identifier->get_identity( ).
              ENDIF.
              lv_topictimegranularity = lo_row_8->get_timegranularity( ).
              lo_topicsortclause = lo_row_8->get_sort( ).
              IF lo_topicsortclause IS NOT INITIAL.
                lo_identifier = lo_topicsortclause->get_operand( ).
                IF lo_identifier IS NOT INITIAL.
                  lv_limitedstring = lo_identifier->get_identity( ).
                ENDIF.
                lv_topicsortdirection = lo_topicsortclause->get_sortdirection( ).
              ENDIF.
              lv_displayformat = lo_row_8->get_displayformat( ).
              lo_displayformatoptions = lo_row_8->get_displayformatoptions( ).
              IF lo_displayformatoptions IS NOT INITIAL.
                lv_boolean = lo_displayformatoptions->get_useblankcellformat( ).
                lv_limitedstring = lo_displayformatoptions->get_blankcellformat( ).
                lv_limitedstring = lo_displayformatoptions->get_dateformat( ).
                lv_topicnumericseparatorsy = lo_displayformatoptions->get_decimalseparator( ).
                lv_limitedstring = lo_displayformatoptions->get_groupingseparator( ).
                lv_boolean = lo_displayformatoptions->get_usegrouping( ).
                lv_integer = lo_displayformatoptions->get_fractiondigits( ).
                lv_limitedstring = lo_displayformatoptions->get_prefix( ).
                lv_limitedstring = lo_displayformatoptions->get_suffix( ).
                lv_numberscale = lo_displayformatoptions->get_unitscaler( ).
                lo_negativeformat = lo_displayformatoptions->get_negativeformat( ).
                IF lo_negativeformat IS NOT INITIAL.
                  lv_limitedstring = lo_negativeformat->get_prefix( ).
                  lv_limitedstring = lo_negativeformat->get_suffix( ).
                ENDIF.
                lv_limitedstring = lo_displayformatoptions->get_currencysymbol( ).
              ENDIF.
              lo_namedentityref = lo_row_8->get_namedentity( ).
              IF lo_namedentityref IS NOT INITIAL.
                lv_limitedstring = lo_namedentityref->get_namedentityname( ).
              ENDIF.
            ENDIF.
          ENDLOOP.
          LOOP AT lo_topicir->get_filters( ) into lt_row_9.
            LOOP AT lt_row_9 into lo_row_10.
              lo_row_11 = lo_row_10.
              IF lo_row_11 IS NOT INITIAL.
                lv_topicirfiltertype = lo_row_11->get_filtertype( ).
                lv_filterclass = lo_row_11->get_filterclass( ).
                lo_identifier = lo_row_11->get_operandfield( ).
                IF lo_identifier IS NOT INITIAL.
                  lv_limitedstring = lo_identifier->get_identity( ).
                ENDIF.
                lv_topicirfilterfunction = lo_row_11->get_function( ).
                lo_topicconstantvalue = lo_row_11->get_constant( ).
                IF lo_topicconstantvalue IS NOT INITIAL.
                  lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                  LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                    lo_row_13 = lo_row_12.
                    IF lo_row_13 IS NOT INITIAL.
                      lv_constanttype = lo_row_13->get_constanttype( ).
                      lv_constantvaluestring = lo_row_13->get_value( ).
                    ENDIF.
                  ENDLOOP.
                ENDIF.
                lv_boolean = lo_row_11->get_inverse( ).
                lv_nullfilteroption = lo_row_11->get_nullfilter( ).
                lv_aggtype = lo_row_11->get_aggregation( ).
                LOOP AT lo_row_11->get_aggrfunctionparameters( ) into ls_row_4.
                  lv_key = ls_row_4-key.
                  lo_value = ls_row_4-value.
                  IF lo_value IS NOT INITIAL.
                    lv_aggfunctionparamvalue = lo_value->get_value( ).
                  ENDIF.
                ENDLOOP.
                LOOP AT lo_row_11->get_aggregationpartitionby( ) into lo_row_14.
                  lo_row_15 = lo_row_14.
                  IF lo_row_15 IS NOT INITIAL.
                    lv_limitedstring = lo_row_15->get_fieldname( ).
                    lv_timegranularity = lo_row_15->get_timegranularity( ).
                  ENDIF.
                ENDLOOP.
                lo_topicconstantvalue = lo_row_11->get_range( ).
                IF lo_topicconstantvalue IS NOT INITIAL.
                  lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                  LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                    lo_row_13 = lo_row_12.
                    IF lo_row_13 IS NOT INITIAL.
                      lv_constanttype = lo_row_13->get_constanttype( ).
                      lv_constantvaluestring = lo_row_13->get_value( ).
                    ENDIF.
                  ENDLOOP.
                ENDIF.
                lv_boolean = lo_row_11->get_inclusive( ).
                lv_timegranularity = lo_row_11->get_timegranularity( ).
                lo_topicconstantvalue = lo_row_11->get_lastnextoffset( ).
                IF lo_topicconstantvalue IS NOT INITIAL.
                  lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                  LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                    lo_row_13 = lo_row_12.
                    IF lo_row_13 IS NOT INITIAL.
                      lv_constanttype = lo_row_13->get_constanttype( ).
                      lv_constantvaluestring = lo_row_13->get_value( ).
                    ENDIF.
                  ENDLOOP.
                ENDIF.
                LOOP AT lo_row_11->get_aggmetrics( ) into lo_row_16.
                  lo_row_17 = lo_row_16.
                  IF lo_row_17 IS NOT INITIAL.
                    lo_identifier = lo_row_17->get_metricoperand( ).
                    IF lo_identifier IS NOT INITIAL.
                      lv_limitedstring = lo_identifier->get_identity( ).
                    ENDIF.
                    lv_aggtype = lo_row_17->get_function( ).
                    lv_topicsortdirection = lo_row_17->get_sortdirection( ).
                  ENDIF.
                ENDLOOP.
                lo_topicconstantvalue = lo_row_11->get_topbottomlimit( ).
                IF lo_topicconstantvalue IS NOT INITIAL.
                  lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                  LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                    lo_row_13 = lo_row_12.
                    IF lo_row_13 IS NOT INITIAL.
                      lv_constanttype = lo_row_13->get_constanttype( ).
                      lv_constantvaluestring = lo_row_13->get_value( ).
                    ENDIF.
                  ENDLOOP.
                ENDIF.
                lv_topicsortdirection = lo_row_11->get_sortdirection( ).
                lo_anchor = lo_row_11->get_anchor( ).
                IF lo_anchor IS NOT INITIAL.
                  lv_anchortype = lo_anchor->get_anchortype( ).
                  lv_timegranularity = lo_anchor->get_timegranularity( ).
                  lv_integer = lo_anchor->get_offset( ).
                ENDIF.
              ENDIF.
            ENDLOOP.
          ENDLOOP.
          lo_topicsortclause = lo_topicir->get_sort( ).
          IF lo_topicsortclause IS NOT INITIAL.
            lo_identifier = lo_topicsortclause->get_operand( ).
            IF lo_identifier IS NOT INITIAL.
              lv_limitedstring = lo_identifier->get_identity( ).
            ENDIF.
            lv_topicsortdirection = lo_topicsortclause->get_sortdirection( ).
          ENDIF.
          lo_topicircontributionanal = lo_topicir->get_contributionanalysis( ).
          IF lo_topicircontributionanal IS NOT INITIAL.
            LOOP AT lo_topicircontributionanal->get_factors( ) into lo_row_18.
              lo_row_19 = lo_row_18.
              IF lo_row_19 IS NOT INITIAL.
                lv_limitedstring = lo_row_19->get_fieldname( ).
              ENDIF.
            ENDLOOP.
            lo_contributionanalysistim = lo_topicircontributionanal->get_timeranges( ).
            IF lo_contributionanalysistim IS NOT INITIAL.
              lo_topicirfilteroption = lo_contributionanalysistim->get_startrange( ).
              IF lo_topicirfilteroption IS NOT INITIAL.
                lv_topicirfiltertype = lo_topicirfilteroption->get_filtertype( ).
                lv_filterclass = lo_topicirfilteroption->get_filterclass( ).
                lo_identifier = lo_topicirfilteroption->get_operandfield( ).
                IF lo_identifier IS NOT INITIAL.
                  lv_limitedstring = lo_identifier->get_identity( ).
                ENDIF.
                lv_topicirfilterfunction = lo_topicirfilteroption->get_function( ).
                lo_topicconstantvalue = lo_topicirfilteroption->get_constant( ).
                IF lo_topicconstantvalue IS NOT INITIAL.
                  lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                  LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                    lo_row_13 = lo_row_12.
                    IF lo_row_13 IS NOT INITIAL.
                      lv_constanttype = lo_row_13->get_constanttype( ).
                      lv_constantvaluestring = lo_row_13->get_value( ).
                    ENDIF.
                  ENDLOOP.
                ENDIF.
                lv_boolean = lo_topicirfilteroption->get_inverse( ).
                lv_nullfilteroption = lo_topicirfilteroption->get_nullfilter( ).
                lv_aggtype = lo_topicirfilteroption->get_aggregation( ).
                LOOP AT lo_topicirfilteroption->get_aggrfunctionparameters( ) into ls_row_4.
                  lv_key = ls_row_4-key.
                  lo_value = ls_row_4-value.
                  IF lo_value IS NOT INITIAL.
                    lv_aggfunctionparamvalue = lo_value->get_value( ).
                  ENDIF.
                ENDLOOP.
                LOOP AT lo_topicirfilteroption->get_aggregationpartitionby( ) into lo_row_14.
                  lo_row_15 = lo_row_14.
                  IF lo_row_15 IS NOT INITIAL.
                    lv_limitedstring = lo_row_15->get_fieldname( ).
                    lv_timegranularity = lo_row_15->get_timegranularity( ).
                  ENDIF.
                ENDLOOP.
                lo_topicconstantvalue = lo_topicirfilteroption->get_range( ).
                IF lo_topicconstantvalue IS NOT INITIAL.
                  lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                  LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                    lo_row_13 = lo_row_12.
                    IF lo_row_13 IS NOT INITIAL.
                      lv_constanttype = lo_row_13->get_constanttype( ).
                      lv_constantvaluestring = lo_row_13->get_value( ).
                    ENDIF.
                  ENDLOOP.
                ENDIF.
                lv_boolean = lo_topicirfilteroption->get_inclusive( ).
                lv_timegranularity = lo_topicirfilteroption->get_timegranularity( ).
                lo_topicconstantvalue = lo_topicirfilteroption->get_lastnextoffset( ).
                IF lo_topicconstantvalue IS NOT INITIAL.
                  lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                  LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                    lo_row_13 = lo_row_12.
                    IF lo_row_13 IS NOT INITIAL.
                      lv_constanttype = lo_row_13->get_constanttype( ).
                      lv_constantvaluestring = lo_row_13->get_value( ).
                    ENDIF.
                  ENDLOOP.
                ENDIF.
                LOOP AT lo_topicirfilteroption->get_aggmetrics( ) into lo_row_16.
                  lo_row_17 = lo_row_16.
                  IF lo_row_17 IS NOT INITIAL.
                    lo_identifier = lo_row_17->get_metricoperand( ).
                    IF lo_identifier IS NOT INITIAL.
                      lv_limitedstring = lo_identifier->get_identity( ).
                    ENDIF.
                    lv_aggtype = lo_row_17->get_function( ).
                    lv_topicsortdirection = lo_row_17->get_sortdirection( ).
                  ENDIF.
                ENDLOOP.
                lo_topicconstantvalue = lo_topicirfilteroption->get_topbottomlimit( ).
                IF lo_topicconstantvalue IS NOT INITIAL.
                  lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                  LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                    lo_row_13 = lo_row_12.
                    IF lo_row_13 IS NOT INITIAL.
                      lv_constanttype = lo_row_13->get_constanttype( ).
                      lv_constantvaluestring = lo_row_13->get_value( ).
                    ENDIF.
                  ENDLOOP.
                ENDIF.
                lv_topicsortdirection = lo_topicirfilteroption->get_sortdirection( ).
                lo_anchor = lo_topicirfilteroption->get_anchor( ).
                IF lo_anchor IS NOT INITIAL.
                  lv_anchortype = lo_anchor->get_anchortype( ).
                  lv_timegranularity = lo_anchor->get_timegranularity( ).
                  lv_integer = lo_anchor->get_offset( ).
                ENDIF.
              ENDIF.
              lo_topicirfilteroption = lo_contributionanalysistim->get_endrange( ).
              IF lo_topicirfilteroption IS NOT INITIAL.
                lv_topicirfiltertype = lo_topicirfilteroption->get_filtertype( ).
                lv_filterclass = lo_topicirfilteroption->get_filterclass( ).
                lo_identifier = lo_topicirfilteroption->get_operandfield( ).
                IF lo_identifier IS NOT INITIAL.
                  lv_limitedstring = lo_identifier->get_identity( ).
                ENDIF.
                lv_topicirfilterfunction = lo_topicirfilteroption->get_function( ).
                lo_topicconstantvalue = lo_topicirfilteroption->get_constant( ).
                IF lo_topicconstantvalue IS NOT INITIAL.
                  lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                  LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                    lo_row_13 = lo_row_12.
                    IF lo_row_13 IS NOT INITIAL.
                      lv_constanttype = lo_row_13->get_constanttype( ).
                      lv_constantvaluestring = lo_row_13->get_value( ).
                    ENDIF.
                  ENDLOOP.
                ENDIF.
                lv_boolean = lo_topicirfilteroption->get_inverse( ).
                lv_nullfilteroption = lo_topicirfilteroption->get_nullfilter( ).
                lv_aggtype = lo_topicirfilteroption->get_aggregation( ).
                LOOP AT lo_topicirfilteroption->get_aggrfunctionparameters( ) into ls_row_4.
                  lv_key = ls_row_4-key.
                  lo_value = ls_row_4-value.
                  IF lo_value IS NOT INITIAL.
                    lv_aggfunctionparamvalue = lo_value->get_value( ).
                  ENDIF.
                ENDLOOP.
                LOOP AT lo_topicirfilteroption->get_aggregationpartitionby( ) into lo_row_14.
                  lo_row_15 = lo_row_14.
                  IF lo_row_15 IS NOT INITIAL.
                    lv_limitedstring = lo_row_15->get_fieldname( ).
                    lv_timegranularity = lo_row_15->get_timegranularity( ).
                  ENDIF.
                ENDLOOP.
                lo_topicconstantvalue = lo_topicirfilteroption->get_range( ).
                IF lo_topicconstantvalue IS NOT INITIAL.
                  lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                  LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                    lo_row_13 = lo_row_12.
                    IF lo_row_13 IS NOT INITIAL.
                      lv_constanttype = lo_row_13->get_constanttype( ).
                      lv_constantvaluestring = lo_row_13->get_value( ).
                    ENDIF.
                  ENDLOOP.
                ENDIF.
                lv_boolean = lo_topicirfilteroption->get_inclusive( ).
                lv_timegranularity = lo_topicirfilteroption->get_timegranularity( ).
                lo_topicconstantvalue = lo_topicirfilteroption->get_lastnextoffset( ).
                IF lo_topicconstantvalue IS NOT INITIAL.
                  lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                  LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                    lo_row_13 = lo_row_12.
                    IF lo_row_13 IS NOT INITIAL.
                      lv_constanttype = lo_row_13->get_constanttype( ).
                      lv_constantvaluestring = lo_row_13->get_value( ).
                    ENDIF.
                  ENDLOOP.
                ENDIF.
                LOOP AT lo_topicirfilteroption->get_aggmetrics( ) into lo_row_16.
                  lo_row_17 = lo_row_16.
                  IF lo_row_17 IS NOT INITIAL.
                    lo_identifier = lo_row_17->get_metricoperand( ).
                    IF lo_identifier IS NOT INITIAL.
                      lv_limitedstring = lo_identifier->get_identity( ).
                    ENDIF.
                    lv_aggtype = lo_row_17->get_function( ).
                    lv_topicsortdirection = lo_row_17->get_sortdirection( ).
                  ENDIF.
                ENDLOOP.
                lo_topicconstantvalue = lo_topicirfilteroption->get_topbottomlimit( ).
                IF lo_topicconstantvalue IS NOT INITIAL.
                  lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                  lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                  LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                    lo_row_13 = lo_row_12.
                    IF lo_row_13 IS NOT INITIAL.
                      lv_constanttype = lo_row_13->get_constanttype( ).
                      lv_constantvaluestring = lo_row_13->get_value( ).
                    ENDIF.
                  ENDLOOP.
                ENDIF.
                lv_topicsortdirection = lo_topicirfilteroption->get_sortdirection( ).
                lo_anchor = lo_topicirfilteroption->get_anchor( ).
                IF lo_anchor IS NOT INITIAL.
                  lv_anchortype = lo_anchor->get_anchortype( ).
                  lv_timegranularity = lo_anchor->get_timegranularity( ).
                  lv_integer = lo_anchor->get_offset( ).
                ENDIF.
              ENDIF.
            ENDIF.
            lv_contributionanalysisdir = lo_topicircontributionanal->get_direction( ).
            lv_contributionanalysissor = lo_topicircontributionanal->get_sorttype( ).
          ENDIF.
          lo_visualoptions = lo_topicir->get_visual( ).
          IF lo_visualoptions IS NOT INITIAL.
            lv_limitedstring = lo_visualoptions->get_type( ).
          ENDIF.
        ENDIF.
        LOOP AT lo_topicvisual->get_supportingvisuals( ) into lo_row_20.
          lo_row_21 = lo_row_20.
          IF lo_row_21 IS NOT INITIAL.
            lv_limitedstring = lo_row_21->get_visualid( ).
            lv_visualrole = lo_row_21->get_role( ).
            lo_topicir = lo_row_21->get_ir( ).
            IF lo_topicir IS NOT INITIAL.
              LOOP AT lo_topicir->get_metrics( ) into lo_row_2.
                lo_row_3 = lo_row_2.
                IF lo_row_3 IS NOT INITIAL.
                  lo_identifier = lo_row_3->get_metricid( ).
                  IF lo_identifier IS NOT INITIAL.
                    lv_limitedstring = lo_identifier->get_identity( ).
                  ENDIF.
                  lo_aggfunction = lo_row_3->get_function( ).
                  IF lo_aggfunction IS NOT INITIAL.
                    lv_aggtype = lo_aggfunction->get_aggregation( ).
                    LOOP AT lo_aggfunction->get_aggrfunctionparameters( ) into ls_row_4.
                      lv_key = ls_row_4-key.
                      lo_value = ls_row_4-value.
                      IF lo_value IS NOT INITIAL.
                        lv_aggfunctionparamvalue = lo_value->get_value( ).
                      ENDIF.
                    ENDLOOP.
                    lv_topictimegranularity = lo_aggfunction->get_period( ).
                    lv_limitedstring = lo_aggfunction->get_periodfield( ).
                  ENDIF.
                  LOOP AT lo_row_3->get_operands( ) into lo_row_5.
                    lo_row_6 = lo_row_5.
                    IF lo_row_6 IS NOT INITIAL.
                      lv_limitedstring = lo_row_6->get_identity( ).
                    ENDIF.
                  ENDLOOP.
                  lo_topicircomparisonmethod = lo_row_3->get_comparisonmethod( ).
                  IF lo_topicircomparisonmethod IS NOT INITIAL.
                    lv_comparisonmethodtype = lo_topicircomparisonmethod->get_type( ).
                    lv_topictimegranularity = lo_topicircomparisonmethod->get_period( ).
                    lv_integer = lo_topicircomparisonmethod->get_windowsize( ).
                  ENDIF.
                  lv_expression = lo_row_3->get_expression( ).
                  LOOP AT lo_row_3->get_calculatedfieldreferen00( ) into lo_row_5.
                    lo_row_6 = lo_row_5.
                    IF lo_row_6 IS NOT INITIAL.
                      lv_limitedstring = lo_row_6->get_identity( ).
                    ENDIF.
                  ENDLOOP.
                  lv_displayformat = lo_row_3->get_displayformat( ).
                  lo_displayformatoptions = lo_row_3->get_displayformatoptions( ).
                  IF lo_displayformatoptions IS NOT INITIAL.
                    lv_boolean = lo_displayformatoptions->get_useblankcellformat( ).
                    lv_limitedstring = lo_displayformatoptions->get_blankcellformat( ).
                    lv_limitedstring = lo_displayformatoptions->get_dateformat( ).
                    lv_topicnumericseparatorsy = lo_displayformatoptions->get_decimalseparator( ).
                    lv_limitedstring = lo_displayformatoptions->get_groupingseparator( ).
                    lv_boolean = lo_displayformatoptions->get_usegrouping( ).
                    lv_integer = lo_displayformatoptions->get_fractiondigits( ).
                    lv_limitedstring = lo_displayformatoptions->get_prefix( ).
                    lv_limitedstring = lo_displayformatoptions->get_suffix( ).
                    lv_numberscale = lo_displayformatoptions->get_unitscaler( ).
                    lo_negativeformat = lo_displayformatoptions->get_negativeformat( ).
                    IF lo_negativeformat IS NOT INITIAL.
                      lv_limitedstring = lo_negativeformat->get_prefix( ).
                      lv_limitedstring = lo_negativeformat->get_suffix( ).
                    ENDIF.
                    lv_limitedstring = lo_displayformatoptions->get_currencysymbol( ).
                  ENDIF.
                  lo_namedentityref = lo_row_3->get_namedentity( ).
                  IF lo_namedentityref IS NOT INITIAL.
                    lv_limitedstring = lo_namedentityref->get_namedentityname( ).
                  ENDIF.
                ENDIF.
              ENDLOOP.
              LOOP AT lo_topicir->get_groupbylist( ) into lo_row_7.
                lo_row_8 = lo_row_7.
                IF lo_row_8 IS NOT INITIAL.
                  lo_identifier = lo_row_8->get_fieldname( ).
                  IF lo_identifier IS NOT INITIAL.
                    lv_limitedstring = lo_identifier->get_identity( ).
                  ENDIF.
                  lv_topictimegranularity = lo_row_8->get_timegranularity( ).
                  lo_topicsortclause = lo_row_8->get_sort( ).
                  IF lo_topicsortclause IS NOT INITIAL.
                    lo_identifier = lo_topicsortclause->get_operand( ).
                    IF lo_identifier IS NOT INITIAL.
                      lv_limitedstring = lo_identifier->get_identity( ).
                    ENDIF.
                    lv_topicsortdirection = lo_topicsortclause->get_sortdirection( ).
                  ENDIF.
                  lv_displayformat = lo_row_8->get_displayformat( ).
                  lo_displayformatoptions = lo_row_8->get_displayformatoptions( ).
                  IF lo_displayformatoptions IS NOT INITIAL.
                    lv_boolean = lo_displayformatoptions->get_useblankcellformat( ).
                    lv_limitedstring = lo_displayformatoptions->get_blankcellformat( ).
                    lv_limitedstring = lo_displayformatoptions->get_dateformat( ).
                    lv_topicnumericseparatorsy = lo_displayformatoptions->get_decimalseparator( ).
                    lv_limitedstring = lo_displayformatoptions->get_groupingseparator( ).
                    lv_boolean = lo_displayformatoptions->get_usegrouping( ).
                    lv_integer = lo_displayformatoptions->get_fractiondigits( ).
                    lv_limitedstring = lo_displayformatoptions->get_prefix( ).
                    lv_limitedstring = lo_displayformatoptions->get_suffix( ).
                    lv_numberscale = lo_displayformatoptions->get_unitscaler( ).
                    lo_negativeformat = lo_displayformatoptions->get_negativeformat( ).
                    IF lo_negativeformat IS NOT INITIAL.
                      lv_limitedstring = lo_negativeformat->get_prefix( ).
                      lv_limitedstring = lo_negativeformat->get_suffix( ).
                    ENDIF.
                    lv_limitedstring = lo_displayformatoptions->get_currencysymbol( ).
                  ENDIF.
                  lo_namedentityref = lo_row_8->get_namedentity( ).
                  IF lo_namedentityref IS NOT INITIAL.
                    lv_limitedstring = lo_namedentityref->get_namedentityname( ).
                  ENDIF.
                ENDIF.
              ENDLOOP.
              LOOP AT lo_topicir->get_filters( ) into lt_row_9.
                LOOP AT lt_row_9 into lo_row_10.
                  lo_row_11 = lo_row_10.
                  IF lo_row_11 IS NOT INITIAL.
                    lv_topicirfiltertype = lo_row_11->get_filtertype( ).
                    lv_filterclass = lo_row_11->get_filterclass( ).
                    lo_identifier = lo_row_11->get_operandfield( ).
                    IF lo_identifier IS NOT INITIAL.
                      lv_limitedstring = lo_identifier->get_identity( ).
                    ENDIF.
                    lv_topicirfilterfunction = lo_row_11->get_function( ).
                    lo_topicconstantvalue = lo_row_11->get_constant( ).
                    IF lo_topicconstantvalue IS NOT INITIAL.
                      lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                      LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                        lo_row_13 = lo_row_12.
                        IF lo_row_13 IS NOT INITIAL.
                          lv_constanttype = lo_row_13->get_constanttype( ).
                          lv_constantvaluestring = lo_row_13->get_value( ).
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lv_boolean = lo_row_11->get_inverse( ).
                    lv_nullfilteroption = lo_row_11->get_nullfilter( ).
                    lv_aggtype = lo_row_11->get_aggregation( ).
                    LOOP AT lo_row_11->get_aggrfunctionparameters( ) into ls_row_4.
                      lv_key = ls_row_4-key.
                      lo_value = ls_row_4-value.
                      IF lo_value IS NOT INITIAL.
                        lv_aggfunctionparamvalue = lo_value->get_value( ).
                      ENDIF.
                    ENDLOOP.
                    LOOP AT lo_row_11->get_aggregationpartitionby( ) into lo_row_14.
                      lo_row_15 = lo_row_14.
                      IF lo_row_15 IS NOT INITIAL.
                        lv_limitedstring = lo_row_15->get_fieldname( ).
                        lv_timegranularity = lo_row_15->get_timegranularity( ).
                      ENDIF.
                    ENDLOOP.
                    lo_topicconstantvalue = lo_row_11->get_range( ).
                    IF lo_topicconstantvalue IS NOT INITIAL.
                      lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                      LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                        lo_row_13 = lo_row_12.
                        IF lo_row_13 IS NOT INITIAL.
                          lv_constanttype = lo_row_13->get_constanttype( ).
                          lv_constantvaluestring = lo_row_13->get_value( ).
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lv_boolean = lo_row_11->get_inclusive( ).
                    lv_timegranularity = lo_row_11->get_timegranularity( ).
                    lo_topicconstantvalue = lo_row_11->get_lastnextoffset( ).
                    IF lo_topicconstantvalue IS NOT INITIAL.
                      lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                      LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                        lo_row_13 = lo_row_12.
                        IF lo_row_13 IS NOT INITIAL.
                          lv_constanttype = lo_row_13->get_constanttype( ).
                          lv_constantvaluestring = lo_row_13->get_value( ).
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    LOOP AT lo_row_11->get_aggmetrics( ) into lo_row_16.
                      lo_row_17 = lo_row_16.
                      IF lo_row_17 IS NOT INITIAL.
                        lo_identifier = lo_row_17->get_metricoperand( ).
                        IF lo_identifier IS NOT INITIAL.
                          lv_limitedstring = lo_identifier->get_identity( ).
                        ENDIF.
                        lv_aggtype = lo_row_17->get_function( ).
                        lv_topicsortdirection = lo_row_17->get_sortdirection( ).
                      ENDIF.
                    ENDLOOP.
                    lo_topicconstantvalue = lo_row_11->get_topbottomlimit( ).
                    IF lo_topicconstantvalue IS NOT INITIAL.
                      lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                      LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                        lo_row_13 = lo_row_12.
                        IF lo_row_13 IS NOT INITIAL.
                          lv_constanttype = lo_row_13->get_constanttype( ).
                          lv_constantvaluestring = lo_row_13->get_value( ).
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lv_topicsortdirection = lo_row_11->get_sortdirection( ).
                    lo_anchor = lo_row_11->get_anchor( ).
                    IF lo_anchor IS NOT INITIAL.
                      lv_anchortype = lo_anchor->get_anchortype( ).
                      lv_timegranularity = lo_anchor->get_timegranularity( ).
                      lv_integer = lo_anchor->get_offset( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
              ENDLOOP.
              lo_topicsortclause = lo_topicir->get_sort( ).
              IF lo_topicsortclause IS NOT INITIAL.
                lo_identifier = lo_topicsortclause->get_operand( ).
                IF lo_identifier IS NOT INITIAL.
                  lv_limitedstring = lo_identifier->get_identity( ).
                ENDIF.
                lv_topicsortdirection = lo_topicsortclause->get_sortdirection( ).
              ENDIF.
              lo_topicircontributionanal = lo_topicir->get_contributionanalysis( ).
              IF lo_topicircontributionanal IS NOT INITIAL.
                LOOP AT lo_topicircontributionanal->get_factors( ) into lo_row_18.
                  lo_row_19 = lo_row_18.
                  IF lo_row_19 IS NOT INITIAL.
                    lv_limitedstring = lo_row_19->get_fieldname( ).
                  ENDIF.
                ENDLOOP.
                lo_contributionanalysistim = lo_topicircontributionanal->get_timeranges( ).
                IF lo_contributionanalysistim IS NOT INITIAL.
                  lo_topicirfilteroption = lo_contributionanalysistim->get_startrange( ).
                  IF lo_topicirfilteroption IS NOT INITIAL.
                    lv_topicirfiltertype = lo_topicirfilteroption->get_filtertype( ).
                    lv_filterclass = lo_topicirfilteroption->get_filterclass( ).
                    lo_identifier = lo_topicirfilteroption->get_operandfield( ).
                    IF lo_identifier IS NOT INITIAL.
                      lv_limitedstring = lo_identifier->get_identity( ).
                    ENDIF.
                    lv_topicirfilterfunction = lo_topicirfilteroption->get_function( ).
                    lo_topicconstantvalue = lo_topicirfilteroption->get_constant( ).
                    IF lo_topicconstantvalue IS NOT INITIAL.
                      lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                      LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                        lo_row_13 = lo_row_12.
                        IF lo_row_13 IS NOT INITIAL.
                          lv_constanttype = lo_row_13->get_constanttype( ).
                          lv_constantvaluestring = lo_row_13->get_value( ).
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lv_boolean = lo_topicirfilteroption->get_inverse( ).
                    lv_nullfilteroption = lo_topicirfilteroption->get_nullfilter( ).
                    lv_aggtype = lo_topicirfilteroption->get_aggregation( ).
                    LOOP AT lo_topicirfilteroption->get_aggrfunctionparameters( ) into ls_row_4.
                      lv_key = ls_row_4-key.
                      lo_value = ls_row_4-value.
                      IF lo_value IS NOT INITIAL.
                        lv_aggfunctionparamvalue = lo_value->get_value( ).
                      ENDIF.
                    ENDLOOP.
                    LOOP AT lo_topicirfilteroption->get_aggregationpartitionby( ) into lo_row_14.
                      lo_row_15 = lo_row_14.
                      IF lo_row_15 IS NOT INITIAL.
                        lv_limitedstring = lo_row_15->get_fieldname( ).
                        lv_timegranularity = lo_row_15->get_timegranularity( ).
                      ENDIF.
                    ENDLOOP.
                    lo_topicconstantvalue = lo_topicirfilteroption->get_range( ).
                    IF lo_topicconstantvalue IS NOT INITIAL.
                      lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                      LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                        lo_row_13 = lo_row_12.
                        IF lo_row_13 IS NOT INITIAL.
                          lv_constanttype = lo_row_13->get_constanttype( ).
                          lv_constantvaluestring = lo_row_13->get_value( ).
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lv_boolean = lo_topicirfilteroption->get_inclusive( ).
                    lv_timegranularity = lo_topicirfilteroption->get_timegranularity( ).
                    lo_topicconstantvalue = lo_topicirfilteroption->get_lastnextoffset( ).
                    IF lo_topicconstantvalue IS NOT INITIAL.
                      lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                      LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                        lo_row_13 = lo_row_12.
                        IF lo_row_13 IS NOT INITIAL.
                          lv_constanttype = lo_row_13->get_constanttype( ).
                          lv_constantvaluestring = lo_row_13->get_value( ).
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    LOOP AT lo_topicirfilteroption->get_aggmetrics( ) into lo_row_16.
                      lo_row_17 = lo_row_16.
                      IF lo_row_17 IS NOT INITIAL.
                        lo_identifier = lo_row_17->get_metricoperand( ).
                        IF lo_identifier IS NOT INITIAL.
                          lv_limitedstring = lo_identifier->get_identity( ).
                        ENDIF.
                        lv_aggtype = lo_row_17->get_function( ).
                        lv_topicsortdirection = lo_row_17->get_sortdirection( ).
                      ENDIF.
                    ENDLOOP.
                    lo_topicconstantvalue = lo_topicirfilteroption->get_topbottomlimit( ).
                    IF lo_topicconstantvalue IS NOT INITIAL.
                      lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                      LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                        lo_row_13 = lo_row_12.
                        IF lo_row_13 IS NOT INITIAL.
                          lv_constanttype = lo_row_13->get_constanttype( ).
                          lv_constantvaluestring = lo_row_13->get_value( ).
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lv_topicsortdirection = lo_topicirfilteroption->get_sortdirection( ).
                    lo_anchor = lo_topicirfilteroption->get_anchor( ).
                    IF lo_anchor IS NOT INITIAL.
                      lv_anchortype = lo_anchor->get_anchortype( ).
                      lv_timegranularity = lo_anchor->get_timegranularity( ).
                      lv_integer = lo_anchor->get_offset( ).
                    ENDIF.
                  ENDIF.
                  lo_topicirfilteroption = lo_contributionanalysistim->get_endrange( ).
                  IF lo_topicirfilteroption IS NOT INITIAL.
                    lv_topicirfiltertype = lo_topicirfilteroption->get_filtertype( ).
                    lv_filterclass = lo_topicirfilteroption->get_filterclass( ).
                    lo_identifier = lo_topicirfilteroption->get_operandfield( ).
                    IF lo_identifier IS NOT INITIAL.
                      lv_limitedstring = lo_identifier->get_identity( ).
                    ENDIF.
                    lv_topicirfilterfunction = lo_topicirfilteroption->get_function( ).
                    lo_topicconstantvalue = lo_topicirfilteroption->get_constant( ).
                    IF lo_topicconstantvalue IS NOT INITIAL.
                      lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                      LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                        lo_row_13 = lo_row_12.
                        IF lo_row_13 IS NOT INITIAL.
                          lv_constanttype = lo_row_13->get_constanttype( ).
                          lv_constantvaluestring = lo_row_13->get_value( ).
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lv_boolean = lo_topicirfilteroption->get_inverse( ).
                    lv_nullfilteroption = lo_topicirfilteroption->get_nullfilter( ).
                    lv_aggtype = lo_topicirfilteroption->get_aggregation( ).
                    LOOP AT lo_topicirfilteroption->get_aggrfunctionparameters( ) into ls_row_4.
                      lv_key = ls_row_4-key.
                      lo_value = ls_row_4-value.
                      IF lo_value IS NOT INITIAL.
                        lv_aggfunctionparamvalue = lo_value->get_value( ).
                      ENDIF.
                    ENDLOOP.
                    LOOP AT lo_topicirfilteroption->get_aggregationpartitionby( ) into lo_row_14.
                      lo_row_15 = lo_row_14.
                      IF lo_row_15 IS NOT INITIAL.
                        lv_limitedstring = lo_row_15->get_fieldname( ).
                        lv_timegranularity = lo_row_15->get_timegranularity( ).
                      ENDIF.
                    ENDLOOP.
                    lo_topicconstantvalue = lo_topicirfilteroption->get_range( ).
                    IF lo_topicconstantvalue IS NOT INITIAL.
                      lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                      LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                        lo_row_13 = lo_row_12.
                        IF lo_row_13 IS NOT INITIAL.
                          lv_constanttype = lo_row_13->get_constanttype( ).
                          lv_constantvaluestring = lo_row_13->get_value( ).
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lv_boolean = lo_topicirfilteroption->get_inclusive( ).
                    lv_timegranularity = lo_topicirfilteroption->get_timegranularity( ).
                    lo_topicconstantvalue = lo_topicirfilteroption->get_lastnextoffset( ).
                    IF lo_topicconstantvalue IS NOT INITIAL.
                      lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                      LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                        lo_row_13 = lo_row_12.
                        IF lo_row_13 IS NOT INITIAL.
                          lv_constanttype = lo_row_13->get_constanttype( ).
                          lv_constantvaluestring = lo_row_13->get_value( ).
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    LOOP AT lo_topicirfilteroption->get_aggmetrics( ) into lo_row_16.
                      lo_row_17 = lo_row_16.
                      IF lo_row_17 IS NOT INITIAL.
                        lo_identifier = lo_row_17->get_metricoperand( ).
                        IF lo_identifier IS NOT INITIAL.
                          lv_limitedstring = lo_identifier->get_identity( ).
                        ENDIF.
                        lv_aggtype = lo_row_17->get_function( ).
                        lv_topicsortdirection = lo_row_17->get_sortdirection( ).
                      ENDIF.
                    ENDLOOP.
                    lo_topicconstantvalue = lo_topicirfilteroption->get_topbottomlimit( ).
                    IF lo_topicconstantvalue IS NOT INITIAL.
                      lv_constanttype = lo_topicconstantvalue->get_constanttype( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_value( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_minimum( ).
                      lv_constantvaluestring = lo_topicconstantvalue->get_maximum( ).
                      LOOP AT lo_topicconstantvalue->get_valuelist( ) into lo_row_12.
                        lo_row_13 = lo_row_12.
                        IF lo_row_13 IS NOT INITIAL.
                          lv_constanttype = lo_row_13->get_constanttype( ).
                          lv_constantvaluestring = lo_row_13->get_value( ).
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lv_topicsortdirection = lo_topicirfilteroption->get_sortdirection( ).
                    lo_anchor = lo_topicirfilteroption->get_anchor( ).
                    IF lo_anchor IS NOT INITIAL.
                      lv_anchortype = lo_anchor->get_anchortype( ).
                      lv_timegranularity = lo_anchor->get_timegranularity( ).
                      lv_integer = lo_anchor->get_offset( ).
                    ENDIF.
                  ENDIF.
                ENDIF.
                lv_contributionanalysisdir = lo_topicircontributionanal->get_direction( ).
                lv_contributionanalysissor = lo_topicircontributionanal->get_sorttype( ).
              ENDIF.
              lo_visualoptions = lo_topicir->get_visual( ).
              IF lo_visualoptions IS NOT INITIAL.
                lv_limitedstring = lo_visualoptions->get_type( ).
              ENDIF.
            ENDIF.
            " Skipping lo_row_20 to avoid recursion
          ENDIF.
        ENDLOOP.
      ENDIF.
      lo_topictemplate = lo_row_1->get_template( ).
      IF lo_topictemplate IS NOT INITIAL.
        lv_limitedstring = lo_topictemplate->get_templatetype( ).
        LOOP AT lo_topictemplate->get_slots( ) into lo_row_22.
          lo_row_23 = lo_row_22.
          IF lo_row_23 IS NOT INITIAL.
            lv_limitedstring = lo_row_23->get_slotid( ).
            lv_limitedstring = lo_row_23->get_visualid( ).
          ENDIF.
        ENDLOOP.
      ENDIF.
    ENDIF.
  ENDLOOP.
  lv_statuscode = lo_result->get_status( ).
  lv_string = lo_result->get_requestid( ).
ENDIF.