/AWS1/IF_DYN=>QUERY()¶
About Query¶
You must provide the name of the partition key attribute and a single value for that
attribute. Query returns all items with that partition key value.
Optionally, you can provide a sort key attribute and use a comparison operator to refine
the search results.
Use the KeyConditionExpression parameter to provide a specific value for
the partition key. The Query operation will return all of the items from
the table or index with that partition key value. You can optionally narrow the scope of
the Query operation by specifying a sort key value and a comparison
operator in KeyConditionExpression. To further refine the
Query results, you can optionally provide a
FilterExpression. A FilterExpression determines which
items within the results should be returned to you. All of the other results are
discarded. 
 A Query operation always returns a result set. If no matching items are
found, the result set will be empty. Queries that do not return results consume the
minimum number of read capacity units for that type of read operation. 
 DynamoDB calculates the number of read capacity units consumed based on item
size, not on the amount of data that is returned to an application. The number of
capacity units consumed will be the same whether you request all of the attributes
(the default behavior) or just some of them (using a projection expression). The
number will also be the same whether or not you use a FilterExpression.
Query results are always sorted by the sort key value. If the data type of
the sort key is Number, the results are returned in numeric order; otherwise, the
results are returned in order of UTF-8 bytes. By default, the sort order is ascending.
To reverse the order, set the ScanIndexForward parameter to false. 
 A single Query operation will read up to the maximum number of items set
(if using the Limit parameter) or a maximum of 1 MB of data and then apply
any filtering to the results using FilterExpression. If
LastEvaluatedKey is present in the response, you will need to paginate
the result set. For more information, see Paginating
the Results in the Amazon DynamoDB Developer Guide. 
FilterExpression is applied after a Query finishes, but before
the results are returned. A FilterExpression cannot contain partition key
or sort key attributes. You need to specify those attributes in the
KeyConditionExpression. 
 A Query operation can return an empty result set and a
LastEvaluatedKey if all the items read for the page of results are
filtered out. 
You can query a table, a local secondary index, or a global secondary index. For a
query on a table or on a local secondary index, you can set the
ConsistentRead parameter to true and obtain a strongly
consistent result. Global secondary indexes support eventually consistent reads only, so
do not specify ConsistentRead when querying a global secondary
index.
Method Signature¶
METHODS /AWS1/IF_DYN~QUERY
  IMPORTING
    !IV_TABLENAME TYPE /AWS1/DYNTABLEARN OPTIONAL
    !IV_INDEXNAME TYPE /AWS1/DYNINDEXNAME OPTIONAL
    !IV_SELECT TYPE /AWS1/DYNSELECT OPTIONAL
    !IT_ATTRIBUTESTOGET TYPE /AWS1/CL_DYNATTRNAMELIST_W=>TT_ATTRIBUTENAMELIST OPTIONAL
    !IV_LIMIT TYPE /AWS1/DYNPOSITIVEINTEGEROBJECT OPTIONAL
    !IV_CONSISTENTREAD TYPE /AWS1/DYNCONSISTENTREAD OPTIONAL
    !IT_KEYCONDITIONS TYPE /AWS1/CL_DYNCONDITION=>TT_KEYCONDITIONS OPTIONAL
    !IT_QUERYFILTER TYPE /AWS1/CL_DYNCONDITION=>TT_FILTERCONDITIONMAP OPTIONAL
    !IV_CONDITIONALOPERATOR TYPE /AWS1/DYNCONDITIONALOPERATOR OPTIONAL
    !IV_SCANINDEXFORWARD TYPE /AWS1/DYNBOOLEANOBJECT OPTIONAL
    !IT_EXCLUSIVESTARTKEY TYPE /AWS1/CL_DYNATTRIBUTEVALUE=>TT_KEY OPTIONAL
    !IV_RETURNCONSUMEDCAPACITY TYPE /AWS1/DYNRETURNCONSUMEDCAP OPTIONAL
    !IV_PROJECTIONEXPRESSION TYPE /AWS1/DYNPROJECTIONEXPRESSION OPTIONAL
    !IV_FILTEREXPRESSION TYPE /AWS1/DYNCONDITIONEXPRESSION OPTIONAL
    !IV_KEYCONDITIONEXPRESSION TYPE /AWS1/DYNKEYEXPRESSION OPTIONAL
    !IT_EXPRESSIONATTRIBUTENAMES TYPE /AWS1/CL_DYNXPRSNATTRNAMEMAP_W=>TT_EXPRESSIONATTRIBUTENAMEMAP OPTIONAL
    !IT_EXPRESSIONATTRIBUTEVALUES TYPE /AWS1/CL_DYNATTRIBUTEVALUE=>TT_EXPRESSIONATTRIBUTEVALUEMAP OPTIONAL
  RETURNING
    VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_dynqueryoutput
  RAISING
    /AWS1/CX_DYNINTERNALSERVERERR
    /AWS1/CX_DYNINVALIDENDPOINTEX
    /AWS1/CX_DYNPROVTHRUPUTEXCDEX
    /AWS1/CX_DYNREQUESTLIMITEXCD
    /AWS1/CX_DYNRESOURCENOTFOUNDEX
    /AWS1/CX_DYNTHROTTLINGEX
    /AWS1/CX_DYNCLIENTEXC
    /AWS1/CX_DYNSERVEREXC
    /AWS1/CX_RT_TECHNICAL_GENERIC
    /AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_tablename TYPE /AWS1/DYNTABLEARN /AWS1/DYNTABLEARN¶
The name of the table containing the requested items. You can also provide the Amazon Resource Name (ARN) of the table in this parameter.
Optional arguments:¶
iv_indexname TYPE /AWS1/DYNINDEXNAME /AWS1/DYNINDEXNAME¶
The name of an index to query. This index can be any local secondary index or global secondary index on the table. Note that if you use the
IndexNameparameter, you must also provideTableName.
iv_select TYPE /AWS1/DYNSELECT /AWS1/DYNSELECT¶
The attributes to be returned in the result. You can retrieve all item attributes, specific item attributes, the count of matching items, or in the case of an index, some or all of the attributes projected into the index.
ALL_ATTRIBUTES- Returns all of the item attributes from the specified table or index. If you query a local secondary index, then for each matching item in the index, DynamoDB fetches the entire item from the parent table. If the index is configured to project all item attributes, then all of the data can be obtained from the local secondary index, and no fetching is required.
ALL_PROJECTED_ATTRIBUTES- Allowed only when querying an index. Retrieves all attributes that have been projected into the index. If the index is configured to project all attributes, this return value is equivalent to specifyingALL_ATTRIBUTES.
COUNT- Returns the number of matching items, rather than the matching items themselves. Note that this uses the same quantity of read capacity units as getting the items, and is subject to the same item size calculations.
SPECIFIC_ATTRIBUTES- Returns only the attributes listed inProjectionExpression. This return value is equivalent to specifyingProjectionExpressionwithout specifying any value forSelect.If you query or scan a local secondary index and request only attributes that are projected into that index, the operation will read only the index and not the table. If any of the requested attributes are not projected into the local secondary index, DynamoDB fetches each of these attributes from the parent table. This extra fetching incurs additional throughput cost and latency.
If you query or scan a global secondary index, you can only request attributes that are projected into the index. Global secondary index queries cannot fetch attributes from the parent table.
If neither
SelectnorProjectionExpressionare specified, DynamoDB defaults toALL_ATTRIBUTESwhen accessing a table, andALL_PROJECTED_ATTRIBUTESwhen accessing an index. You cannot use bothSelectandProjectionExpressiontogether in a single request, unless the value forSelectisSPECIFIC_ATTRIBUTES. (This usage is equivalent to specifyingProjectionExpressionwithout any value forSelect.)If you use the
ProjectionExpressionparameter, then the value forSelectcan only beSPECIFIC_ATTRIBUTES. Any other value forSelectwill return an error.
it_attributestoget TYPE /AWS1/CL_DYNATTRNAMELIST_W=>TT_ATTRIBUTENAMELIST TT_ATTRIBUTENAMELIST¶
This is a legacy parameter. Use
ProjectionExpressioninstead. For more information, see AttributesToGet in the Amazon DynamoDB Developer Guide.
iv_limit TYPE /AWS1/DYNPOSITIVEINTEGEROBJECT /AWS1/DYNPOSITIVEINTEGEROBJECT¶
The maximum number of items to evaluate (not necessarily the number of matching items). If DynamoDB processes the number of items up to the limit while processing the results, it stops the operation and returns the matching values up to that point, and a key in
LastEvaluatedKeyto apply in a subsequent operation, so that you can pick up where you left off. Also, if the processed dataset size exceeds 1 MB before DynamoDB reaches this limit, it stops the operation and returns the matching values up to the limit, and a key inLastEvaluatedKeyto apply in a subsequent operation to continue the operation. For more information, see Query and Scan in the Amazon DynamoDB Developer Guide.
iv_consistentread TYPE /AWS1/DYNCONSISTENTREAD /AWS1/DYNCONSISTENTREAD¶
Determines the read consistency model: If set to
true, then the operation uses strongly consistent reads; otherwise, the operation uses eventually consistent reads.Strongly consistent reads are not supported on global secondary indexes. If you query a global secondary index with
ConsistentReadset totrue, you will receive aValidationException.
it_keyconditions TYPE /AWS1/CL_DYNCONDITION=>TT_KEYCONDITIONS TT_KEYCONDITIONS¶
This is a legacy parameter. Use
KeyConditionExpressioninstead. For more information, see KeyConditions in the Amazon DynamoDB Developer Guide.
it_queryfilter TYPE /AWS1/CL_DYNCONDITION=>TT_FILTERCONDITIONMAP TT_FILTERCONDITIONMAP¶
This is a legacy parameter. Use
FilterExpressioninstead. For more information, see QueryFilter in the Amazon DynamoDB Developer Guide.
iv_conditionaloperator TYPE /AWS1/DYNCONDITIONALOPERATOR /AWS1/DYNCONDITIONALOPERATOR¶
This is a legacy parameter. Use
FilterExpressioninstead. For more information, see ConditionalOperator in the Amazon DynamoDB Developer Guide.
iv_scanindexforward TYPE /AWS1/DYNBOOLEANOBJECT /AWS1/DYNBOOLEANOBJECT¶
Specifies the order for index traversal: If
true(default), the traversal is performed in ascending order; iffalse, the traversal is performed in descending order.Items with the same partition key value are stored in sorted order by sort key. If the sort key data type is Number, the results are stored in numeric order. For type String, the results are stored in order of UTF-8 bytes. For type Binary, DynamoDB treats each byte of the binary data as unsigned.
If
ScanIndexForwardistrue, DynamoDB returns the results in the order in which they are stored (by sort key value). This is the default behavior. IfScanIndexForwardisfalse, DynamoDB reads the results in reverse order by sort key value, and then returns the results to the client.
it_exclusivestartkey TYPE /AWS1/CL_DYNATTRIBUTEVALUE=>TT_KEY TT_KEY¶
The primary key of the first item that this operation will evaluate. Use the value that was returned for
LastEvaluatedKeyin the previous operation.The data type for
ExclusiveStartKeymust be String, Number, or Binary. No set data types are allowed.
iv_returnconsumedcapacity TYPE /AWS1/DYNRETURNCONSUMEDCAP /AWS1/DYNRETURNCONSUMEDCAP¶
ReturnConsumedCapacity
iv_projectionexpression TYPE /AWS1/DYNPROJECTIONEXPRESSION /AWS1/DYNPROJECTIONEXPRESSION¶
A string that identifies one or more attributes to retrieve from the table. These attributes can include scalars, sets, or elements of a JSON document. The attributes in the expression must be separated by commas.
If no attribute names are specified, then all attributes will be returned. If any of the requested attributes are not found, they will not appear in the result.
For more information, see Accessing Item Attributes in the Amazon DynamoDB Developer Guide.
iv_filterexpression TYPE /AWS1/DYNCONDITIONEXPRESSION /AWS1/DYNCONDITIONEXPRESSION¶
A string that contains conditions that DynamoDB applies after the
Queryoperation, but before the data is returned to you. Items that do not satisfy theFilterExpressioncriteria are not returned.A
FilterExpressiondoes not allow key attributes. You cannot define a filter expression based on a partition key or a sort key.A
FilterExpressionis applied after the items have already been read; the process of filtering does not consume any additional read capacity units.For more information, see Filter Expressions in the Amazon DynamoDB Developer Guide.
iv_keyconditionexpression TYPE /AWS1/DYNKEYEXPRESSION /AWS1/DYNKEYEXPRESSION¶
The condition that specifies the key values for items to be retrieved by the
Queryaction.The condition must perform an equality test on a single partition key value.
The condition can optionally perform one of several comparison tests on a single sort key value. This allows
Queryto retrieve one item with a given partition key value and sort key value, or several items that have the same partition key value but different sort key values.The partition key equality test is required, and must be specified in the following format:
partitionKeyName=:partitionkeyvalIf you also want to provide a condition for the sort key, it must be combined using
ANDwith the condition for the sort key. Following is an example, using the = comparison operator for the sort key:
partitionKeyName=:partitionkeyvalANDsortKeyName=:sortkeyvalValid comparisons for the sort key condition are as follows:
sortKeyName=:sortkeyval- true if the sort key value is equal to:sortkeyval.
sortKeyName<:sortkeyval- true if the sort key value is less than:sortkeyval.
sortKeyName<=:sortkeyval- true if the sort key value is less than or equal to:sortkeyval.
sortKeyName>:sortkeyval- true if the sort key value is greater than:sortkeyval.
sortKeyName>=:sortkeyval- true if the sort key value is greater than or equal to:sortkeyval.
sortKeyNameBETWEEN:sortkeyval1AND:sortkeyval2- true if the sort key value is greater than or equal to:sortkeyval1, and less than or equal to:sortkeyval2.
begins_with (sortKeyName,:sortkeyval)- true if the sort key value begins with a particular operand. (You cannot use this function with a sort key that is of type Number.) Note that the function namebegins_withis case-sensitive.Use the
ExpressionAttributeValuesparameter to replace tokens such as:partitionvaland:sortvalwith actual values at runtime.You can optionally use the
ExpressionAttributeNamesparameter to replace the names of the partition key and sort key with placeholder tokens. This option might be necessary if an attribute name conflicts with a DynamoDB reserved word. For example, the followingKeyConditionExpressionparameter causes an error because Size is a reserved word:
Size = :myvalTo work around this, define a placeholder (such a
#S) to represent the attribute name Size.KeyConditionExpressionthen is as follows:
#S = :myvalFor a list of reserved words, see Reserved Words in the Amazon DynamoDB Developer Guide.
For more information on
ExpressionAttributeNamesandExpressionAttributeValues, see Using Placeholders for Attribute Names and Values in the Amazon DynamoDB Developer Guide.
it_expressionattributenames TYPE /AWS1/CL_DYNXPRSNATTRNAMEMAP_W=>TT_EXPRESSIONATTRIBUTENAMEMAP TT_EXPRESSIONATTRIBUTENAMEMAP¶
One or more substitution tokens for attribute names in an expression. The following are some use cases for using
ExpressionAttributeNames:
To access an attribute whose name conflicts with a DynamoDB reserved word.
To create a placeholder for repeating occurrences of an attribute name in an expression.
To prevent special characters in an attribute name from being misinterpreted in an expression.
Use the # character in an expression to dereference an attribute name. For example, consider the following attribute name:
PercentileThe name of this attribute conflicts with a reserved word, so it cannot be used directly in an expression. (For the complete list of reserved words, see Reserved Words in the Amazon DynamoDB Developer Guide). To work around this, you could specify the following for
ExpressionAttributeNames:
{"#P":"Percentile"}You could then use this substitution in an expression, as in this example:
#P = :valTokens that begin with the : character are expression attribute values, which are placeholders for the actual value at runtime.
For more information on expression attribute names, see Specifying Item Attributes in the Amazon DynamoDB Developer Guide.
it_expressionattributevalues TYPE /AWS1/CL_DYNATTRIBUTEVALUE=>TT_EXPRESSIONATTRIBUTEVALUEMAP TT_EXPRESSIONATTRIBUTEVALUEMAP¶
One or more values that can be substituted in an expression.
Use the : (colon) character in an expression to dereference an attribute value. For example, suppose that you wanted to check whether the value of the ProductStatus attribute was one of the following:
Available | Backordered | DiscontinuedYou would first need to specify
ExpressionAttributeValuesas follows:
{ ":avail":{"S":"Available"}, ":back":{"S":"Backordered"}, ":disc":{"S":"Discontinued"} }You could then use these values in an expression, such as this:
ProductStatus IN (:avail, :back, :disc)For more information on expression attribute values, see Specifying Conditions in the Amazon DynamoDB Developer Guide.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_dynqueryoutput /AWS1/CL_DYNQUERYOUTPUT¶
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->query(
  it_attributestoget = VALUE /aws1/cl_dynattrnamelist_w=>tt_attributenamelist(
    ( new /aws1/cl_dynattrnamelist_w( |string| ) )
  )
  it_exclusivestartkey = VALUE /aws1/cl_dynattributevalue=>tt_key(
    (
      VALUE /aws1/cl_dynattributevalue=>ts_key_maprow(
        key = |string|
        value = new /aws1/cl_dynattributevalue(
          it_bs = VALUE /aws1/cl_dynbinarysetattrval_w=>tt_binarysetattributevalue(
            ( new /aws1/cl_dynbinarysetattrval_w( '5347567362473873563239796247513D' ) )
          )
          it_l = VALUE /aws1/cl_dynattributevalue=>tt_listattributevalue(
            (
              new /aws1/cl_dynattributevalue(
                it_bs = VALUE /aws1/cl_dynbinarysetattrval_w=>tt_binarysetattributevalue(
                  ( new /aws1/cl_dynbinarysetattrval_w( '5347567362473873563239796247513D' ) )
                )
                it_m = VALUE /aws1/cl_dynattributevalue=>tt_mapattributevalue(
                  (
                    VALUE /aws1/cl_dynattributevalue=>ts_mapattributevalue_maprow(
                      key = |string|
                      value = new /aws1/cl_dynattributevalue(
                        it_bs = VALUE /aws1/cl_dynbinarysetattrval_w=>tt_binarysetattributevalue(
                          ( new /aws1/cl_dynbinarysetattrval_w( '5347567362473873563239796247513D' ) )
                        )
                        it_ns = VALUE /aws1/cl_dynnumsetattrvalue_w=>tt_numbersetattributevalue(
                          ( new /aws1/cl_dynnumsetattrvalue_w( |string| ) )
                        )
                        it_ss = VALUE /aws1/cl_dynstrsetattrvalue_w=>tt_stringsetattributevalue(
                          ( new /aws1/cl_dynstrsetattrvalue_w( |string| ) )
                        )
                        iv_b = '5347567362473873563239796247513D'
                        iv_bool = ABAP_TRUE
                        iv_n = |string|
                        iv_null = ABAP_TRUE
                        iv_s = |string|
                      )
                    )
                  )
                )
                it_ns = VALUE /aws1/cl_dynnumsetattrvalue_w=>tt_numbersetattributevalue(
                  ( new /aws1/cl_dynnumsetattrvalue_w( |string| ) )
                )
                it_ss = VALUE /aws1/cl_dynstrsetattrvalue_w=>tt_stringsetattributevalue(
                  ( new /aws1/cl_dynstrsetattrvalue_w( |string| ) )
                )
                iv_b = '5347567362473873563239796247513D'
                iv_bool = ABAP_TRUE
                iv_n = |string|
                iv_null = ABAP_TRUE
                iv_s = |string|
              )
            )
          )
          it_m = VALUE /aws1/cl_dynattributevalue=>tt_mapattributevalue(
            (
              VALUE /aws1/cl_dynattributevalue=>ts_mapattributevalue_maprow(
                key = |string|
                value = new /aws1/cl_dynattributevalue(
                  it_bs = VALUE /aws1/cl_dynbinarysetattrval_w=>tt_binarysetattributevalue(
                    ( new /aws1/cl_dynbinarysetattrval_w( '5347567362473873563239796247513D' ) )
                  )
                  it_l = VALUE /aws1/cl_dynattributevalue=>tt_listattributevalue(
                    (
                      new /aws1/cl_dynattributevalue(
                        it_bs = VALUE /aws1/cl_dynbinarysetattrval_w=>tt_binarysetattributevalue(
                          ( new /aws1/cl_dynbinarysetattrval_w( '5347567362473873563239796247513D' ) )
                        )
                        it_ns = VALUE /aws1/cl_dynnumsetattrvalue_w=>tt_numbersetattributevalue(
                          ( new /aws1/cl_dynnumsetattrvalue_w( |string| ) )
                        )
                        it_ss = VALUE /aws1/cl_dynstrsetattrvalue_w=>tt_stringsetattributevalue(
                          ( new /aws1/cl_dynstrsetattrvalue_w( |string| ) )
                        )
                        iv_b = '5347567362473873563239796247513D'
                        iv_bool = ABAP_TRUE
                        iv_n = |string|
                        iv_null = ABAP_TRUE
                        iv_s = |string|
                      )
                    )
                  )
                  it_ns = VALUE /aws1/cl_dynnumsetattrvalue_w=>tt_numbersetattributevalue(
                    ( new /aws1/cl_dynnumsetattrvalue_w( |string| ) )
                  )
                  it_ss = VALUE /aws1/cl_dynstrsetattrvalue_w=>tt_stringsetattributevalue(
                    ( new /aws1/cl_dynstrsetattrvalue_w( |string| ) )
                  )
                  iv_b = '5347567362473873563239796247513D'
                  iv_bool = ABAP_TRUE
                  iv_n = |string|
                  iv_null = ABAP_TRUE
                  iv_s = |string|
                )
              )
            )
          )
          it_ns = VALUE /aws1/cl_dynnumsetattrvalue_w=>tt_numbersetattributevalue(
            ( new /aws1/cl_dynnumsetattrvalue_w( |string| ) )
          )
          it_ss = VALUE /aws1/cl_dynstrsetattrvalue_w=>tt_stringsetattributevalue(
            ( new /aws1/cl_dynstrsetattrvalue_w( |string| ) )
          )
          iv_b = '5347567362473873563239796247513D'
          iv_bool = ABAP_TRUE
          iv_n = |string|
          iv_null = ABAP_TRUE
          iv_s = |string|
        )
      )
    )
  )
  it_expressionattributenames = VALUE /aws1/cl_dynxprsnattrnamemap_w=>tt_expressionattributenamemap(
    (
      VALUE /aws1/cl_dynxprsnattrnamemap_w=>ts_xprsnattrnamemap_maprow(
        key = |string|
        value = new /aws1/cl_dynxprsnattrnamemap_w( |string| )
      )
    )
  )
  it_expressionattributevalues = VALUE /aws1/cl_dynattributevalue=>tt_expressionattributevaluemap(
    (
      VALUE /aws1/cl_dynattributevalue=>ts_xprsnattrvaluemap_maprow(
        value = new /aws1/cl_dynattributevalue(
          it_bs = VALUE /aws1/cl_dynbinarysetattrval_w=>tt_binarysetattributevalue(
            ( new /aws1/cl_dynbinarysetattrval_w( '5347567362473873563239796247513D' ) )
          )
          it_l = VALUE /aws1/cl_dynattributevalue=>tt_listattributevalue(
            (
              new /aws1/cl_dynattributevalue(
                it_bs = VALUE /aws1/cl_dynbinarysetattrval_w=>tt_binarysetattributevalue(
                  ( new /aws1/cl_dynbinarysetattrval_w( '5347567362473873563239796247513D' ) )
                )
                it_m = VALUE /aws1/cl_dynattributevalue=>tt_mapattributevalue(
                  (
                    VALUE /aws1/cl_dynattributevalue=>ts_mapattributevalue_maprow(
                      key = |string|
                      value = new /aws1/cl_dynattributevalue(
                        it_bs = VALUE /aws1/cl_dynbinarysetattrval_w=>tt_binarysetattributevalue(
                          ( new /aws1/cl_dynbinarysetattrval_w( '5347567362473873563239796247513D' ) )
                        )
                        it_ns = VALUE /aws1/cl_dynnumsetattrvalue_w=>tt_numbersetattributevalue(
                          ( new /aws1/cl_dynnumsetattrvalue_w( |string| ) )
                        )
                        it_ss = VALUE /aws1/cl_dynstrsetattrvalue_w=>tt_stringsetattributevalue(
                          ( new /aws1/cl_dynstrsetattrvalue_w( |string| ) )
                        )
                        iv_b = '5347567362473873563239796247513D'
                        iv_bool = ABAP_TRUE
                        iv_n = |string|
                        iv_null = ABAP_TRUE
                        iv_s = |string|
                      )
                    )
                  )
                )
                it_ns = VALUE /aws1/cl_dynnumsetattrvalue_w=>tt_numbersetattributevalue(
                  ( new /aws1/cl_dynnumsetattrvalue_w( |string| ) )
                )
                it_ss = VALUE /aws1/cl_dynstrsetattrvalue_w=>tt_stringsetattributevalue(
                  ( new /aws1/cl_dynstrsetattrvalue_w( |string| ) )
                )
                iv_b = '5347567362473873563239796247513D'
                iv_bool = ABAP_TRUE
                iv_n = |string|
                iv_null = ABAP_TRUE
                iv_s = |string|
              )
            )
          )
          it_m = VALUE /aws1/cl_dynattributevalue=>tt_mapattributevalue(
            (
              VALUE /aws1/cl_dynattributevalue=>ts_mapattributevalue_maprow(
                key = |string|
                value = new /aws1/cl_dynattributevalue(
                  it_bs = VALUE /aws1/cl_dynbinarysetattrval_w=>tt_binarysetattributevalue(
                    ( new /aws1/cl_dynbinarysetattrval_w( '5347567362473873563239796247513D' ) )
                  )
                  it_l = VALUE /aws1/cl_dynattributevalue=>tt_listattributevalue(
                    (
                      new /aws1/cl_dynattributevalue(
                        it_bs = VALUE /aws1/cl_dynbinarysetattrval_w=>tt_binarysetattributevalue(
                          ( new /aws1/cl_dynbinarysetattrval_w( '5347567362473873563239796247513D' ) )
                        )
                        it_ns = VALUE /aws1/cl_dynnumsetattrvalue_w=>tt_numbersetattributevalue(
                          ( new /aws1/cl_dynnumsetattrvalue_w( |string| ) )
                        )
                        it_ss = VALUE /aws1/cl_dynstrsetattrvalue_w=>tt_stringsetattributevalue(
                          ( new /aws1/cl_dynstrsetattrvalue_w( |string| ) )
                        )
                        iv_b = '5347567362473873563239796247513D'
                        iv_bool = ABAP_TRUE
                        iv_n = |string|
                        iv_null = ABAP_TRUE
                        iv_s = |string|
                      )
                    )
                  )
                  it_ns = VALUE /aws1/cl_dynnumsetattrvalue_w=>tt_numbersetattributevalue(
                    ( new /aws1/cl_dynnumsetattrvalue_w( |string| ) )
                  )
                  it_ss = VALUE /aws1/cl_dynstrsetattrvalue_w=>tt_stringsetattributevalue(
                    ( new /aws1/cl_dynstrsetattrvalue_w( |string| ) )
                  )
                  iv_b = '5347567362473873563239796247513D'
                  iv_bool = ABAP_TRUE
                  iv_n = |string|
                  iv_null = ABAP_TRUE
                  iv_s = |string|
                )
              )
            )
          )
          it_ns = VALUE /aws1/cl_dynnumsetattrvalue_w=>tt_numbersetattributevalue(
            ( new /aws1/cl_dynnumsetattrvalue_w( |string| ) )
          )
          it_ss = VALUE /aws1/cl_dynstrsetattrvalue_w=>tt_stringsetattributevalue(
            ( new /aws1/cl_dynstrsetattrvalue_w( |string| ) )
          )
          iv_b = '5347567362473873563239796247513D'
          iv_bool = ABAP_TRUE
          iv_n = |string|
          iv_null = ABAP_TRUE
          iv_s = |string|
        )
        key = |string|
      )
    )
  )
  it_keyconditions = VALUE /aws1/cl_dyncondition=>tt_keyconditions(
    (
      VALUE /aws1/cl_dyncondition=>ts_keyconditions_maprow(
        value = new /aws1/cl_dyncondition(
          it_attributevaluelist = VALUE /aws1/cl_dynattributevalue=>tt_attributevaluelist(
            (
              new /aws1/cl_dynattributevalue(
                it_bs = VALUE /aws1/cl_dynbinarysetattrval_w=>tt_binarysetattributevalue(
                  ( new /aws1/cl_dynbinarysetattrval_w( '5347567362473873563239796247513D' ) )
                )
                it_l = VALUE /aws1/cl_dynattributevalue=>tt_listattributevalue(
                  (
                    new /aws1/cl_dynattributevalue(
                      it_bs = VALUE /aws1/cl_dynbinarysetattrval_w=>tt_binarysetattributevalue(
                        ( new /aws1/cl_dynbinarysetattrval_w( '5347567362473873563239796247513D' ) )
                      )
                      it_m = VALUE /aws1/cl_dynattributevalue=>tt_mapattributevalue(
                        (
                          VALUE /aws1/cl_dynattributevalue=>ts_mapattributevalue_maprow(
                            key = |string|
                            value = new /aws1/cl_dynattributevalue(
                              it_bs = VALUE /aws1/cl_dynbinarysetattrval_w=>tt_binarysetattributevalue(
                                ( new /aws1/cl_dynbinarysetattrval_w( '5347567362473873563239796247513D' ) )
                              )
                              it_ns = VALUE /aws1/cl_dynnumsetattrvalue_w=>tt_numbersetattributevalue(
                                ( new /aws1/cl_dynnumsetattrvalue_w( |string| ) )
                              )
                              it_ss = VALUE /aws1/cl_dynstrsetattrvalue_w=>tt_stringsetattributevalue(
                                ( new /aws1/cl_dynstrsetattrvalue_w( |string| ) )
                              )
                              iv_b = '5347567362473873563239796247513D'
                              iv_bool = ABAP_TRUE
                              iv_n = |string|
                              iv_null = ABAP_TRUE
                              iv_s = |string|
                            )
                          )
                        )
                      )
                      it_ns = VALUE /aws1/cl_dynnumsetattrvalue_w=>tt_numbersetattributevalue(
                        ( new /aws1/cl_dynnumsetattrvalue_w( |string| ) )
                      )
                      it_ss = VALUE /aws1/cl_dynstrsetattrvalue_w=>tt_stringsetattributevalue(
                        ( new /aws1/cl_dynstrsetattrvalue_w( |string| ) )
                      )
                      iv_b = '5347567362473873563239796247513D'
                      iv_bool = ABAP_TRUE
                      iv_n = |string|
                      iv_null = ABAP_TRUE
                      iv_s = |string|
                    )
                  )
                )
                it_m = VALUE /aws1/cl_dynattributevalue=>tt_mapattributevalue(
                  (
                    VALUE /aws1/cl_dynattributevalue=>ts_mapattributevalue_maprow(
                      key = |string|
                      value = new /aws1/cl_dynattributevalue(
                        it_bs = VALUE /aws1/cl_dynbinarysetattrval_w=>tt_binarysetattributevalue(
                          ( new /aws1/cl_dynbinarysetattrval_w( '5347567362473873563239796247513D' ) )
                        )
                        it_l = VALUE /aws1/cl_dynattributevalue=>tt_listattributevalue(
                          (
                            new /aws1/cl_dynattributevalue(
                              it_bs = VALUE /aws1/cl_dynbinarysetattrval_w=>tt_binarysetattributevalue(
                                ( new /aws1/cl_dynbinarysetattrval_w( '5347567362473873563239796247513D' ) )
                              )
                              it_ns = VALUE /aws1/cl_dynnumsetattrvalue_w=>tt_numbersetattributevalue(
                                ( new /aws1/cl_dynnumsetattrvalue_w( |string| ) )
                              )
                              it_ss = VALUE /aws1/cl_dynstrsetattrvalue_w=>tt_stringsetattributevalue(
                                ( new /aws1/cl_dynstrsetattrvalue_w( |string| ) )
                              )
                              iv_b = '5347567362473873563239796247513D'
                              iv_bool = ABAP_TRUE
                              iv_n = |string|
                              iv_null = ABAP_TRUE
                              iv_s = |string|
                            )
                          )
                        )
                        it_ns = VALUE /aws1/cl_dynnumsetattrvalue_w=>tt_numbersetattributevalue(
                          ( new /aws1/cl_dynnumsetattrvalue_w( |string| ) )
                        )
                        it_ss = VALUE /aws1/cl_dynstrsetattrvalue_w=>tt_stringsetattributevalue(
                          ( new /aws1/cl_dynstrsetattrvalue_w( |string| ) )
                        )
                        iv_b = '5347567362473873563239796247513D'
                        iv_bool = ABAP_TRUE
                        iv_n = |string|
                        iv_null = ABAP_TRUE
                        iv_s = |string|
                      )
                    )
                  )
                )
                it_ns = VALUE /aws1/cl_dynnumsetattrvalue_w=>tt_numbersetattributevalue(
                  ( new /aws1/cl_dynnumsetattrvalue_w( |string| ) )
                )
                it_ss = VALUE /aws1/cl_dynstrsetattrvalue_w=>tt_stringsetattributevalue(
                  ( new /aws1/cl_dynstrsetattrvalue_w( |string| ) )
                )
                iv_b = '5347567362473873563239796247513D'
                iv_bool = ABAP_TRUE
                iv_n = |string|
                iv_null = ABAP_TRUE
                iv_s = |string|
              )
            )
          )
          iv_comparisonoperator = |string|
        )
        key = |string|
      )
    )
  )
  it_queryfilter = VALUE /aws1/cl_dyncondition=>tt_filterconditionmap(
    (
      VALUE /aws1/cl_dyncondition=>ts_filterconditionmap_maprow(
        key = |string|
        value = new /aws1/cl_dyncondition(
          it_attributevaluelist = VALUE /aws1/cl_dynattributevalue=>tt_attributevaluelist(
            (
              new /aws1/cl_dynattributevalue(
                it_bs = VALUE /aws1/cl_dynbinarysetattrval_w=>tt_binarysetattributevalue(
                  ( new /aws1/cl_dynbinarysetattrval_w( '5347567362473873563239796247513D' ) )
                )
                it_l = VALUE /aws1/cl_dynattributevalue=>tt_listattributevalue(
                  (
                    new /aws1/cl_dynattributevalue(
                      it_bs = VALUE /aws1/cl_dynbinarysetattrval_w=>tt_binarysetattributevalue(
                        ( new /aws1/cl_dynbinarysetattrval_w( '5347567362473873563239796247513D' ) )
                      )
                      it_m = VALUE /aws1/cl_dynattributevalue=>tt_mapattributevalue(
                        (
                          VALUE /aws1/cl_dynattributevalue=>ts_mapattributevalue_maprow(
                            key = |string|
                            value = new /aws1/cl_dynattributevalue(
                              it_bs = VALUE /aws1/cl_dynbinarysetattrval_w=>tt_binarysetattributevalue(
                                ( new /aws1/cl_dynbinarysetattrval_w( '5347567362473873563239796247513D' ) )
                              )
                              it_ns = VALUE /aws1/cl_dynnumsetattrvalue_w=>tt_numbersetattributevalue(
                                ( new /aws1/cl_dynnumsetattrvalue_w( |string| ) )
                              )
                              it_ss = VALUE /aws1/cl_dynstrsetattrvalue_w=>tt_stringsetattributevalue(
                                ( new /aws1/cl_dynstrsetattrvalue_w( |string| ) )
                              )
                              iv_b = '5347567362473873563239796247513D'
                              iv_bool = ABAP_TRUE
                              iv_n = |string|
                              iv_null = ABAP_TRUE
                              iv_s = |string|
                            )
                          )
                        )
                      )
                      it_ns = VALUE /aws1/cl_dynnumsetattrvalue_w=>tt_numbersetattributevalue(
                        ( new /aws1/cl_dynnumsetattrvalue_w( |string| ) )
                      )
                      it_ss = VALUE /aws1/cl_dynstrsetattrvalue_w=>tt_stringsetattributevalue(
                        ( new /aws1/cl_dynstrsetattrvalue_w( |string| ) )
                      )
                      iv_b = '5347567362473873563239796247513D'
                      iv_bool = ABAP_TRUE
                      iv_n = |string|
                      iv_null = ABAP_TRUE
                      iv_s = |string|
                    )
                  )
                )
                it_m = VALUE /aws1/cl_dynattributevalue=>tt_mapattributevalue(
                  (
                    VALUE /aws1/cl_dynattributevalue=>ts_mapattributevalue_maprow(
                      key = |string|
                      value = new /aws1/cl_dynattributevalue(
                        it_bs = VALUE /aws1/cl_dynbinarysetattrval_w=>tt_binarysetattributevalue(
                          ( new /aws1/cl_dynbinarysetattrval_w( '5347567362473873563239796247513D' ) )
                        )
                        it_l = VALUE /aws1/cl_dynattributevalue=>tt_listattributevalue(
                          (
                            new /aws1/cl_dynattributevalue(
                              it_bs = VALUE /aws1/cl_dynbinarysetattrval_w=>tt_binarysetattributevalue(
                                ( new /aws1/cl_dynbinarysetattrval_w( '5347567362473873563239796247513D' ) )
                              )
                              it_ns = VALUE /aws1/cl_dynnumsetattrvalue_w=>tt_numbersetattributevalue(
                                ( new /aws1/cl_dynnumsetattrvalue_w( |string| ) )
                              )
                              it_ss = VALUE /aws1/cl_dynstrsetattrvalue_w=>tt_stringsetattributevalue(
                                ( new /aws1/cl_dynstrsetattrvalue_w( |string| ) )
                              )
                              iv_b = '5347567362473873563239796247513D'
                              iv_bool = ABAP_TRUE
                              iv_n = |string|
                              iv_null = ABAP_TRUE
                              iv_s = |string|
                            )
                          )
                        )
                        it_ns = VALUE /aws1/cl_dynnumsetattrvalue_w=>tt_numbersetattributevalue(
                          ( new /aws1/cl_dynnumsetattrvalue_w( |string| ) )
                        )
                        it_ss = VALUE /aws1/cl_dynstrsetattrvalue_w=>tt_stringsetattributevalue(
                          ( new /aws1/cl_dynstrsetattrvalue_w( |string| ) )
                        )
                        iv_b = '5347567362473873563239796247513D'
                        iv_bool = ABAP_TRUE
                        iv_n = |string|
                        iv_null = ABAP_TRUE
                        iv_s = |string|
                      )
                    )
                  )
                )
                it_ns = VALUE /aws1/cl_dynnumsetattrvalue_w=>tt_numbersetattributevalue(
                  ( new /aws1/cl_dynnumsetattrvalue_w( |string| ) )
                )
                it_ss = VALUE /aws1/cl_dynstrsetattrvalue_w=>tt_stringsetattributevalue(
                  ( new /aws1/cl_dynstrsetattrvalue_w( |string| ) )
                )
                iv_b = '5347567362473873563239796247513D'
                iv_bool = ABAP_TRUE
                iv_n = |string|
                iv_null = ABAP_TRUE
                iv_s = |string|
              )
            )
          )
          iv_comparisonoperator = |string|
        )
      )
    )
  )
  iv_conditionaloperator = |string|
  iv_consistentread = ABAP_TRUE
  iv_filterexpression = |string|
  iv_indexname = |string|
  iv_keyconditionexpression = |string|
  iv_limit = 123
  iv_projectionexpression = |string|
  iv_returnconsumedcapacity = |string|
  iv_scanindexforward = ABAP_TRUE
  iv_select = |string|
  iv_tablename = |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_items( ) into lt_row.
    LOOP AT lt_row into ls_row_1.
      lv_key = ls_row_1-key.
      lo_value = ls_row_1-value.
      IF lo_value IS NOT INITIAL.
        lv_stringattributevalue = lo_value->get_s( ).
        lv_numberattributevalue = lo_value->get_n( ).
        lv_binaryattributevalue = lo_value->get_b( ).
        LOOP AT lo_value->get_ss( ) into lo_row_2.
          lo_row_3 = lo_row_2.
          IF lo_row_3 IS NOT INITIAL.
            lv_stringattributevalue = lo_row_3->get_value( ).
          ENDIF.
        ENDLOOP.
        LOOP AT lo_value->get_ns( ) into lo_row_4.
          lo_row_5 = lo_row_4.
          IF lo_row_5 IS NOT INITIAL.
            lv_numberattributevalue = lo_row_5->get_value( ).
          ENDIF.
        ENDLOOP.
        LOOP AT lo_value->get_bs( ) into lo_row_6.
          lo_row_7 = lo_row_6.
          IF lo_row_7 IS NOT INITIAL.
            lv_binaryattributevalue = lo_row_7->get_value( ).
          ENDIF.
        ENDLOOP.
        LOOP AT lo_value->get_m( ) into ls_row_8.
          lv_key = ls_row_8-key.
          lo_value_1 = ls_row_8-value.
          IF lo_value_1 IS NOT INITIAL.
            lv_stringattributevalue = lo_value_1->get_s( ).
            lv_numberattributevalue = lo_value_1->get_n( ).
            lv_binaryattributevalue = lo_value_1->get_b( ).
            LOOP AT lo_value_1->get_ss( ) into lo_row_2.
              lo_row_3 = lo_row_2.
              IF lo_row_3 IS NOT INITIAL.
                lv_stringattributevalue = lo_row_3->get_value( ).
              ENDIF.
            ENDLOOP.
            LOOP AT lo_value_1->get_ns( ) into lo_row_4.
              lo_row_5 = lo_row_4.
              IF lo_row_5 IS NOT INITIAL.
                lv_numberattributevalue = lo_row_5->get_value( ).
              ENDIF.
            ENDLOOP.
            LOOP AT lo_value_1->get_bs( ) into lo_row_6.
              lo_row_7 = lo_row_6.
              IF lo_row_7 IS NOT INITIAL.
                lv_binaryattributevalue = lo_row_7->get_value( ).
              ENDIF.
            ENDLOOP.
            " Skipping ls_row_8-value to avoid recursion
            LOOP AT lo_value_1->get_l( ) into lo_row_9.
              lo_row_10 = lo_row_9.
              IF lo_row_10 IS NOT INITIAL.
                lv_stringattributevalue = lo_row_10->get_s( ).
                lv_numberattributevalue = lo_row_10->get_n( ).
                lv_binaryattributevalue = lo_row_10->get_b( ).
                LOOP AT lo_row_10->get_ss( ) into lo_row_2.
                  lo_row_3 = lo_row_2.
                  IF lo_row_3 IS NOT INITIAL.
                    lv_stringattributevalue = lo_row_3->get_value( ).
                  ENDIF.
                ENDLOOP.
                LOOP AT lo_row_10->get_ns( ) into lo_row_4.
                  lo_row_5 = lo_row_4.
                  IF lo_row_5 IS NOT INITIAL.
                    lv_numberattributevalue = lo_row_5->get_value( ).
                  ENDIF.
                ENDLOOP.
                LOOP AT lo_row_10->get_bs( ) into lo_row_6.
                  lo_row_7 = lo_row_6.
                  IF lo_row_7 IS NOT INITIAL.
                    lv_binaryattributevalue = lo_row_7->get_value( ).
                  ENDIF.
                ENDLOOP.
                " Skipping lo_row_9 to avoid recursion
                " Skipping lo_row_9 to avoid recursion
                lv_nullattributevalue = lo_row_10->get_null( ).
                lv_booleanattributevalue = lo_row_10->get_bool( ).
              ENDIF.
            ENDLOOP.
            lv_nullattributevalue = lo_value_1->get_null( ).
            lv_booleanattributevalue = lo_value_1->get_bool( ).
          ENDIF.
        ENDLOOP.
        LOOP AT lo_value->get_l( ) into lo_row_9.
          lo_row_10 = lo_row_9.
          IF lo_row_10 IS NOT INITIAL.
            lv_stringattributevalue = lo_row_10->get_s( ).
            lv_numberattributevalue = lo_row_10->get_n( ).
            lv_binaryattributevalue = lo_row_10->get_b( ).
            LOOP AT lo_row_10->get_ss( ) into lo_row_2.
              lo_row_3 = lo_row_2.
              IF lo_row_3 IS NOT INITIAL.
                lv_stringattributevalue = lo_row_3->get_value( ).
              ENDIF.
            ENDLOOP.
            LOOP AT lo_row_10->get_ns( ) into lo_row_4.
              lo_row_5 = lo_row_4.
              IF lo_row_5 IS NOT INITIAL.
                lv_numberattributevalue = lo_row_5->get_value( ).
              ENDIF.
            ENDLOOP.
            LOOP AT lo_row_10->get_bs( ) into lo_row_6.
              lo_row_7 = lo_row_6.
              IF lo_row_7 IS NOT INITIAL.
                lv_binaryattributevalue = lo_row_7->get_value( ).
              ENDIF.
            ENDLOOP.
            LOOP AT lo_row_10->get_m( ) into ls_row_8.
              lv_key = ls_row_8-key.
              lo_value_1 = ls_row_8-value.
              IF lo_value_1 IS NOT INITIAL.
                lv_stringattributevalue = lo_value_1->get_s( ).
                lv_numberattributevalue = lo_value_1->get_n( ).
                lv_binaryattributevalue = lo_value_1->get_b( ).
                LOOP AT lo_value_1->get_ss( ) into lo_row_2.
                  lo_row_3 = lo_row_2.
                  IF lo_row_3 IS NOT INITIAL.
                    lv_stringattributevalue = lo_row_3->get_value( ).
                  ENDIF.
                ENDLOOP.
                LOOP AT lo_value_1->get_ns( ) into lo_row_4.
                  lo_row_5 = lo_row_4.
                  IF lo_row_5 IS NOT INITIAL.
                    lv_numberattributevalue = lo_row_5->get_value( ).
                  ENDIF.
                ENDLOOP.
                LOOP AT lo_value_1->get_bs( ) into lo_row_6.
                  lo_row_7 = lo_row_6.
                  IF lo_row_7 IS NOT INITIAL.
                    lv_binaryattributevalue = lo_row_7->get_value( ).
                  ENDIF.
                ENDLOOP.
                " Skipping ls_row_8-value to avoid recursion
                " Skipping ls_row_8-value to avoid recursion
                lv_nullattributevalue = lo_value_1->get_null( ).
                lv_booleanattributevalue = lo_value_1->get_bool( ).
              ENDIF.
            ENDLOOP.
            " Skipping lo_row_9 to avoid recursion
            lv_nullattributevalue = lo_row_10->get_null( ).
            lv_booleanattributevalue = lo_row_10->get_bool( ).
          ENDIF.
        ENDLOOP.
        lv_nullattributevalue = lo_value->get_null( ).
        lv_booleanattributevalue = lo_value->get_bool( ).
      ENDIF.
    ENDLOOP.
  ENDLOOP.
  lv_integer = lo_result->get_count( ).
  lv_integer = lo_result->get_scannedcount( ).
  LOOP AT lo_result->get_lastevaluatedkey( ) into ls_row_11.
    lv_key = ls_row_11-key.
    lo_value = ls_row_11-value.
    IF lo_value IS NOT INITIAL.
      lv_stringattributevalue = lo_value->get_s( ).
      lv_numberattributevalue = lo_value->get_n( ).
      lv_binaryattributevalue = lo_value->get_b( ).
      LOOP AT lo_value->get_ss( ) into lo_row_2.
        lo_row_3 = lo_row_2.
        IF lo_row_3 IS NOT INITIAL.
          lv_stringattributevalue = lo_row_3->get_value( ).
        ENDIF.
      ENDLOOP.
      LOOP AT lo_value->get_ns( ) into lo_row_4.
        lo_row_5 = lo_row_4.
        IF lo_row_5 IS NOT INITIAL.
          lv_numberattributevalue = lo_row_5->get_value( ).
        ENDIF.
      ENDLOOP.
      LOOP AT lo_value->get_bs( ) into lo_row_6.
        lo_row_7 = lo_row_6.
        IF lo_row_7 IS NOT INITIAL.
          lv_binaryattributevalue = lo_row_7->get_value( ).
        ENDIF.
      ENDLOOP.
      LOOP AT lo_value->get_m( ) into ls_row_8.
        lv_key = ls_row_8-key.
        lo_value_1 = ls_row_8-value.
        IF lo_value_1 IS NOT INITIAL.
          lv_stringattributevalue = lo_value_1->get_s( ).
          lv_numberattributevalue = lo_value_1->get_n( ).
          lv_binaryattributevalue = lo_value_1->get_b( ).
          LOOP AT lo_value_1->get_ss( ) into lo_row_2.
            lo_row_3 = lo_row_2.
            IF lo_row_3 IS NOT INITIAL.
              lv_stringattributevalue = lo_row_3->get_value( ).
            ENDIF.
          ENDLOOP.
          LOOP AT lo_value_1->get_ns( ) into lo_row_4.
            lo_row_5 = lo_row_4.
            IF lo_row_5 IS NOT INITIAL.
              lv_numberattributevalue = lo_row_5->get_value( ).
            ENDIF.
          ENDLOOP.
          LOOP AT lo_value_1->get_bs( ) into lo_row_6.
            lo_row_7 = lo_row_6.
            IF lo_row_7 IS NOT INITIAL.
              lv_binaryattributevalue = lo_row_7->get_value( ).
            ENDIF.
          ENDLOOP.
          " Skipping ls_row_8-value to avoid recursion
          LOOP AT lo_value_1->get_l( ) into lo_row_9.
            lo_row_10 = lo_row_9.
            IF lo_row_10 IS NOT INITIAL.
              lv_stringattributevalue = lo_row_10->get_s( ).
              lv_numberattributevalue = lo_row_10->get_n( ).
              lv_binaryattributevalue = lo_row_10->get_b( ).
              LOOP AT lo_row_10->get_ss( ) into lo_row_2.
                lo_row_3 = lo_row_2.
                IF lo_row_3 IS NOT INITIAL.
                  lv_stringattributevalue = lo_row_3->get_value( ).
                ENDIF.
              ENDLOOP.
              LOOP AT lo_row_10->get_ns( ) into lo_row_4.
                lo_row_5 = lo_row_4.
                IF lo_row_5 IS NOT INITIAL.
                  lv_numberattributevalue = lo_row_5->get_value( ).
                ENDIF.
              ENDLOOP.
              LOOP AT lo_row_10->get_bs( ) into lo_row_6.
                lo_row_7 = lo_row_6.
                IF lo_row_7 IS NOT INITIAL.
                  lv_binaryattributevalue = lo_row_7->get_value( ).
                ENDIF.
              ENDLOOP.
              " Skipping lo_row_9 to avoid recursion
              " Skipping lo_row_9 to avoid recursion
              lv_nullattributevalue = lo_row_10->get_null( ).
              lv_booleanattributevalue = lo_row_10->get_bool( ).
            ENDIF.
          ENDLOOP.
          lv_nullattributevalue = lo_value_1->get_null( ).
          lv_booleanattributevalue = lo_value_1->get_bool( ).
        ENDIF.
      ENDLOOP.
      LOOP AT lo_value->get_l( ) into lo_row_9.
        lo_row_10 = lo_row_9.
        IF lo_row_10 IS NOT INITIAL.
          lv_stringattributevalue = lo_row_10->get_s( ).
          lv_numberattributevalue = lo_row_10->get_n( ).
          lv_binaryattributevalue = lo_row_10->get_b( ).
          LOOP AT lo_row_10->get_ss( ) into lo_row_2.
            lo_row_3 = lo_row_2.
            IF lo_row_3 IS NOT INITIAL.
              lv_stringattributevalue = lo_row_3->get_value( ).
            ENDIF.
          ENDLOOP.
          LOOP AT lo_row_10->get_ns( ) into lo_row_4.
            lo_row_5 = lo_row_4.
            IF lo_row_5 IS NOT INITIAL.
              lv_numberattributevalue = lo_row_5->get_value( ).
            ENDIF.
          ENDLOOP.
          LOOP AT lo_row_10->get_bs( ) into lo_row_6.
            lo_row_7 = lo_row_6.
            IF lo_row_7 IS NOT INITIAL.
              lv_binaryattributevalue = lo_row_7->get_value( ).
            ENDIF.
          ENDLOOP.
          LOOP AT lo_row_10->get_m( ) into ls_row_8.
            lv_key = ls_row_8-key.
            lo_value_1 = ls_row_8-value.
            IF lo_value_1 IS NOT INITIAL.
              lv_stringattributevalue = lo_value_1->get_s( ).
              lv_numberattributevalue = lo_value_1->get_n( ).
              lv_binaryattributevalue = lo_value_1->get_b( ).
              LOOP AT lo_value_1->get_ss( ) into lo_row_2.
                lo_row_3 = lo_row_2.
                IF lo_row_3 IS NOT INITIAL.
                  lv_stringattributevalue = lo_row_3->get_value( ).
                ENDIF.
              ENDLOOP.
              LOOP AT lo_value_1->get_ns( ) into lo_row_4.
                lo_row_5 = lo_row_4.
                IF lo_row_5 IS NOT INITIAL.
                  lv_numberattributevalue = lo_row_5->get_value( ).
                ENDIF.
              ENDLOOP.
              LOOP AT lo_value_1->get_bs( ) into lo_row_6.
                lo_row_7 = lo_row_6.
                IF lo_row_7 IS NOT INITIAL.
                  lv_binaryattributevalue = lo_row_7->get_value( ).
                ENDIF.
              ENDLOOP.
              " Skipping ls_row_8-value to avoid recursion
              " Skipping ls_row_8-value to avoid recursion
              lv_nullattributevalue = lo_value_1->get_null( ).
              lv_booleanattributevalue = lo_value_1->get_bool( ).
            ENDIF.
          ENDLOOP.
          " Skipping lo_row_9 to avoid recursion
          lv_nullattributevalue = lo_row_10->get_null( ).
          lv_booleanattributevalue = lo_row_10->get_bool( ).
        ENDIF.
      ENDLOOP.
      lv_nullattributevalue = lo_value->get_null( ).
      lv_booleanattributevalue = lo_value->get_bool( ).
    ENDIF.
  ENDLOOP.
  lo_consumedcapacity = lo_result->get_consumedcapacity( ).
  IF lo_consumedcapacity IS NOT INITIAL.
    lv_tablearn = lo_consumedcapacity->get_tablename( ).
    lv_consumedcapacityunits = lo_consumedcapacity->get_capacityunits( ).
    lv_consumedcapacityunits = lo_consumedcapacity->get_readcapacityunits( ).
    lv_consumedcapacityunits = lo_consumedcapacity->get_writecapacityunits( ).
    lo_capacity = lo_consumedcapacity->get_table( ).
    IF lo_capacity IS NOT INITIAL.
      lv_consumedcapacityunits = lo_capacity->get_readcapacityunits( ).
      lv_consumedcapacityunits = lo_capacity->get_writecapacityunits( ).
      lv_consumedcapacityunits = lo_capacity->get_capacityunits( ).
    ENDIF.
    LOOP AT lo_consumedcapacity->get_localsecondaryindexes( ) into ls_row_12.
      lv_key_1 = ls_row_12-key.
      lo_value_2 = ls_row_12-value.
      IF lo_value_2 IS NOT INITIAL.
        lv_consumedcapacityunits = lo_value_2->get_readcapacityunits( ).
        lv_consumedcapacityunits = lo_value_2->get_writecapacityunits( ).
        lv_consumedcapacityunits = lo_value_2->get_capacityunits( ).
      ENDIF.
    ENDLOOP.
    LOOP AT lo_consumedcapacity->get_globalsecondaryindexes( ) into ls_row_12.
      lv_key_1 = ls_row_12-key.
      lo_value_2 = ls_row_12-value.
      IF lo_value_2 IS NOT INITIAL.
        lv_consumedcapacityunits = lo_value_2->get_readcapacityunits( ).
        lv_consumedcapacityunits = lo_value_2->get_writecapacityunits( ).
        lv_consumedcapacityunits = lo_value_2->get_capacityunits( ).
      ENDIF.
    ENDLOOP.
  ENDIF.
ENDIF.
To query an item¶
This example queries items in the Music table. The table has a partition key and sort key (Artist and SongTitle), but this query only specifies the partition key value. It returns song titles by the artist named "No One You Know".
DATA(lo_result) = lo_client->query(
  it_expressionattributevalues = VALUE /aws1/cl_dynattributevalue=>tt_expressionattributevaluemap(
    (
      VALUE /aws1/cl_dynattributevalue=>ts_xprsnattrvaluemap_maprow(
        value = new /aws1/cl_dynattributevalue( iv_s = |No One You Know| )
        key = |:v1|
      )
    )
  )
  iv_keyconditionexpression = |Artist = :v1|
  iv_projectionexpression = |SongTitle|
  iv_tablename = |Music|
).