Skip to content

/AWS1/CL_KYZ=>GETRECORDS()

About GetRecords

Retrieves data records from a specified shard in an Amazon Keyspaces data stream. This operation returns a collection of data records from the shard, including the primary key columns and information about modifications made to the captured table data. Each record represents a single data modification in the Amazon Keyspaces table and includes metadata about when the change occurred.

Method Signature

IMPORTING

Required arguments:

iv_sharditerator TYPE /AWS1/KYZSHARDITERATOR /AWS1/KYZSHARDITERATOR

The unique identifier of the shard iterator. A shard iterator specifies the position in the shard from which you want to start reading data records sequentially. You obtain this value by calling the GetShardIterator operation. Each shard iterator is valid for 5 minutes after creation.

Optional arguments:

iv_maxresults TYPE /AWS1/KYZINTEGER /AWS1/KYZINTEGER

The maximum number of records to return in a single GetRecords request. Default value is 1000. You can specify a limit between 1 and 10000, but the actual number returned might be less than the specified maximum if the size of the data for the returned records exceeds the internal size limit.

RETURNING

oo_output TYPE REF TO /aws1/cl_kyzgetrecordsoutput /AWS1/CL_KYZGETRECORDSOUTPUT

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_kyz~getrecords(
  iv_maxresults = 123
  iv_sharditerator = |string|
).

This is an example of reading all possible response values

lo_result = lo_result.
IF lo_result IS NOT INITIAL.
  LOOP AT lo_result->get_changerecords( ) into lo_row.
    lo_row_1 = lo_row.
    IF lo_row_1 IS NOT INITIAL.
      lv_string = lo_row_1->get_eventversion( ).
      lv_date = lo_row_1->get_createdat( ).
      lv_origintype = lo_row_1->get_origin( ).
      LOOP AT lo_row_1->get_partitionkeys( ) into ls_row_2.
        lv_key = ls_row_2-key.
        lo_value = ls_row_2-value.
        IF lo_value IS NOT INITIAL.
          lv_string = lo_value->get_asciit( ).
          lv_string = lo_value->get_bigintt( ).
          lv_blob = lo_value->get_blobt( ).
          lv_boolean = lo_value->get_boolt( ).
          lv_string = lo_value->get_countert( ).
          lv_string = lo_value->get_datet( ).
          lv_string = lo_value->get_decimalt( ).
          lv_string = lo_value->get_doublet( ).
          lv_string = lo_value->get_floatt( ).
          lv_string = lo_value->get_inett( ).
          lv_string = lo_value->get_intt( ).
          LOOP AT lo_value->get_listt( ) into lo_row_3.
            lo_row_4 = lo_row_3.
            IF lo_row_4 IS NOT INITIAL.
              lo_keyspacescellvalue = lo_row_4->get_value( ).
              IF lo_keyspacescellvalue IS NOT INITIAL.
                lv_string = lo_keyspacescellvalue->get_asciit( ).
                lv_string = lo_keyspacescellvalue->get_bigintt( ).
                lv_blob = lo_keyspacescellvalue->get_blobt( ).
                lv_boolean = lo_keyspacescellvalue->get_boolt( ).
                lv_string = lo_keyspacescellvalue->get_countert( ).
                lv_string = lo_keyspacescellvalue->get_datet( ).
                lv_string = lo_keyspacescellvalue->get_decimalt( ).
                lv_string = lo_keyspacescellvalue->get_doublet( ).
                lv_string = lo_keyspacescellvalue->get_floatt( ).
                lv_string = lo_keyspacescellvalue->get_inett( ).
                lv_string = lo_keyspacescellvalue->get_intt( ).
                " Skipping lo_row_4->get_value( ) to avoid recursion
                LOOP AT lo_keyspacescellvalue->get_mapt( ) into lo_row_5.
                  lo_row_6 = lo_row_5.
                  IF lo_row_6 IS NOT INITIAL.
                    lo_keyspacescellvalue_1 = lo_row_6->get_key( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      " Skipping lo_row_6->get_key( ) to avoid recursion
                      " Skipping lo_row_6->get_key( ) to avoid recursion
                      LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                        lv_key = ls_row_9-key.
                        lo_value_1 = ls_row_9-value.
                        IF lo_value_1 IS NOT INITIAL.
                          " Skipping ls_row_9-value to avoid recursion
                          lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lo_keyspacescellvalue_1 = lo_row_6->get_value( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      " Skipping lo_row_6->get_value( ) to avoid recursion
                      " Skipping lo_row_6->get_value( ) to avoid recursion
                      LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                        lv_key = ls_row_9-key.
                        lo_value_1 = ls_row_9-value.
                        IF lo_value_1 IS NOT INITIAL.
                          " Skipping ls_row_9-value to avoid recursion
                          lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lo_keyspacesmetadata = lo_row_6->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                LOOP AT lo_keyspacescellvalue->get_sett( ) into lo_row_7.
                  lo_row_8 = lo_row_7.
                  IF lo_row_8 IS NOT INITIAL.
                    " Skipping lo_row_7 to avoid recursion
                    lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                lv_string = lo_keyspacescellvalue->get_smallintt( ).
                lv_string = lo_keyspacescellvalue->get_textt( ).
                lv_string = lo_keyspacescellvalue->get_timet( ).
                lv_string = lo_keyspacescellvalue->get_timestampt( ).
                lv_string = lo_keyspacescellvalue->get_timeuuidt( ).
                lv_string = lo_keyspacescellvalue->get_tinyintt( ).
                LOOP AT lo_keyspacescellvalue->get_tuplet( ) into lo_row_7.
                  lo_row_8 = lo_row_7.
                  IF lo_row_8 IS NOT INITIAL.
                    " Skipping lo_row_7 to avoid recursion
                    lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                lv_string = lo_keyspacescellvalue->get_uuidt( ).
                lv_string = lo_keyspacescellvalue->get_varchart( ).
                lv_string = lo_keyspacescellvalue->get_varintt( ).
                LOOP AT lo_keyspacescellvalue->get_udtt( ) into ls_row_9.
                  lv_key = ls_row_9-key.
                  lo_value_1 = ls_row_9-value.
                  IF lo_value_1 IS NOT INITIAL.
                    " Skipping ls_row_9-value to avoid recursion
                    lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
              ENDIF.
              lo_keyspacesmetadata = lo_row_4->get_metadata( ).
              IF lo_keyspacesmetadata IS NOT INITIAL.
                lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                lv_string = lo_keyspacesmetadata->get_writetime( ).
              ENDIF.
            ENDIF.
          ENDLOOP.
          LOOP AT lo_value->get_mapt( ) into lo_row_5.
            lo_row_6 = lo_row_5.
            IF lo_row_6 IS NOT INITIAL.
              lo_keyspacescellvalue = lo_row_6->get_key( ).
              IF lo_keyspacescellvalue IS NOT INITIAL.
                lv_string = lo_keyspacescellvalue->get_asciit( ).
                lv_string = lo_keyspacescellvalue->get_bigintt( ).
                lv_blob = lo_keyspacescellvalue->get_blobt( ).
                lv_boolean = lo_keyspacescellvalue->get_boolt( ).
                lv_string = lo_keyspacescellvalue->get_countert( ).
                lv_string = lo_keyspacescellvalue->get_datet( ).
                lv_string = lo_keyspacescellvalue->get_decimalt( ).
                lv_string = lo_keyspacescellvalue->get_doublet( ).
                lv_string = lo_keyspacescellvalue->get_floatt( ).
                lv_string = lo_keyspacescellvalue->get_inett( ).
                lv_string = lo_keyspacescellvalue->get_intt( ).
                LOOP AT lo_keyspacescellvalue->get_listt( ) into lo_row_3.
                  lo_row_4 = lo_row_3.
                  IF lo_row_4 IS NOT INITIAL.
                    lo_keyspacescellvalue_1 = lo_row_4->get_value( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      " Skipping lo_row_4->get_value( ) to avoid recursion
                      " Skipping lo_row_4->get_value( ) to avoid recursion
                      LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                        lv_key = ls_row_9-key.
                        lo_value_1 = ls_row_9-value.
                        IF lo_value_1 IS NOT INITIAL.
                          " Skipping ls_row_9-value to avoid recursion
                          lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                " Skipping lo_row_6->get_key( ) to avoid recursion
                LOOP AT lo_keyspacescellvalue->get_sett( ) into lo_row_3.
                  lo_row_4 = lo_row_3.
                  IF lo_row_4 IS NOT INITIAL.
                    lo_keyspacescellvalue_1 = lo_row_4->get_value( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      " Skipping lo_row_4->get_value( ) to avoid recursion
                      " Skipping lo_row_4->get_value( ) to avoid recursion
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                        lv_key = ls_row_9-key.
                        lo_value_1 = ls_row_9-value.
                        IF lo_value_1 IS NOT INITIAL.
                          " Skipping ls_row_9-value to avoid recursion
                          lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                lv_string = lo_keyspacescellvalue->get_smallintt( ).
                lv_string = lo_keyspacescellvalue->get_textt( ).
                lv_string = lo_keyspacescellvalue->get_timet( ).
                lv_string = lo_keyspacescellvalue->get_timestampt( ).
                lv_string = lo_keyspacescellvalue->get_timeuuidt( ).
                lv_string = lo_keyspacescellvalue->get_tinyintt( ).
                LOOP AT lo_keyspacescellvalue->get_tuplet( ) into lo_row_3.
                  lo_row_4 = lo_row_3.
                  IF lo_row_4 IS NOT INITIAL.
                    lo_keyspacescellvalue_1 = lo_row_4->get_value( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      " Skipping lo_row_4->get_value( ) to avoid recursion
                      LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      " Skipping lo_row_4->get_value( ) to avoid recursion
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                        lv_key = ls_row_9-key.
                        lo_value_1 = ls_row_9-value.
                        IF lo_value_1 IS NOT INITIAL.
                          " Skipping ls_row_9-value to avoid recursion
                          lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                lv_string = lo_keyspacescellvalue->get_uuidt( ).
                lv_string = lo_keyspacescellvalue->get_varchart( ).
                lv_string = lo_keyspacescellvalue->get_varintt( ).
                LOOP AT lo_keyspacescellvalue->get_udtt( ) into ls_row_9.
                  lv_key = ls_row_9-key.
                  lo_value_1 = ls_row_9-value.
                  IF lo_value_1 IS NOT INITIAL.
                    lo_keyspacescellvalue_1 = lo_value_1->get_value( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_3.
                        lo_row_4 = lo_row_3.
                        IF lo_row_4 IS NOT INITIAL.
                          " Skipping lo_row_3 to avoid recursion
                          lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      " Skipping lo_value_1->get_value( ) to avoid recursion
                      LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_3.
                        lo_row_4 = lo_row_3.
                        IF lo_row_4 IS NOT INITIAL.
                          " Skipping lo_row_3 to avoid recursion
                          lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_3.
                        lo_row_4 = lo_row_3.
                        IF lo_row_4 IS NOT INITIAL.
                          " Skipping lo_row_3 to avoid recursion
                          lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      " Skipping lo_value_1->get_value( ) to avoid recursion
                    ENDIF.
                    lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
              ENDIF.
              lo_keyspacescellvalue = lo_row_6->get_value( ).
              IF lo_keyspacescellvalue IS NOT INITIAL.
                lv_string = lo_keyspacescellvalue->get_asciit( ).
                lv_string = lo_keyspacescellvalue->get_bigintt( ).
                lv_blob = lo_keyspacescellvalue->get_blobt( ).
                lv_boolean = lo_keyspacescellvalue->get_boolt( ).
                lv_string = lo_keyspacescellvalue->get_countert( ).
                lv_string = lo_keyspacescellvalue->get_datet( ).
                lv_string = lo_keyspacescellvalue->get_decimalt( ).
                lv_string = lo_keyspacescellvalue->get_doublet( ).
                lv_string = lo_keyspacescellvalue->get_floatt( ).
                lv_string = lo_keyspacescellvalue->get_inett( ).
                lv_string = lo_keyspacescellvalue->get_intt( ).
                LOOP AT lo_keyspacescellvalue->get_listt( ) into lo_row_3.
                  lo_row_4 = lo_row_3.
                  IF lo_row_4 IS NOT INITIAL.
                    lo_keyspacescellvalue_1 = lo_row_4->get_value( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      " Skipping lo_row_4->get_value( ) to avoid recursion
                      " Skipping lo_row_4->get_value( ) to avoid recursion
                      LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                        lv_key = ls_row_9-key.
                        lo_value_1 = ls_row_9-value.
                        IF lo_value_1 IS NOT INITIAL.
                          " Skipping ls_row_9-value to avoid recursion
                          lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                " Skipping lo_row_6->get_value( ) to avoid recursion
                LOOP AT lo_keyspacescellvalue->get_sett( ) into lo_row_3.
                  lo_row_4 = lo_row_3.
                  IF lo_row_4 IS NOT INITIAL.
                    lo_keyspacescellvalue_1 = lo_row_4->get_value( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      " Skipping lo_row_4->get_value( ) to avoid recursion
                      " Skipping lo_row_4->get_value( ) to avoid recursion
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                        lv_key = ls_row_9-key.
                        lo_value_1 = ls_row_9-value.
                        IF lo_value_1 IS NOT INITIAL.
                          " Skipping ls_row_9-value to avoid recursion
                          lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                lv_string = lo_keyspacescellvalue->get_smallintt( ).
                lv_string = lo_keyspacescellvalue->get_textt( ).
                lv_string = lo_keyspacescellvalue->get_timet( ).
                lv_string = lo_keyspacescellvalue->get_timestampt( ).
                lv_string = lo_keyspacescellvalue->get_timeuuidt( ).
                lv_string = lo_keyspacescellvalue->get_tinyintt( ).
                LOOP AT lo_keyspacescellvalue->get_tuplet( ) into lo_row_3.
                  lo_row_4 = lo_row_3.
                  IF lo_row_4 IS NOT INITIAL.
                    lo_keyspacescellvalue_1 = lo_row_4->get_value( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      " Skipping lo_row_4->get_value( ) to avoid recursion
                      LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      " Skipping lo_row_4->get_value( ) to avoid recursion
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                        lv_key = ls_row_9-key.
                        lo_value_1 = ls_row_9-value.
                        IF lo_value_1 IS NOT INITIAL.
                          " Skipping ls_row_9-value to avoid recursion
                          lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                lv_string = lo_keyspacescellvalue->get_uuidt( ).
                lv_string = lo_keyspacescellvalue->get_varchart( ).
                lv_string = lo_keyspacescellvalue->get_varintt( ).
                LOOP AT lo_keyspacescellvalue->get_udtt( ) into ls_row_9.
                  lv_key = ls_row_9-key.
                  lo_value_1 = ls_row_9-value.
                  IF lo_value_1 IS NOT INITIAL.
                    lo_keyspacescellvalue_1 = lo_value_1->get_value( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_3.
                        lo_row_4 = lo_row_3.
                        IF lo_row_4 IS NOT INITIAL.
                          " Skipping lo_row_3 to avoid recursion
                          lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      " Skipping lo_value_1->get_value( ) to avoid recursion
                      LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_3.
                        lo_row_4 = lo_row_3.
                        IF lo_row_4 IS NOT INITIAL.
                          " Skipping lo_row_3 to avoid recursion
                          lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_3.
                        lo_row_4 = lo_row_3.
                        IF lo_row_4 IS NOT INITIAL.
                          " Skipping lo_row_3 to avoid recursion
                          lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      " Skipping lo_value_1->get_value( ) to avoid recursion
                    ENDIF.
                    lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
              ENDIF.
              lo_keyspacesmetadata = lo_row_6->get_metadata( ).
              IF lo_keyspacesmetadata IS NOT INITIAL.
                lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                lv_string = lo_keyspacesmetadata->get_writetime( ).
              ENDIF.
            ENDIF.
          ENDLOOP.
          LOOP AT lo_value->get_sett( ) into lo_row_3.
            lo_row_4 = lo_row_3.
            IF lo_row_4 IS NOT INITIAL.
              lo_keyspacescellvalue = lo_row_4->get_value( ).
              IF lo_keyspacescellvalue IS NOT INITIAL.
                lv_string = lo_keyspacescellvalue->get_asciit( ).
                lv_string = lo_keyspacescellvalue->get_bigintt( ).
                lv_blob = lo_keyspacescellvalue->get_blobt( ).
                lv_boolean = lo_keyspacescellvalue->get_boolt( ).
                lv_string = lo_keyspacescellvalue->get_countert( ).
                lv_string = lo_keyspacescellvalue->get_datet( ).
                lv_string = lo_keyspacescellvalue->get_decimalt( ).
                lv_string = lo_keyspacescellvalue->get_doublet( ).
                lv_string = lo_keyspacescellvalue->get_floatt( ).
                lv_string = lo_keyspacescellvalue->get_inett( ).
                lv_string = lo_keyspacescellvalue->get_intt( ).
                LOOP AT lo_keyspacescellvalue->get_listt( ) into lo_row_7.
                  lo_row_8 = lo_row_7.
                  IF lo_row_8 IS NOT INITIAL.
                    " Skipping lo_row_7 to avoid recursion
                    lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                LOOP AT lo_keyspacescellvalue->get_mapt( ) into lo_row_5.
                  lo_row_6 = lo_row_5.
                  IF lo_row_6 IS NOT INITIAL.
                    lo_keyspacescellvalue_1 = lo_row_6->get_key( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      " Skipping lo_row_6->get_key( ) to avoid recursion
                      " Skipping lo_row_6->get_key( ) to avoid recursion
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                        lv_key = ls_row_9-key.
                        lo_value_1 = ls_row_9-value.
                        IF lo_value_1 IS NOT INITIAL.
                          " Skipping ls_row_9-value to avoid recursion
                          lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lo_keyspacescellvalue_1 = lo_row_6->get_value( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      " Skipping lo_row_6->get_value( ) to avoid recursion
                      " Skipping lo_row_6->get_value( ) to avoid recursion
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                        lv_key = ls_row_9-key.
                        lo_value_1 = ls_row_9-value.
                        IF lo_value_1 IS NOT INITIAL.
                          " Skipping ls_row_9-value to avoid recursion
                          lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lo_keyspacesmetadata = lo_row_6->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                " Skipping lo_row_4->get_value( ) to avoid recursion
                lv_string = lo_keyspacescellvalue->get_smallintt( ).
                lv_string = lo_keyspacescellvalue->get_textt( ).
                lv_string = lo_keyspacescellvalue->get_timet( ).
                lv_string = lo_keyspacescellvalue->get_timestampt( ).
                lv_string = lo_keyspacescellvalue->get_timeuuidt( ).
                lv_string = lo_keyspacescellvalue->get_tinyintt( ).
                LOOP AT lo_keyspacescellvalue->get_tuplet( ) into lo_row_7.
                  lo_row_8 = lo_row_7.
                  IF lo_row_8 IS NOT INITIAL.
                    " Skipping lo_row_7 to avoid recursion
                    lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                lv_string = lo_keyspacescellvalue->get_uuidt( ).
                lv_string = lo_keyspacescellvalue->get_varchart( ).
                lv_string = lo_keyspacescellvalue->get_varintt( ).
                LOOP AT lo_keyspacescellvalue->get_udtt( ) into ls_row_9.
                  lv_key = ls_row_9-key.
                  lo_value_1 = ls_row_9-value.
                  IF lo_value_1 IS NOT INITIAL.
                    " Skipping ls_row_9-value to avoid recursion
                    lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
              ENDIF.
              lo_keyspacesmetadata = lo_row_4->get_metadata( ).
              IF lo_keyspacesmetadata IS NOT INITIAL.
                lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                lv_string = lo_keyspacesmetadata->get_writetime( ).
              ENDIF.
            ENDIF.
          ENDLOOP.
          lv_string = lo_value->get_smallintt( ).
          lv_string = lo_value->get_textt( ).
          lv_string = lo_value->get_timet( ).
          lv_string = lo_value->get_timestampt( ).
          lv_string = lo_value->get_timeuuidt( ).
          lv_string = lo_value->get_tinyintt( ).
          LOOP AT lo_value->get_tuplet( ) into lo_row_3.
            lo_row_4 = lo_row_3.
            IF lo_row_4 IS NOT INITIAL.
              lo_keyspacescellvalue = lo_row_4->get_value( ).
              IF lo_keyspacescellvalue IS NOT INITIAL.
                lv_string = lo_keyspacescellvalue->get_asciit( ).
                lv_string = lo_keyspacescellvalue->get_bigintt( ).
                lv_blob = lo_keyspacescellvalue->get_blobt( ).
                lv_boolean = lo_keyspacescellvalue->get_boolt( ).
                lv_string = lo_keyspacescellvalue->get_countert( ).
                lv_string = lo_keyspacescellvalue->get_datet( ).
                lv_string = lo_keyspacescellvalue->get_decimalt( ).
                lv_string = lo_keyspacescellvalue->get_doublet( ).
                lv_string = lo_keyspacescellvalue->get_floatt( ).
                lv_string = lo_keyspacescellvalue->get_inett( ).
                lv_string = lo_keyspacescellvalue->get_intt( ).
                LOOP AT lo_keyspacescellvalue->get_listt( ) into lo_row_7.
                  lo_row_8 = lo_row_7.
                  IF lo_row_8 IS NOT INITIAL.
                    " Skipping lo_row_7 to avoid recursion
                    lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                LOOP AT lo_keyspacescellvalue->get_mapt( ) into lo_row_5.
                  lo_row_6 = lo_row_5.
                  IF lo_row_6 IS NOT INITIAL.
                    lo_keyspacescellvalue_1 = lo_row_6->get_key( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      " Skipping lo_row_6->get_key( ) to avoid recursion
                      LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      " Skipping lo_row_6->get_key( ) to avoid recursion
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                        lv_key = ls_row_9-key.
                        lo_value_1 = ls_row_9-value.
                        IF lo_value_1 IS NOT INITIAL.
                          " Skipping ls_row_9-value to avoid recursion
                          lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lo_keyspacescellvalue_1 = lo_row_6->get_value( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      " Skipping lo_row_6->get_value( ) to avoid recursion
                      LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      " Skipping lo_row_6->get_value( ) to avoid recursion
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                        lv_key = ls_row_9-key.
                        lo_value_1 = ls_row_9-value.
                        IF lo_value_1 IS NOT INITIAL.
                          " Skipping ls_row_9-value to avoid recursion
                          lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lo_keyspacesmetadata = lo_row_6->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                LOOP AT lo_keyspacescellvalue->get_sett( ) into lo_row_7.
                  lo_row_8 = lo_row_7.
                  IF lo_row_8 IS NOT INITIAL.
                    " Skipping lo_row_7 to avoid recursion
                    lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                lv_string = lo_keyspacescellvalue->get_smallintt( ).
                lv_string = lo_keyspacescellvalue->get_textt( ).
                lv_string = lo_keyspacescellvalue->get_timet( ).
                lv_string = lo_keyspacescellvalue->get_timestampt( ).
                lv_string = lo_keyspacescellvalue->get_timeuuidt( ).
                lv_string = lo_keyspacescellvalue->get_tinyintt( ).
                " Skipping lo_row_4->get_value( ) to avoid recursion
                lv_string = lo_keyspacescellvalue->get_uuidt( ).
                lv_string = lo_keyspacescellvalue->get_varchart( ).
                lv_string = lo_keyspacescellvalue->get_varintt( ).
                LOOP AT lo_keyspacescellvalue->get_udtt( ) into ls_row_9.
                  lv_key = ls_row_9-key.
                  lo_value_1 = ls_row_9-value.
                  IF lo_value_1 IS NOT INITIAL.
                    " Skipping ls_row_9-value to avoid recursion
                    lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
              ENDIF.
              lo_keyspacesmetadata = lo_row_4->get_metadata( ).
              IF lo_keyspacesmetadata IS NOT INITIAL.
                lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                lv_string = lo_keyspacesmetadata->get_writetime( ).
              ENDIF.
            ENDIF.
          ENDLOOP.
          lv_string = lo_value->get_uuidt( ).
          lv_string = lo_value->get_varchart( ).
          lv_string = lo_value->get_varintt( ).
          LOOP AT lo_value->get_udtt( ) into ls_row_9.
            lv_key = ls_row_9-key.
            lo_value_1 = ls_row_9-value.
            IF lo_value_1 IS NOT INITIAL.
              lo_keyspacescellvalue = lo_value_1->get_value( ).
              IF lo_keyspacescellvalue IS NOT INITIAL.
                lv_string = lo_keyspacescellvalue->get_asciit( ).
                lv_string = lo_keyspacescellvalue->get_bigintt( ).
                lv_blob = lo_keyspacescellvalue->get_blobt( ).
                lv_boolean = lo_keyspacescellvalue->get_boolt( ).
                lv_string = lo_keyspacescellvalue->get_countert( ).
                lv_string = lo_keyspacescellvalue->get_datet( ).
                lv_string = lo_keyspacescellvalue->get_decimalt( ).
                lv_string = lo_keyspacescellvalue->get_doublet( ).
                lv_string = lo_keyspacescellvalue->get_floatt( ).
                lv_string = lo_keyspacescellvalue->get_inett( ).
                lv_string = lo_keyspacescellvalue->get_intt( ).
                LOOP AT lo_keyspacescellvalue->get_listt( ) into lo_row_3.
                  lo_row_4 = lo_row_3.
                  IF lo_row_4 IS NOT INITIAL.
                    " Skipping lo_row_3 to avoid recursion
                    lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                LOOP AT lo_keyspacescellvalue->get_mapt( ) into lo_row_5.
                  lo_row_6 = lo_row_5.
                  IF lo_row_6 IS NOT INITIAL.
                    lo_keyspacescellvalue_1 = lo_row_6->get_key( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_3.
                        lo_row_4 = lo_row_3.
                        IF lo_row_4 IS NOT INITIAL.
                          " Skipping lo_row_3 to avoid recursion
                          lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      " Skipping lo_row_6->get_key( ) to avoid recursion
                      LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_3.
                        lo_row_4 = lo_row_3.
                        IF lo_row_4 IS NOT INITIAL.
                          " Skipping lo_row_3 to avoid recursion
                          lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_3.
                        lo_row_4 = lo_row_3.
                        IF lo_row_4 IS NOT INITIAL.
                          " Skipping lo_row_3 to avoid recursion
                          lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      " Skipping lo_row_6->get_key( ) to avoid recursion
                    ENDIF.
                    lo_keyspacescellvalue_1 = lo_row_6->get_value( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_3.
                        lo_row_4 = lo_row_3.
                        IF lo_row_4 IS NOT INITIAL.
                          " Skipping lo_row_3 to avoid recursion
                          lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      " Skipping lo_row_6->get_value( ) to avoid recursion
                      LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_3.
                        lo_row_4 = lo_row_3.
                        IF lo_row_4 IS NOT INITIAL.
                          " Skipping lo_row_3 to avoid recursion
                          lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_3.
                        lo_row_4 = lo_row_3.
                        IF lo_row_4 IS NOT INITIAL.
                          " Skipping lo_row_3 to avoid recursion
                          lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      " Skipping lo_row_6->get_value( ) to avoid recursion
                    ENDIF.
                    lo_keyspacesmetadata = lo_row_6->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                LOOP AT lo_keyspacescellvalue->get_sett( ) into lo_row_3.
                  lo_row_4 = lo_row_3.
                  IF lo_row_4 IS NOT INITIAL.
                    " Skipping lo_row_3 to avoid recursion
                    lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                lv_string = lo_keyspacescellvalue->get_smallintt( ).
                lv_string = lo_keyspacescellvalue->get_textt( ).
                lv_string = lo_keyspacescellvalue->get_timet( ).
                lv_string = lo_keyspacescellvalue->get_timestampt( ).
                lv_string = lo_keyspacescellvalue->get_timeuuidt( ).
                lv_string = lo_keyspacescellvalue->get_tinyintt( ).
                LOOP AT lo_keyspacescellvalue->get_tuplet( ) into lo_row_3.
                  lo_row_4 = lo_row_3.
                  IF lo_row_4 IS NOT INITIAL.
                    " Skipping lo_row_3 to avoid recursion
                    lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                lv_string = lo_keyspacescellvalue->get_uuidt( ).
                lv_string = lo_keyspacescellvalue->get_varchart( ).
                lv_string = lo_keyspacescellvalue->get_varintt( ).
                " Skipping lo_value_1->get_value( ) to avoid recursion
              ENDIF.
              lo_keyspacesmetadata = lo_value_1->get_metadata( ).
              IF lo_keyspacesmetadata IS NOT INITIAL.
                lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                lv_string = lo_keyspacesmetadata->get_writetime( ).
              ENDIF.
            ENDIF.
          ENDLOOP.
        ENDIF.
      ENDLOOP.
      LOOP AT lo_row_1->get_clusteringkeys( ) into ls_row_2.
        lv_key = ls_row_2-key.
        lo_value = ls_row_2-value.
        IF lo_value IS NOT INITIAL.
          lv_string = lo_value->get_asciit( ).
          lv_string = lo_value->get_bigintt( ).
          lv_blob = lo_value->get_blobt( ).
          lv_boolean = lo_value->get_boolt( ).
          lv_string = lo_value->get_countert( ).
          lv_string = lo_value->get_datet( ).
          lv_string = lo_value->get_decimalt( ).
          lv_string = lo_value->get_doublet( ).
          lv_string = lo_value->get_floatt( ).
          lv_string = lo_value->get_inett( ).
          lv_string = lo_value->get_intt( ).
          LOOP AT lo_value->get_listt( ) into lo_row_3.
            lo_row_4 = lo_row_3.
            IF lo_row_4 IS NOT INITIAL.
              lo_keyspacescellvalue = lo_row_4->get_value( ).
              IF lo_keyspacescellvalue IS NOT INITIAL.
                lv_string = lo_keyspacescellvalue->get_asciit( ).
                lv_string = lo_keyspacescellvalue->get_bigintt( ).
                lv_blob = lo_keyspacescellvalue->get_blobt( ).
                lv_boolean = lo_keyspacescellvalue->get_boolt( ).
                lv_string = lo_keyspacescellvalue->get_countert( ).
                lv_string = lo_keyspacescellvalue->get_datet( ).
                lv_string = lo_keyspacescellvalue->get_decimalt( ).
                lv_string = lo_keyspacescellvalue->get_doublet( ).
                lv_string = lo_keyspacescellvalue->get_floatt( ).
                lv_string = lo_keyspacescellvalue->get_inett( ).
                lv_string = lo_keyspacescellvalue->get_intt( ).
                " Skipping lo_row_4->get_value( ) to avoid recursion
                LOOP AT lo_keyspacescellvalue->get_mapt( ) into lo_row_5.
                  lo_row_6 = lo_row_5.
                  IF lo_row_6 IS NOT INITIAL.
                    lo_keyspacescellvalue_1 = lo_row_6->get_key( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      " Skipping lo_row_6->get_key( ) to avoid recursion
                      " Skipping lo_row_6->get_key( ) to avoid recursion
                      LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                        lv_key = ls_row_9-key.
                        lo_value_1 = ls_row_9-value.
                        IF lo_value_1 IS NOT INITIAL.
                          " Skipping ls_row_9-value to avoid recursion
                          lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lo_keyspacescellvalue_1 = lo_row_6->get_value( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      " Skipping lo_row_6->get_value( ) to avoid recursion
                      " Skipping lo_row_6->get_value( ) to avoid recursion
                      LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                        lv_key = ls_row_9-key.
                        lo_value_1 = ls_row_9-value.
                        IF lo_value_1 IS NOT INITIAL.
                          " Skipping ls_row_9-value to avoid recursion
                          lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lo_keyspacesmetadata = lo_row_6->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                LOOP AT lo_keyspacescellvalue->get_sett( ) into lo_row_7.
                  lo_row_8 = lo_row_7.
                  IF lo_row_8 IS NOT INITIAL.
                    " Skipping lo_row_7 to avoid recursion
                    lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                lv_string = lo_keyspacescellvalue->get_smallintt( ).
                lv_string = lo_keyspacescellvalue->get_textt( ).
                lv_string = lo_keyspacescellvalue->get_timet( ).
                lv_string = lo_keyspacescellvalue->get_timestampt( ).
                lv_string = lo_keyspacescellvalue->get_timeuuidt( ).
                lv_string = lo_keyspacescellvalue->get_tinyintt( ).
                LOOP AT lo_keyspacescellvalue->get_tuplet( ) into lo_row_7.
                  lo_row_8 = lo_row_7.
                  IF lo_row_8 IS NOT INITIAL.
                    " Skipping lo_row_7 to avoid recursion
                    lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                lv_string = lo_keyspacescellvalue->get_uuidt( ).
                lv_string = lo_keyspacescellvalue->get_varchart( ).
                lv_string = lo_keyspacescellvalue->get_varintt( ).
                LOOP AT lo_keyspacescellvalue->get_udtt( ) into ls_row_9.
                  lv_key = ls_row_9-key.
                  lo_value_1 = ls_row_9-value.
                  IF lo_value_1 IS NOT INITIAL.
                    " Skipping ls_row_9-value to avoid recursion
                    lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
              ENDIF.
              lo_keyspacesmetadata = lo_row_4->get_metadata( ).
              IF lo_keyspacesmetadata IS NOT INITIAL.
                lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                lv_string = lo_keyspacesmetadata->get_writetime( ).
              ENDIF.
            ENDIF.
          ENDLOOP.
          LOOP AT lo_value->get_mapt( ) into lo_row_5.
            lo_row_6 = lo_row_5.
            IF lo_row_6 IS NOT INITIAL.
              lo_keyspacescellvalue = lo_row_6->get_key( ).
              IF lo_keyspacescellvalue IS NOT INITIAL.
                lv_string = lo_keyspacescellvalue->get_asciit( ).
                lv_string = lo_keyspacescellvalue->get_bigintt( ).
                lv_blob = lo_keyspacescellvalue->get_blobt( ).
                lv_boolean = lo_keyspacescellvalue->get_boolt( ).
                lv_string = lo_keyspacescellvalue->get_countert( ).
                lv_string = lo_keyspacescellvalue->get_datet( ).
                lv_string = lo_keyspacescellvalue->get_decimalt( ).
                lv_string = lo_keyspacescellvalue->get_doublet( ).
                lv_string = lo_keyspacescellvalue->get_floatt( ).
                lv_string = lo_keyspacescellvalue->get_inett( ).
                lv_string = lo_keyspacescellvalue->get_intt( ).
                LOOP AT lo_keyspacescellvalue->get_listt( ) into lo_row_3.
                  lo_row_4 = lo_row_3.
                  IF lo_row_4 IS NOT INITIAL.
                    lo_keyspacescellvalue_1 = lo_row_4->get_value( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      " Skipping lo_row_4->get_value( ) to avoid recursion
                      " Skipping lo_row_4->get_value( ) to avoid recursion
                      LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                        lv_key = ls_row_9-key.
                        lo_value_1 = ls_row_9-value.
                        IF lo_value_1 IS NOT INITIAL.
                          " Skipping ls_row_9-value to avoid recursion
                          lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                " Skipping lo_row_6->get_key( ) to avoid recursion
                LOOP AT lo_keyspacescellvalue->get_sett( ) into lo_row_3.
                  lo_row_4 = lo_row_3.
                  IF lo_row_4 IS NOT INITIAL.
                    lo_keyspacescellvalue_1 = lo_row_4->get_value( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      " Skipping lo_row_4->get_value( ) to avoid recursion
                      " Skipping lo_row_4->get_value( ) to avoid recursion
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                        lv_key = ls_row_9-key.
                        lo_value_1 = ls_row_9-value.
                        IF lo_value_1 IS NOT INITIAL.
                          " Skipping ls_row_9-value to avoid recursion
                          lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                lv_string = lo_keyspacescellvalue->get_smallintt( ).
                lv_string = lo_keyspacescellvalue->get_textt( ).
                lv_string = lo_keyspacescellvalue->get_timet( ).
                lv_string = lo_keyspacescellvalue->get_timestampt( ).
                lv_string = lo_keyspacescellvalue->get_timeuuidt( ).
                lv_string = lo_keyspacescellvalue->get_tinyintt( ).
                LOOP AT lo_keyspacescellvalue->get_tuplet( ) into lo_row_3.
                  lo_row_4 = lo_row_3.
                  IF lo_row_4 IS NOT INITIAL.
                    lo_keyspacescellvalue_1 = lo_row_4->get_value( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      " Skipping lo_row_4->get_value( ) to avoid recursion
                      LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      " Skipping lo_row_4->get_value( ) to avoid recursion
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                        lv_key = ls_row_9-key.
                        lo_value_1 = ls_row_9-value.
                        IF lo_value_1 IS NOT INITIAL.
                          " Skipping ls_row_9-value to avoid recursion
                          lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                lv_string = lo_keyspacescellvalue->get_uuidt( ).
                lv_string = lo_keyspacescellvalue->get_varchart( ).
                lv_string = lo_keyspacescellvalue->get_varintt( ).
                LOOP AT lo_keyspacescellvalue->get_udtt( ) into ls_row_9.
                  lv_key = ls_row_9-key.
                  lo_value_1 = ls_row_9-value.
                  IF lo_value_1 IS NOT INITIAL.
                    lo_keyspacescellvalue_1 = lo_value_1->get_value( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_3.
                        lo_row_4 = lo_row_3.
                        IF lo_row_4 IS NOT INITIAL.
                          " Skipping lo_row_3 to avoid recursion
                          lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      " Skipping lo_value_1->get_value( ) to avoid recursion
                      LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_3.
                        lo_row_4 = lo_row_3.
                        IF lo_row_4 IS NOT INITIAL.
                          " Skipping lo_row_3 to avoid recursion
                          lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_3.
                        lo_row_4 = lo_row_3.
                        IF lo_row_4 IS NOT INITIAL.
                          " Skipping lo_row_3 to avoid recursion
                          lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      " Skipping lo_value_1->get_value( ) to avoid recursion
                    ENDIF.
                    lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
              ENDIF.
              lo_keyspacescellvalue = lo_row_6->get_value( ).
              IF lo_keyspacescellvalue IS NOT INITIAL.
                lv_string = lo_keyspacescellvalue->get_asciit( ).
                lv_string = lo_keyspacescellvalue->get_bigintt( ).
                lv_blob = lo_keyspacescellvalue->get_blobt( ).
                lv_boolean = lo_keyspacescellvalue->get_boolt( ).
                lv_string = lo_keyspacescellvalue->get_countert( ).
                lv_string = lo_keyspacescellvalue->get_datet( ).
                lv_string = lo_keyspacescellvalue->get_decimalt( ).
                lv_string = lo_keyspacescellvalue->get_doublet( ).
                lv_string = lo_keyspacescellvalue->get_floatt( ).
                lv_string = lo_keyspacescellvalue->get_inett( ).
                lv_string = lo_keyspacescellvalue->get_intt( ).
                LOOP AT lo_keyspacescellvalue->get_listt( ) into lo_row_3.
                  lo_row_4 = lo_row_3.
                  IF lo_row_4 IS NOT INITIAL.
                    lo_keyspacescellvalue_1 = lo_row_4->get_value( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      " Skipping lo_row_4->get_value( ) to avoid recursion
                      " Skipping lo_row_4->get_value( ) to avoid recursion
                      LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                        lv_key = ls_row_9-key.
                        lo_value_1 = ls_row_9-value.
                        IF lo_value_1 IS NOT INITIAL.
                          " Skipping ls_row_9-value to avoid recursion
                          lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                " Skipping lo_row_6->get_value( ) to avoid recursion
                LOOP AT lo_keyspacescellvalue->get_sett( ) into lo_row_3.
                  lo_row_4 = lo_row_3.
                  IF lo_row_4 IS NOT INITIAL.
                    lo_keyspacescellvalue_1 = lo_row_4->get_value( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      " Skipping lo_row_4->get_value( ) to avoid recursion
                      " Skipping lo_row_4->get_value( ) to avoid recursion
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                        lv_key = ls_row_9-key.
                        lo_value_1 = ls_row_9-value.
                        IF lo_value_1 IS NOT INITIAL.
                          " Skipping ls_row_9-value to avoid recursion
                          lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                lv_string = lo_keyspacescellvalue->get_smallintt( ).
                lv_string = lo_keyspacescellvalue->get_textt( ).
                lv_string = lo_keyspacescellvalue->get_timet( ).
                lv_string = lo_keyspacescellvalue->get_timestampt( ).
                lv_string = lo_keyspacescellvalue->get_timeuuidt( ).
                lv_string = lo_keyspacescellvalue->get_tinyintt( ).
                LOOP AT lo_keyspacescellvalue->get_tuplet( ) into lo_row_3.
                  lo_row_4 = lo_row_3.
                  IF lo_row_4 IS NOT INITIAL.
                    lo_keyspacescellvalue_1 = lo_row_4->get_value( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      " Skipping lo_row_4->get_value( ) to avoid recursion
                      LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      " Skipping lo_row_4->get_value( ) to avoid recursion
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                        lv_key = ls_row_9-key.
                        lo_value_1 = ls_row_9-value.
                        IF lo_value_1 IS NOT INITIAL.
                          " Skipping ls_row_9-value to avoid recursion
                          lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                lv_string = lo_keyspacescellvalue->get_uuidt( ).
                lv_string = lo_keyspacescellvalue->get_varchart( ).
                lv_string = lo_keyspacescellvalue->get_varintt( ).
                LOOP AT lo_keyspacescellvalue->get_udtt( ) into ls_row_9.
                  lv_key = ls_row_9-key.
                  lo_value_1 = ls_row_9-value.
                  IF lo_value_1 IS NOT INITIAL.
                    lo_keyspacescellvalue_1 = lo_value_1->get_value( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_3.
                        lo_row_4 = lo_row_3.
                        IF lo_row_4 IS NOT INITIAL.
                          " Skipping lo_row_3 to avoid recursion
                          lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      " Skipping lo_value_1->get_value( ) to avoid recursion
                      LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_3.
                        lo_row_4 = lo_row_3.
                        IF lo_row_4 IS NOT INITIAL.
                          " Skipping lo_row_3 to avoid recursion
                          lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_3.
                        lo_row_4 = lo_row_3.
                        IF lo_row_4 IS NOT INITIAL.
                          " Skipping lo_row_3 to avoid recursion
                          lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      " Skipping lo_value_1->get_value( ) to avoid recursion
                    ENDIF.
                    lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
              ENDIF.
              lo_keyspacesmetadata = lo_row_6->get_metadata( ).
              IF lo_keyspacesmetadata IS NOT INITIAL.
                lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                lv_string = lo_keyspacesmetadata->get_writetime( ).
              ENDIF.
            ENDIF.
          ENDLOOP.
          LOOP AT lo_value->get_sett( ) into lo_row_3.
            lo_row_4 = lo_row_3.
            IF lo_row_4 IS NOT INITIAL.
              lo_keyspacescellvalue = lo_row_4->get_value( ).
              IF lo_keyspacescellvalue IS NOT INITIAL.
                lv_string = lo_keyspacescellvalue->get_asciit( ).
                lv_string = lo_keyspacescellvalue->get_bigintt( ).
                lv_blob = lo_keyspacescellvalue->get_blobt( ).
                lv_boolean = lo_keyspacescellvalue->get_boolt( ).
                lv_string = lo_keyspacescellvalue->get_countert( ).
                lv_string = lo_keyspacescellvalue->get_datet( ).
                lv_string = lo_keyspacescellvalue->get_decimalt( ).
                lv_string = lo_keyspacescellvalue->get_doublet( ).
                lv_string = lo_keyspacescellvalue->get_floatt( ).
                lv_string = lo_keyspacescellvalue->get_inett( ).
                lv_string = lo_keyspacescellvalue->get_intt( ).
                LOOP AT lo_keyspacescellvalue->get_listt( ) into lo_row_7.
                  lo_row_8 = lo_row_7.
                  IF lo_row_8 IS NOT INITIAL.
                    " Skipping lo_row_7 to avoid recursion
                    lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                LOOP AT lo_keyspacescellvalue->get_mapt( ) into lo_row_5.
                  lo_row_6 = lo_row_5.
                  IF lo_row_6 IS NOT INITIAL.
                    lo_keyspacescellvalue_1 = lo_row_6->get_key( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      " Skipping lo_row_6->get_key( ) to avoid recursion
                      " Skipping lo_row_6->get_key( ) to avoid recursion
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                        lv_key = ls_row_9-key.
                        lo_value_1 = ls_row_9-value.
                        IF lo_value_1 IS NOT INITIAL.
                          " Skipping ls_row_9-value to avoid recursion
                          lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lo_keyspacescellvalue_1 = lo_row_6->get_value( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      " Skipping lo_row_6->get_value( ) to avoid recursion
                      " Skipping lo_row_6->get_value( ) to avoid recursion
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                        lv_key = ls_row_9-key.
                        lo_value_1 = ls_row_9-value.
                        IF lo_value_1 IS NOT INITIAL.
                          " Skipping ls_row_9-value to avoid recursion
                          lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lo_keyspacesmetadata = lo_row_6->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                " Skipping lo_row_4->get_value( ) to avoid recursion
                lv_string = lo_keyspacescellvalue->get_smallintt( ).
                lv_string = lo_keyspacescellvalue->get_textt( ).
                lv_string = lo_keyspacescellvalue->get_timet( ).
                lv_string = lo_keyspacescellvalue->get_timestampt( ).
                lv_string = lo_keyspacescellvalue->get_timeuuidt( ).
                lv_string = lo_keyspacescellvalue->get_tinyintt( ).
                LOOP AT lo_keyspacescellvalue->get_tuplet( ) into lo_row_7.
                  lo_row_8 = lo_row_7.
                  IF lo_row_8 IS NOT INITIAL.
                    " Skipping lo_row_7 to avoid recursion
                    lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                lv_string = lo_keyspacescellvalue->get_uuidt( ).
                lv_string = lo_keyspacescellvalue->get_varchart( ).
                lv_string = lo_keyspacescellvalue->get_varintt( ).
                LOOP AT lo_keyspacescellvalue->get_udtt( ) into ls_row_9.
                  lv_key = ls_row_9-key.
                  lo_value_1 = ls_row_9-value.
                  IF lo_value_1 IS NOT INITIAL.
                    " Skipping ls_row_9-value to avoid recursion
                    lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
              ENDIF.
              lo_keyspacesmetadata = lo_row_4->get_metadata( ).
              IF lo_keyspacesmetadata IS NOT INITIAL.
                lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                lv_string = lo_keyspacesmetadata->get_writetime( ).
              ENDIF.
            ENDIF.
          ENDLOOP.
          lv_string = lo_value->get_smallintt( ).
          lv_string = lo_value->get_textt( ).
          lv_string = lo_value->get_timet( ).
          lv_string = lo_value->get_timestampt( ).
          lv_string = lo_value->get_timeuuidt( ).
          lv_string = lo_value->get_tinyintt( ).
          LOOP AT lo_value->get_tuplet( ) into lo_row_3.
            lo_row_4 = lo_row_3.
            IF lo_row_4 IS NOT INITIAL.
              lo_keyspacescellvalue = lo_row_4->get_value( ).
              IF lo_keyspacescellvalue IS NOT INITIAL.
                lv_string = lo_keyspacescellvalue->get_asciit( ).
                lv_string = lo_keyspacescellvalue->get_bigintt( ).
                lv_blob = lo_keyspacescellvalue->get_blobt( ).
                lv_boolean = lo_keyspacescellvalue->get_boolt( ).
                lv_string = lo_keyspacescellvalue->get_countert( ).
                lv_string = lo_keyspacescellvalue->get_datet( ).
                lv_string = lo_keyspacescellvalue->get_decimalt( ).
                lv_string = lo_keyspacescellvalue->get_doublet( ).
                lv_string = lo_keyspacescellvalue->get_floatt( ).
                lv_string = lo_keyspacescellvalue->get_inett( ).
                lv_string = lo_keyspacescellvalue->get_intt( ).
                LOOP AT lo_keyspacescellvalue->get_listt( ) into lo_row_7.
                  lo_row_8 = lo_row_7.
                  IF lo_row_8 IS NOT INITIAL.
                    " Skipping lo_row_7 to avoid recursion
                    lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                LOOP AT lo_keyspacescellvalue->get_mapt( ) into lo_row_5.
                  lo_row_6 = lo_row_5.
                  IF lo_row_6 IS NOT INITIAL.
                    lo_keyspacescellvalue_1 = lo_row_6->get_key( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      " Skipping lo_row_6->get_key( ) to avoid recursion
                      LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      " Skipping lo_row_6->get_key( ) to avoid recursion
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                        lv_key = ls_row_9-key.
                        lo_value_1 = ls_row_9-value.
                        IF lo_value_1 IS NOT INITIAL.
                          " Skipping ls_row_9-value to avoid recursion
                          lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lo_keyspacescellvalue_1 = lo_row_6->get_value( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      " Skipping lo_row_6->get_value( ) to avoid recursion
                      LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_7.
                        lo_row_8 = lo_row_7.
                        IF lo_row_8 IS NOT INITIAL.
                          " Skipping lo_row_7 to avoid recursion
                          lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      " Skipping lo_row_6->get_value( ) to avoid recursion
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                        lv_key = ls_row_9-key.
                        lo_value_1 = ls_row_9-value.
                        IF lo_value_1 IS NOT INITIAL.
                          " Skipping ls_row_9-value to avoid recursion
                          lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                    ENDIF.
                    lo_keyspacesmetadata = lo_row_6->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                LOOP AT lo_keyspacescellvalue->get_sett( ) into lo_row_7.
                  lo_row_8 = lo_row_7.
                  IF lo_row_8 IS NOT INITIAL.
                    " Skipping lo_row_7 to avoid recursion
                    lo_keyspacesmetadata = lo_row_8->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                lv_string = lo_keyspacescellvalue->get_smallintt( ).
                lv_string = lo_keyspacescellvalue->get_textt( ).
                lv_string = lo_keyspacescellvalue->get_timet( ).
                lv_string = lo_keyspacescellvalue->get_timestampt( ).
                lv_string = lo_keyspacescellvalue->get_timeuuidt( ).
                lv_string = lo_keyspacescellvalue->get_tinyintt( ).
                " Skipping lo_row_4->get_value( ) to avoid recursion
                lv_string = lo_keyspacescellvalue->get_uuidt( ).
                lv_string = lo_keyspacescellvalue->get_varchart( ).
                lv_string = lo_keyspacescellvalue->get_varintt( ).
                LOOP AT lo_keyspacescellvalue->get_udtt( ) into ls_row_9.
                  lv_key = ls_row_9-key.
                  lo_value_1 = ls_row_9-value.
                  IF lo_value_1 IS NOT INITIAL.
                    " Skipping ls_row_9-value to avoid recursion
                    lo_keyspacesmetadata = lo_value_1->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
              ENDIF.
              lo_keyspacesmetadata = lo_row_4->get_metadata( ).
              IF lo_keyspacesmetadata IS NOT INITIAL.
                lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                lv_string = lo_keyspacesmetadata->get_writetime( ).
              ENDIF.
            ENDIF.
          ENDLOOP.
          lv_string = lo_value->get_uuidt( ).
          lv_string = lo_value->get_varchart( ).
          lv_string = lo_value->get_varintt( ).
          LOOP AT lo_value->get_udtt( ) into ls_row_9.
            lv_key = ls_row_9-key.
            lo_value_1 = ls_row_9-value.
            IF lo_value_1 IS NOT INITIAL.
              lo_keyspacescellvalue = lo_value_1->get_value( ).
              IF lo_keyspacescellvalue IS NOT INITIAL.
                lv_string = lo_keyspacescellvalue->get_asciit( ).
                lv_string = lo_keyspacescellvalue->get_bigintt( ).
                lv_blob = lo_keyspacescellvalue->get_blobt( ).
                lv_boolean = lo_keyspacescellvalue->get_boolt( ).
                lv_string = lo_keyspacescellvalue->get_countert( ).
                lv_string = lo_keyspacescellvalue->get_datet( ).
                lv_string = lo_keyspacescellvalue->get_decimalt( ).
                lv_string = lo_keyspacescellvalue->get_doublet( ).
                lv_string = lo_keyspacescellvalue->get_floatt( ).
                lv_string = lo_keyspacescellvalue->get_inett( ).
                lv_string = lo_keyspacescellvalue->get_intt( ).
                LOOP AT lo_keyspacescellvalue->get_listt( ) into lo_row_3.
                  lo_row_4 = lo_row_3.
                  IF lo_row_4 IS NOT INITIAL.
                    " Skipping lo_row_3 to avoid recursion
                    lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                LOOP AT lo_keyspacescellvalue->get_mapt( ) into lo_row_5.
                  lo_row_6 = lo_row_5.
                  IF lo_row_6 IS NOT INITIAL.
                    lo_keyspacescellvalue_1 = lo_row_6->get_key( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_3.
                        lo_row_4 = lo_row_3.
                        IF lo_row_4 IS NOT INITIAL.
                          " Skipping lo_row_3 to avoid recursion
                          lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      " Skipping lo_row_6->get_key( ) to avoid recursion
                      LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_3.
                        lo_row_4 = lo_row_3.
                        IF lo_row_4 IS NOT INITIAL.
                          " Skipping lo_row_3 to avoid recursion
                          lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_3.
                        lo_row_4 = lo_row_3.
                        IF lo_row_4 IS NOT INITIAL.
                          " Skipping lo_row_3 to avoid recursion
                          lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      " Skipping lo_row_6->get_key( ) to avoid recursion
                    ENDIF.
                    lo_keyspacescellvalue_1 = lo_row_6->get_value( ).
                    IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                      lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                      lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                      lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                      lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                      lv_string = lo_keyspacescellvalue_1->get_countert( ).
                      lv_string = lo_keyspacescellvalue_1->get_datet( ).
                      lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                      lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                      lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                      lv_string = lo_keyspacescellvalue_1->get_inett( ).
                      lv_string = lo_keyspacescellvalue_1->get_intt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_3.
                        lo_row_4 = lo_row_3.
                        IF lo_row_4 IS NOT INITIAL.
                          " Skipping lo_row_3 to avoid recursion
                          lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      " Skipping lo_row_6->get_value( ) to avoid recursion
                      LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_3.
                        lo_row_4 = lo_row_3.
                        IF lo_row_4 IS NOT INITIAL.
                          " Skipping lo_row_3 to avoid recursion
                          lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                      lv_string = lo_keyspacescellvalue_1->get_textt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timet( ).
                      lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                      lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                      LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_3.
                        lo_row_4 = lo_row_3.
                        IF lo_row_4 IS NOT INITIAL.
                          " Skipping lo_row_3 to avoid recursion
                          lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                          IF lo_keyspacesmetadata IS NOT INITIAL.
                            lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                            lv_string = lo_keyspacesmetadata->get_writetime( ).
                          ENDIF.
                        ENDIF.
                      ENDLOOP.
                      lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                      lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                      lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                      " Skipping lo_row_6->get_value( ) to avoid recursion
                    ENDIF.
                    lo_keyspacesmetadata = lo_row_6->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                LOOP AT lo_keyspacescellvalue->get_sett( ) into lo_row_3.
                  lo_row_4 = lo_row_3.
                  IF lo_row_4 IS NOT INITIAL.
                    " Skipping lo_row_3 to avoid recursion
                    lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                lv_string = lo_keyspacescellvalue->get_smallintt( ).
                lv_string = lo_keyspacescellvalue->get_textt( ).
                lv_string = lo_keyspacescellvalue->get_timet( ).
                lv_string = lo_keyspacescellvalue->get_timestampt( ).
                lv_string = lo_keyspacescellvalue->get_timeuuidt( ).
                lv_string = lo_keyspacescellvalue->get_tinyintt( ).
                LOOP AT lo_keyspacescellvalue->get_tuplet( ) into lo_row_3.
                  lo_row_4 = lo_row_3.
                  IF lo_row_4 IS NOT INITIAL.
                    " Skipping lo_row_3 to avoid recursion
                    lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                    IF lo_keyspacesmetadata IS NOT INITIAL.
                      lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                      lv_string = lo_keyspacesmetadata->get_writetime( ).
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                lv_string = lo_keyspacescellvalue->get_uuidt( ).
                lv_string = lo_keyspacescellvalue->get_varchart( ).
                lv_string = lo_keyspacescellvalue->get_varintt( ).
                " Skipping lo_value_1->get_value( ) to avoid recursion
              ENDIF.
              lo_keyspacesmetadata = lo_value_1->get_metadata( ).
              IF lo_keyspacesmetadata IS NOT INITIAL.
                lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                lv_string = lo_keyspacesmetadata->get_writetime( ).
              ENDIF.
            ENDIF.
          ENDLOOP.
        ENDIF.
      ENDLOOP.
      lo_keyspacesrow = lo_row_1->get_newimage( ).
      IF lo_keyspacesrow IS NOT INITIAL.
        LOOP AT lo_keyspacesrow->get_valuecells( ) into ls_row_10.
          lv_key = ls_row_10-key.
          lo_value_1 = ls_row_10-value.
          IF lo_value_1 IS NOT INITIAL.
            lo_keyspacescellvalue = lo_value_1->get_value( ).
            IF lo_keyspacescellvalue IS NOT INITIAL.
              lv_string = lo_keyspacescellvalue->get_asciit( ).
              lv_string = lo_keyspacescellvalue->get_bigintt( ).
              lv_blob = lo_keyspacescellvalue->get_blobt( ).
              lv_boolean = lo_keyspacescellvalue->get_boolt( ).
              lv_string = lo_keyspacescellvalue->get_countert( ).
              lv_string = lo_keyspacescellvalue->get_datet( ).
              lv_string = lo_keyspacescellvalue->get_decimalt( ).
              lv_string = lo_keyspacescellvalue->get_doublet( ).
              lv_string = lo_keyspacescellvalue->get_floatt( ).
              lv_string = lo_keyspacescellvalue->get_inett( ).
              lv_string = lo_keyspacescellvalue->get_intt( ).
              LOOP AT lo_keyspacescellvalue->get_listt( ) into lo_row_3.
                lo_row_4 = lo_row_3.
                IF lo_row_4 IS NOT INITIAL.
                  " Skipping lo_row_3 to avoid recursion
                  lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                  IF lo_keyspacesmetadata IS NOT INITIAL.
                    lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                    lv_string = lo_keyspacesmetadata->get_writetime( ).
                  ENDIF.
                ENDIF.
              ENDLOOP.
              LOOP AT lo_keyspacescellvalue->get_mapt( ) into lo_row_5.
                lo_row_6 = lo_row_5.
                IF lo_row_6 IS NOT INITIAL.
                  lo_keyspacescellvalue_1 = lo_row_6->get_key( ).
                  IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                    lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                    lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                    lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                    lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                    lv_string = lo_keyspacescellvalue_1->get_countert( ).
                    lv_string = lo_keyspacescellvalue_1->get_datet( ).
                    lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                    lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                    lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                    lv_string = lo_keyspacescellvalue_1->get_inett( ).
                    lv_string = lo_keyspacescellvalue_1->get_intt( ).
                    LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_3.
                      lo_row_4 = lo_row_3.
                      IF lo_row_4 IS NOT INITIAL.
                        " Skipping lo_row_3 to avoid recursion
                        lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                    " Skipping lo_row_6->get_key( ) to avoid recursion
                    LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_3.
                      lo_row_4 = lo_row_3.
                      IF lo_row_4 IS NOT INITIAL.
                        " Skipping lo_row_3 to avoid recursion
                        lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                    lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                    lv_string = lo_keyspacescellvalue_1->get_textt( ).
                    lv_string = lo_keyspacescellvalue_1->get_timet( ).
                    lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                    lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                    lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                    LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_3.
                      lo_row_4 = lo_row_3.
                      IF lo_row_4 IS NOT INITIAL.
                        " Skipping lo_row_3 to avoid recursion
                        lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                    lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                    lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                    lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                    LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                      lv_key = ls_row_9-key.
                      lo_value_2 = ls_row_9-value.
                      IF lo_value_2 IS NOT INITIAL.
                        " Skipping ls_row_9-value to avoid recursion
                        lo_keyspacesmetadata = lo_value_2->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                  ENDIF.
                  lo_keyspacescellvalue_1 = lo_row_6->get_value( ).
                  IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                    lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                    lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                    lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                    lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                    lv_string = lo_keyspacescellvalue_1->get_countert( ).
                    lv_string = lo_keyspacescellvalue_1->get_datet( ).
                    lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                    lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                    lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                    lv_string = lo_keyspacescellvalue_1->get_inett( ).
                    lv_string = lo_keyspacescellvalue_1->get_intt( ).
                    LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_3.
                      lo_row_4 = lo_row_3.
                      IF lo_row_4 IS NOT INITIAL.
                        " Skipping lo_row_3 to avoid recursion
                        lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                    " Skipping lo_row_6->get_value( ) to avoid recursion
                    LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_3.
                      lo_row_4 = lo_row_3.
                      IF lo_row_4 IS NOT INITIAL.
                        " Skipping lo_row_3 to avoid recursion
                        lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                    lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                    lv_string = lo_keyspacescellvalue_1->get_textt( ).
                    lv_string = lo_keyspacescellvalue_1->get_timet( ).
                    lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                    lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                    lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                    LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_3.
                      lo_row_4 = lo_row_3.
                      IF lo_row_4 IS NOT INITIAL.
                        " Skipping lo_row_3 to avoid recursion
                        lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                    lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                    lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                    lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                    LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                      lv_key = ls_row_9-key.
                      lo_value_2 = ls_row_9-value.
                      IF lo_value_2 IS NOT INITIAL.
                        " Skipping ls_row_9-value to avoid recursion
                        lo_keyspacesmetadata = lo_value_2->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                  ENDIF.
                  lo_keyspacesmetadata = lo_row_6->get_metadata( ).
                  IF lo_keyspacesmetadata IS NOT INITIAL.
                    lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                    lv_string = lo_keyspacesmetadata->get_writetime( ).
                  ENDIF.
                ENDIF.
              ENDLOOP.
              LOOP AT lo_keyspacescellvalue->get_sett( ) into lo_row_3.
                lo_row_4 = lo_row_3.
                IF lo_row_4 IS NOT INITIAL.
                  " Skipping lo_row_3 to avoid recursion
                  lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                  IF lo_keyspacesmetadata IS NOT INITIAL.
                    lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                    lv_string = lo_keyspacesmetadata->get_writetime( ).
                  ENDIF.
                ENDIF.
              ENDLOOP.
              lv_string = lo_keyspacescellvalue->get_smallintt( ).
              lv_string = lo_keyspacescellvalue->get_textt( ).
              lv_string = lo_keyspacescellvalue->get_timet( ).
              lv_string = lo_keyspacescellvalue->get_timestampt( ).
              lv_string = lo_keyspacescellvalue->get_timeuuidt( ).
              lv_string = lo_keyspacescellvalue->get_tinyintt( ).
              LOOP AT lo_keyspacescellvalue->get_tuplet( ) into lo_row_3.
                lo_row_4 = lo_row_3.
                IF lo_row_4 IS NOT INITIAL.
                  " Skipping lo_row_3 to avoid recursion
                  lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                  IF lo_keyspacesmetadata IS NOT INITIAL.
                    lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                    lv_string = lo_keyspacesmetadata->get_writetime( ).
                  ENDIF.
                ENDIF.
              ENDLOOP.
              lv_string = lo_keyspacescellvalue->get_uuidt( ).
              lv_string = lo_keyspacescellvalue->get_varchart( ).
              lv_string = lo_keyspacescellvalue->get_varintt( ).
              LOOP AT lo_keyspacescellvalue->get_udtt( ) into ls_row_9.
                lv_key = ls_row_9-key.
                lo_value_2 = ls_row_9-value.
                IF lo_value_2 IS NOT INITIAL.
                  " Skipping ls_row_9-value to avoid recursion
                  lo_keyspacesmetadata = lo_value_2->get_metadata( ).
                  IF lo_keyspacesmetadata IS NOT INITIAL.
                    lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                    lv_string = lo_keyspacesmetadata->get_writetime( ).
                  ENDIF.
                ENDIF.
              ENDLOOP.
            ENDIF.
            lo_keyspacesmetadata = lo_value_1->get_metadata( ).
            IF lo_keyspacesmetadata IS NOT INITIAL.
              lv_string = lo_keyspacesmetadata->get_expirationtime( ).
              lv_string = lo_keyspacesmetadata->get_writetime( ).
            ENDIF.
          ENDIF.
        ENDLOOP.
        LOOP AT lo_keyspacesrow->get_staticcells( ) into ls_row_10.
          lv_key = ls_row_10-key.
          lo_value_1 = ls_row_10-value.
          IF lo_value_1 IS NOT INITIAL.
            lo_keyspacescellvalue = lo_value_1->get_value( ).
            IF lo_keyspacescellvalue IS NOT INITIAL.
              lv_string = lo_keyspacescellvalue->get_asciit( ).
              lv_string = lo_keyspacescellvalue->get_bigintt( ).
              lv_blob = lo_keyspacescellvalue->get_blobt( ).
              lv_boolean = lo_keyspacescellvalue->get_boolt( ).
              lv_string = lo_keyspacescellvalue->get_countert( ).
              lv_string = lo_keyspacescellvalue->get_datet( ).
              lv_string = lo_keyspacescellvalue->get_decimalt( ).
              lv_string = lo_keyspacescellvalue->get_doublet( ).
              lv_string = lo_keyspacescellvalue->get_floatt( ).
              lv_string = lo_keyspacescellvalue->get_inett( ).
              lv_string = lo_keyspacescellvalue->get_intt( ).
              LOOP AT lo_keyspacescellvalue->get_listt( ) into lo_row_3.
                lo_row_4 = lo_row_3.
                IF lo_row_4 IS NOT INITIAL.
                  " Skipping lo_row_3 to avoid recursion
                  lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                  IF lo_keyspacesmetadata IS NOT INITIAL.
                    lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                    lv_string = lo_keyspacesmetadata->get_writetime( ).
                  ENDIF.
                ENDIF.
              ENDLOOP.
              LOOP AT lo_keyspacescellvalue->get_mapt( ) into lo_row_5.
                lo_row_6 = lo_row_5.
                IF lo_row_6 IS NOT INITIAL.
                  lo_keyspacescellvalue_1 = lo_row_6->get_key( ).
                  IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                    lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                    lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                    lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                    lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                    lv_string = lo_keyspacescellvalue_1->get_countert( ).
                    lv_string = lo_keyspacescellvalue_1->get_datet( ).
                    lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                    lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                    lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                    lv_string = lo_keyspacescellvalue_1->get_inett( ).
                    lv_string = lo_keyspacescellvalue_1->get_intt( ).
                    LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_3.
                      lo_row_4 = lo_row_3.
                      IF lo_row_4 IS NOT INITIAL.
                        " Skipping lo_row_3 to avoid recursion
                        lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                    " Skipping lo_row_6->get_key( ) to avoid recursion
                    LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_3.
                      lo_row_4 = lo_row_3.
                      IF lo_row_4 IS NOT INITIAL.
                        " Skipping lo_row_3 to avoid recursion
                        lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                    lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                    lv_string = lo_keyspacescellvalue_1->get_textt( ).
                    lv_string = lo_keyspacescellvalue_1->get_timet( ).
                    lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                    lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                    lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                    LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_3.
                      lo_row_4 = lo_row_3.
                      IF lo_row_4 IS NOT INITIAL.
                        " Skipping lo_row_3 to avoid recursion
                        lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                    lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                    lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                    lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                    LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                      lv_key = ls_row_9-key.
                      lo_value_2 = ls_row_9-value.
                      IF lo_value_2 IS NOT INITIAL.
                        " Skipping ls_row_9-value to avoid recursion
                        lo_keyspacesmetadata = lo_value_2->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                  ENDIF.
                  lo_keyspacescellvalue_1 = lo_row_6->get_value( ).
                  IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                    lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                    lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                    lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                    lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                    lv_string = lo_keyspacescellvalue_1->get_countert( ).
                    lv_string = lo_keyspacescellvalue_1->get_datet( ).
                    lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                    lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                    lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                    lv_string = lo_keyspacescellvalue_1->get_inett( ).
                    lv_string = lo_keyspacescellvalue_1->get_intt( ).
                    LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_3.
                      lo_row_4 = lo_row_3.
                      IF lo_row_4 IS NOT INITIAL.
                        " Skipping lo_row_3 to avoid recursion
                        lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                    " Skipping lo_row_6->get_value( ) to avoid recursion
                    LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_3.
                      lo_row_4 = lo_row_3.
                      IF lo_row_4 IS NOT INITIAL.
                        " Skipping lo_row_3 to avoid recursion
                        lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                    lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                    lv_string = lo_keyspacescellvalue_1->get_textt( ).
                    lv_string = lo_keyspacescellvalue_1->get_timet( ).
                    lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                    lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                    lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                    LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_3.
                      lo_row_4 = lo_row_3.
                      IF lo_row_4 IS NOT INITIAL.
                        " Skipping lo_row_3 to avoid recursion
                        lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                    lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                    lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                    lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                    LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                      lv_key = ls_row_9-key.
                      lo_value_2 = ls_row_9-value.
                      IF lo_value_2 IS NOT INITIAL.
                        " Skipping ls_row_9-value to avoid recursion
                        lo_keyspacesmetadata = lo_value_2->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                  ENDIF.
                  lo_keyspacesmetadata = lo_row_6->get_metadata( ).
                  IF lo_keyspacesmetadata IS NOT INITIAL.
                    lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                    lv_string = lo_keyspacesmetadata->get_writetime( ).
                  ENDIF.
                ENDIF.
              ENDLOOP.
              LOOP AT lo_keyspacescellvalue->get_sett( ) into lo_row_3.
                lo_row_4 = lo_row_3.
                IF lo_row_4 IS NOT INITIAL.
                  " Skipping lo_row_3 to avoid recursion
                  lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                  IF lo_keyspacesmetadata IS NOT INITIAL.
                    lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                    lv_string = lo_keyspacesmetadata->get_writetime( ).
                  ENDIF.
                ENDIF.
              ENDLOOP.
              lv_string = lo_keyspacescellvalue->get_smallintt( ).
              lv_string = lo_keyspacescellvalue->get_textt( ).
              lv_string = lo_keyspacescellvalue->get_timet( ).
              lv_string = lo_keyspacescellvalue->get_timestampt( ).
              lv_string = lo_keyspacescellvalue->get_timeuuidt( ).
              lv_string = lo_keyspacescellvalue->get_tinyintt( ).
              LOOP AT lo_keyspacescellvalue->get_tuplet( ) into lo_row_3.
                lo_row_4 = lo_row_3.
                IF lo_row_4 IS NOT INITIAL.
                  " Skipping lo_row_3 to avoid recursion
                  lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                  IF lo_keyspacesmetadata IS NOT INITIAL.
                    lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                    lv_string = lo_keyspacesmetadata->get_writetime( ).
                  ENDIF.
                ENDIF.
              ENDLOOP.
              lv_string = lo_keyspacescellvalue->get_uuidt( ).
              lv_string = lo_keyspacescellvalue->get_varchart( ).
              lv_string = lo_keyspacescellvalue->get_varintt( ).
              LOOP AT lo_keyspacescellvalue->get_udtt( ) into ls_row_9.
                lv_key = ls_row_9-key.
                lo_value_2 = ls_row_9-value.
                IF lo_value_2 IS NOT INITIAL.
                  " Skipping ls_row_9-value to avoid recursion
                  lo_keyspacesmetadata = lo_value_2->get_metadata( ).
                  IF lo_keyspacesmetadata IS NOT INITIAL.
                    lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                    lv_string = lo_keyspacesmetadata->get_writetime( ).
                  ENDIF.
                ENDIF.
              ENDLOOP.
            ENDIF.
            lo_keyspacesmetadata = lo_value_1->get_metadata( ).
            IF lo_keyspacesmetadata IS NOT INITIAL.
              lv_string = lo_keyspacesmetadata->get_expirationtime( ).
              lv_string = lo_keyspacesmetadata->get_writetime( ).
            ENDIF.
          ENDIF.
        ENDLOOP.
        lo_keyspacesmetadata = lo_keyspacesrow->get_rowmetadata( ).
        IF lo_keyspacesmetadata IS NOT INITIAL.
          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
          lv_string = lo_keyspacesmetadata->get_writetime( ).
        ENDIF.
      ENDIF.
      lo_keyspacesrow = lo_row_1->get_oldimage( ).
      IF lo_keyspacesrow IS NOT INITIAL.
        LOOP AT lo_keyspacesrow->get_valuecells( ) into ls_row_10.
          lv_key = ls_row_10-key.
          lo_value_1 = ls_row_10-value.
          IF lo_value_1 IS NOT INITIAL.
            lo_keyspacescellvalue = lo_value_1->get_value( ).
            IF lo_keyspacescellvalue IS NOT INITIAL.
              lv_string = lo_keyspacescellvalue->get_asciit( ).
              lv_string = lo_keyspacescellvalue->get_bigintt( ).
              lv_blob = lo_keyspacescellvalue->get_blobt( ).
              lv_boolean = lo_keyspacescellvalue->get_boolt( ).
              lv_string = lo_keyspacescellvalue->get_countert( ).
              lv_string = lo_keyspacescellvalue->get_datet( ).
              lv_string = lo_keyspacescellvalue->get_decimalt( ).
              lv_string = lo_keyspacescellvalue->get_doublet( ).
              lv_string = lo_keyspacescellvalue->get_floatt( ).
              lv_string = lo_keyspacescellvalue->get_inett( ).
              lv_string = lo_keyspacescellvalue->get_intt( ).
              LOOP AT lo_keyspacescellvalue->get_listt( ) into lo_row_3.
                lo_row_4 = lo_row_3.
                IF lo_row_4 IS NOT INITIAL.
                  " Skipping lo_row_3 to avoid recursion
                  lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                  IF lo_keyspacesmetadata IS NOT INITIAL.
                    lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                    lv_string = lo_keyspacesmetadata->get_writetime( ).
                  ENDIF.
                ENDIF.
              ENDLOOP.
              LOOP AT lo_keyspacescellvalue->get_mapt( ) into lo_row_5.
                lo_row_6 = lo_row_5.
                IF lo_row_6 IS NOT INITIAL.
                  lo_keyspacescellvalue_1 = lo_row_6->get_key( ).
                  IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                    lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                    lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                    lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                    lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                    lv_string = lo_keyspacescellvalue_1->get_countert( ).
                    lv_string = lo_keyspacescellvalue_1->get_datet( ).
                    lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                    lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                    lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                    lv_string = lo_keyspacescellvalue_1->get_inett( ).
                    lv_string = lo_keyspacescellvalue_1->get_intt( ).
                    LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_3.
                      lo_row_4 = lo_row_3.
                      IF lo_row_4 IS NOT INITIAL.
                        " Skipping lo_row_3 to avoid recursion
                        lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                    " Skipping lo_row_6->get_key( ) to avoid recursion
                    LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_3.
                      lo_row_4 = lo_row_3.
                      IF lo_row_4 IS NOT INITIAL.
                        " Skipping lo_row_3 to avoid recursion
                        lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                    lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                    lv_string = lo_keyspacescellvalue_1->get_textt( ).
                    lv_string = lo_keyspacescellvalue_1->get_timet( ).
                    lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                    lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                    lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                    LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_3.
                      lo_row_4 = lo_row_3.
                      IF lo_row_4 IS NOT INITIAL.
                        " Skipping lo_row_3 to avoid recursion
                        lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                    lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                    lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                    lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                    LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                      lv_key = ls_row_9-key.
                      lo_value_2 = ls_row_9-value.
                      IF lo_value_2 IS NOT INITIAL.
                        " Skipping ls_row_9-value to avoid recursion
                        lo_keyspacesmetadata = lo_value_2->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                  ENDIF.
                  lo_keyspacescellvalue_1 = lo_row_6->get_value( ).
                  IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                    lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                    lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                    lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                    lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                    lv_string = lo_keyspacescellvalue_1->get_countert( ).
                    lv_string = lo_keyspacescellvalue_1->get_datet( ).
                    lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                    lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                    lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                    lv_string = lo_keyspacescellvalue_1->get_inett( ).
                    lv_string = lo_keyspacescellvalue_1->get_intt( ).
                    LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_3.
                      lo_row_4 = lo_row_3.
                      IF lo_row_4 IS NOT INITIAL.
                        " Skipping lo_row_3 to avoid recursion
                        lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                    " Skipping lo_row_6->get_value( ) to avoid recursion
                    LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_3.
                      lo_row_4 = lo_row_3.
                      IF lo_row_4 IS NOT INITIAL.
                        " Skipping lo_row_3 to avoid recursion
                        lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                    lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                    lv_string = lo_keyspacescellvalue_1->get_textt( ).
                    lv_string = lo_keyspacescellvalue_1->get_timet( ).
                    lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                    lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                    lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                    LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_3.
                      lo_row_4 = lo_row_3.
                      IF lo_row_4 IS NOT INITIAL.
                        " Skipping lo_row_3 to avoid recursion
                        lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                    lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                    lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                    lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                    LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                      lv_key = ls_row_9-key.
                      lo_value_2 = ls_row_9-value.
                      IF lo_value_2 IS NOT INITIAL.
                        " Skipping ls_row_9-value to avoid recursion
                        lo_keyspacesmetadata = lo_value_2->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                  ENDIF.
                  lo_keyspacesmetadata = lo_row_6->get_metadata( ).
                  IF lo_keyspacesmetadata IS NOT INITIAL.
                    lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                    lv_string = lo_keyspacesmetadata->get_writetime( ).
                  ENDIF.
                ENDIF.
              ENDLOOP.
              LOOP AT lo_keyspacescellvalue->get_sett( ) into lo_row_3.
                lo_row_4 = lo_row_3.
                IF lo_row_4 IS NOT INITIAL.
                  " Skipping lo_row_3 to avoid recursion
                  lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                  IF lo_keyspacesmetadata IS NOT INITIAL.
                    lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                    lv_string = lo_keyspacesmetadata->get_writetime( ).
                  ENDIF.
                ENDIF.
              ENDLOOP.
              lv_string = lo_keyspacescellvalue->get_smallintt( ).
              lv_string = lo_keyspacescellvalue->get_textt( ).
              lv_string = lo_keyspacescellvalue->get_timet( ).
              lv_string = lo_keyspacescellvalue->get_timestampt( ).
              lv_string = lo_keyspacescellvalue->get_timeuuidt( ).
              lv_string = lo_keyspacescellvalue->get_tinyintt( ).
              LOOP AT lo_keyspacescellvalue->get_tuplet( ) into lo_row_3.
                lo_row_4 = lo_row_3.
                IF lo_row_4 IS NOT INITIAL.
                  " Skipping lo_row_3 to avoid recursion
                  lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                  IF lo_keyspacesmetadata IS NOT INITIAL.
                    lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                    lv_string = lo_keyspacesmetadata->get_writetime( ).
                  ENDIF.
                ENDIF.
              ENDLOOP.
              lv_string = lo_keyspacescellvalue->get_uuidt( ).
              lv_string = lo_keyspacescellvalue->get_varchart( ).
              lv_string = lo_keyspacescellvalue->get_varintt( ).
              LOOP AT lo_keyspacescellvalue->get_udtt( ) into ls_row_9.
                lv_key = ls_row_9-key.
                lo_value_2 = ls_row_9-value.
                IF lo_value_2 IS NOT INITIAL.
                  " Skipping ls_row_9-value to avoid recursion
                  lo_keyspacesmetadata = lo_value_2->get_metadata( ).
                  IF lo_keyspacesmetadata IS NOT INITIAL.
                    lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                    lv_string = lo_keyspacesmetadata->get_writetime( ).
                  ENDIF.
                ENDIF.
              ENDLOOP.
            ENDIF.
            lo_keyspacesmetadata = lo_value_1->get_metadata( ).
            IF lo_keyspacesmetadata IS NOT INITIAL.
              lv_string = lo_keyspacesmetadata->get_expirationtime( ).
              lv_string = lo_keyspacesmetadata->get_writetime( ).
            ENDIF.
          ENDIF.
        ENDLOOP.
        LOOP AT lo_keyspacesrow->get_staticcells( ) into ls_row_10.
          lv_key = ls_row_10-key.
          lo_value_1 = ls_row_10-value.
          IF lo_value_1 IS NOT INITIAL.
            lo_keyspacescellvalue = lo_value_1->get_value( ).
            IF lo_keyspacescellvalue IS NOT INITIAL.
              lv_string = lo_keyspacescellvalue->get_asciit( ).
              lv_string = lo_keyspacescellvalue->get_bigintt( ).
              lv_blob = lo_keyspacescellvalue->get_blobt( ).
              lv_boolean = lo_keyspacescellvalue->get_boolt( ).
              lv_string = lo_keyspacescellvalue->get_countert( ).
              lv_string = lo_keyspacescellvalue->get_datet( ).
              lv_string = lo_keyspacescellvalue->get_decimalt( ).
              lv_string = lo_keyspacescellvalue->get_doublet( ).
              lv_string = lo_keyspacescellvalue->get_floatt( ).
              lv_string = lo_keyspacescellvalue->get_inett( ).
              lv_string = lo_keyspacescellvalue->get_intt( ).
              LOOP AT lo_keyspacescellvalue->get_listt( ) into lo_row_3.
                lo_row_4 = lo_row_3.
                IF lo_row_4 IS NOT INITIAL.
                  " Skipping lo_row_3 to avoid recursion
                  lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                  IF lo_keyspacesmetadata IS NOT INITIAL.
                    lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                    lv_string = lo_keyspacesmetadata->get_writetime( ).
                  ENDIF.
                ENDIF.
              ENDLOOP.
              LOOP AT lo_keyspacescellvalue->get_mapt( ) into lo_row_5.
                lo_row_6 = lo_row_5.
                IF lo_row_6 IS NOT INITIAL.
                  lo_keyspacescellvalue_1 = lo_row_6->get_key( ).
                  IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                    lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                    lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                    lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                    lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                    lv_string = lo_keyspacescellvalue_1->get_countert( ).
                    lv_string = lo_keyspacescellvalue_1->get_datet( ).
                    lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                    lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                    lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                    lv_string = lo_keyspacescellvalue_1->get_inett( ).
                    lv_string = lo_keyspacescellvalue_1->get_intt( ).
                    LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_3.
                      lo_row_4 = lo_row_3.
                      IF lo_row_4 IS NOT INITIAL.
                        " Skipping lo_row_3 to avoid recursion
                        lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                    " Skipping lo_row_6->get_key( ) to avoid recursion
                    LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_3.
                      lo_row_4 = lo_row_3.
                      IF lo_row_4 IS NOT INITIAL.
                        " Skipping lo_row_3 to avoid recursion
                        lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                    lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                    lv_string = lo_keyspacescellvalue_1->get_textt( ).
                    lv_string = lo_keyspacescellvalue_1->get_timet( ).
                    lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                    lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                    lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                    LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_3.
                      lo_row_4 = lo_row_3.
                      IF lo_row_4 IS NOT INITIAL.
                        " Skipping lo_row_3 to avoid recursion
                        lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                    lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                    lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                    lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                    LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                      lv_key = ls_row_9-key.
                      lo_value_2 = ls_row_9-value.
                      IF lo_value_2 IS NOT INITIAL.
                        " Skipping ls_row_9-value to avoid recursion
                        lo_keyspacesmetadata = lo_value_2->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                  ENDIF.
                  lo_keyspacescellvalue_1 = lo_row_6->get_value( ).
                  IF lo_keyspacescellvalue_1 IS NOT INITIAL.
                    lv_string = lo_keyspacescellvalue_1->get_asciit( ).
                    lv_string = lo_keyspacescellvalue_1->get_bigintt( ).
                    lv_blob = lo_keyspacescellvalue_1->get_blobt( ).
                    lv_boolean = lo_keyspacescellvalue_1->get_boolt( ).
                    lv_string = lo_keyspacescellvalue_1->get_countert( ).
                    lv_string = lo_keyspacescellvalue_1->get_datet( ).
                    lv_string = lo_keyspacescellvalue_1->get_decimalt( ).
                    lv_string = lo_keyspacescellvalue_1->get_doublet( ).
                    lv_string = lo_keyspacescellvalue_1->get_floatt( ).
                    lv_string = lo_keyspacescellvalue_1->get_inett( ).
                    lv_string = lo_keyspacescellvalue_1->get_intt( ).
                    LOOP AT lo_keyspacescellvalue_1->get_listt( ) into lo_row_3.
                      lo_row_4 = lo_row_3.
                      IF lo_row_4 IS NOT INITIAL.
                        " Skipping lo_row_3 to avoid recursion
                        lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                    " Skipping lo_row_6->get_value( ) to avoid recursion
                    LOOP AT lo_keyspacescellvalue_1->get_sett( ) into lo_row_3.
                      lo_row_4 = lo_row_3.
                      IF lo_row_4 IS NOT INITIAL.
                        " Skipping lo_row_3 to avoid recursion
                        lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                    lv_string = lo_keyspacescellvalue_1->get_smallintt( ).
                    lv_string = lo_keyspacescellvalue_1->get_textt( ).
                    lv_string = lo_keyspacescellvalue_1->get_timet( ).
                    lv_string = lo_keyspacescellvalue_1->get_timestampt( ).
                    lv_string = lo_keyspacescellvalue_1->get_timeuuidt( ).
                    lv_string = lo_keyspacescellvalue_1->get_tinyintt( ).
                    LOOP AT lo_keyspacescellvalue_1->get_tuplet( ) into lo_row_3.
                      lo_row_4 = lo_row_3.
                      IF lo_row_4 IS NOT INITIAL.
                        " Skipping lo_row_3 to avoid recursion
                        lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                    lv_string = lo_keyspacescellvalue_1->get_uuidt( ).
                    lv_string = lo_keyspacescellvalue_1->get_varchart( ).
                    lv_string = lo_keyspacescellvalue_1->get_varintt( ).
                    LOOP AT lo_keyspacescellvalue_1->get_udtt( ) into ls_row_9.
                      lv_key = ls_row_9-key.
                      lo_value_2 = ls_row_9-value.
                      IF lo_value_2 IS NOT INITIAL.
                        " Skipping ls_row_9-value to avoid recursion
                        lo_keyspacesmetadata = lo_value_2->get_metadata( ).
                        IF lo_keyspacesmetadata IS NOT INITIAL.
                          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                          lv_string = lo_keyspacesmetadata->get_writetime( ).
                        ENDIF.
                      ENDIF.
                    ENDLOOP.
                  ENDIF.
                  lo_keyspacesmetadata = lo_row_6->get_metadata( ).
                  IF lo_keyspacesmetadata IS NOT INITIAL.
                    lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                    lv_string = lo_keyspacesmetadata->get_writetime( ).
                  ENDIF.
                ENDIF.
              ENDLOOP.
              LOOP AT lo_keyspacescellvalue->get_sett( ) into lo_row_3.
                lo_row_4 = lo_row_3.
                IF lo_row_4 IS NOT INITIAL.
                  " Skipping lo_row_3 to avoid recursion
                  lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                  IF lo_keyspacesmetadata IS NOT INITIAL.
                    lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                    lv_string = lo_keyspacesmetadata->get_writetime( ).
                  ENDIF.
                ENDIF.
              ENDLOOP.
              lv_string = lo_keyspacescellvalue->get_smallintt( ).
              lv_string = lo_keyspacescellvalue->get_textt( ).
              lv_string = lo_keyspacescellvalue->get_timet( ).
              lv_string = lo_keyspacescellvalue->get_timestampt( ).
              lv_string = lo_keyspacescellvalue->get_timeuuidt( ).
              lv_string = lo_keyspacescellvalue->get_tinyintt( ).
              LOOP AT lo_keyspacescellvalue->get_tuplet( ) into lo_row_3.
                lo_row_4 = lo_row_3.
                IF lo_row_4 IS NOT INITIAL.
                  " Skipping lo_row_3 to avoid recursion
                  lo_keyspacesmetadata = lo_row_4->get_metadata( ).
                  IF lo_keyspacesmetadata IS NOT INITIAL.
                    lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                    lv_string = lo_keyspacesmetadata->get_writetime( ).
                  ENDIF.
                ENDIF.
              ENDLOOP.
              lv_string = lo_keyspacescellvalue->get_uuidt( ).
              lv_string = lo_keyspacescellvalue->get_varchart( ).
              lv_string = lo_keyspacescellvalue->get_varintt( ).
              LOOP AT lo_keyspacescellvalue->get_udtt( ) into ls_row_9.
                lv_key = ls_row_9-key.
                lo_value_2 = ls_row_9-value.
                IF lo_value_2 IS NOT INITIAL.
                  " Skipping ls_row_9-value to avoid recursion
                  lo_keyspacesmetadata = lo_value_2->get_metadata( ).
                  IF lo_keyspacesmetadata IS NOT INITIAL.
                    lv_string = lo_keyspacesmetadata->get_expirationtime( ).
                    lv_string = lo_keyspacesmetadata->get_writetime( ).
                  ENDIF.
                ENDIF.
              ENDLOOP.
            ENDIF.
            lo_keyspacesmetadata = lo_value_1->get_metadata( ).
            IF lo_keyspacesmetadata IS NOT INITIAL.
              lv_string = lo_keyspacesmetadata->get_expirationtime( ).
              lv_string = lo_keyspacesmetadata->get_writetime( ).
            ENDIF.
          ENDIF.
        ENDLOOP.
        lo_keyspacesmetadata = lo_keyspacesrow->get_rowmetadata( ).
        IF lo_keyspacesmetadata IS NOT INITIAL.
          lv_string = lo_keyspacesmetadata->get_expirationtime( ).
          lv_string = lo_keyspacesmetadata->get_writetime( ).
        ENDIF.
      ENDIF.
      lv_sequencenumber = lo_row_1->get_sequencenumber( ).
    ENDIF.
  ENDLOOP.
  lv_sharditerator = lo_result->get_nextsharditerator( ).
ENDIF.