File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ CLASS z2ui5_cl_demo_app_319 DEFINITION PUBLIC.
16
16
value1 TYPE string ,
17
17
value2 TYPE string ,
18
18
keyField TYPE string ,
19
+ tokenText TYPE string ,
19
20
END OF t_range,
20
21
t_ranges TYPE STANDARD TABLE OF t_range WITH EMPTY KEY .
21
22
DATA :
@@ -64,7 +65,7 @@ CLASS z2ui5_cl_demo_app_319 IMPLEMENTATION.
64
65
65
66
l_page->smart_multi_input(
66
67
id = 'ProductTypeMultiInput'
67
- * value = '{ProductType}'
68
+ * value = '{ProductType}'
68
69
value = '{CurrencyCode}'
69
70
entityset = 'Booking'
70
71
supportranges = 'true'
@@ -85,6 +86,8 @@ CLASS z2ui5_cl_demo_app_319 IMPLEMENTATION.
85
86
WHEN 'BACK' .
86
87
m_client->nav_app_leave( ).
87
88
WHEN 'PRODTYPE_CHANGED' .
89
+ INSERT VALUE #( operation = 'EQ' value1 = 'EUR' keyField = 'CurrencyCode' tokenText = 'Euro (auto added line)' ) INTO TABLE m_selection-product_type-ranges.
90
+ m_client->view_model_update( ).
88
91
TRY .
89
92
m_client->message_box_display(
90
93
text = z2ui5_cl_ajson=>new( )->set( iv_path = '/' iv_val = m_selection-product_type-ranges )->stringify( )
You can’t perform that action at this time.
0 commit comments