Creating the Value Set for a DropDownByKey Element

Overview

When using a DropDownByKey or DropDownByIndex element, the set of possible values is available automatically only for context attributes having a data type with fixed values defined in the underlying domain. Here we show how to manually create the set of possible values when fixed values are not available in the data type’s domain.

Scenario

You want to create a DropDownByKey UI element for data element VSBED (Shipping Conditions) which has its possible values defined in check table TVSB.

Procedure

1.0 Create a Context Node

In the COMPONENTCONTROLLER, create a context node with cardinality 1..1 and selection 0..1. Then create the attribute VSBED, defined as follows.

vsbed_context.PNG

2.0 Populate the Attribute Value Set

In method WDDOINIT of the COMPONENTCONTROLLER, enter the following code to define the set of possible values for context attribute VSBED.

method WDDOINIT.
  DATA lo_nd_node TYPE REF TO if_wd_context_node.
  DATA lo_node_info TYPE REF TO if_wd_context_node_info.
  DATA lt_value_set TYPE wdr_context_attr_value_list.
* -- Bind value set for the DropDownByKey element
  lo_nd_node = wd_context->get_child_node( name = wd_this->wdctx_node ).
  lo_node_info = lo_nd_node->get_node_info( ).
  SELECT tvsb~vsbed  AS value
         tvsbt~vtext AS text
         FROM tvsb
         JOIN tvsbt ON tvsbt~vsbed = tvsb~vsbed
         INTO TABLE lt_value_set
         WHERE tvsbt~spras = sy-langu
         ORDER BY text.
  lo_node_info->set_attribute_value_set(
    EXPORTING
      name      = 'VSBED'
      value_set = lt_value_set
  ).
endmethod.

3.0 Create the DropDownByKey UI Element

Copy the context node from the COMPONENTCONTROLLER to the desired view. Now create a DropyDownByKey UI element and bind its selectedKey property to context attribute NODE.VSBED.

vsbed_dropdownbykey.PNG

Result

The value set for context attribute VSBED is populated upon initialization of the COMPONENTCONTROLLER and is displayed in the view’s DropDownByKey UI element.

vsbed_result.PNG

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值