Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
oblomov-dev committed Feb 14, 2024
1 parent 43c59a6 commit 249616f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/z2ui5_cl_demo_app_075.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ CLASS Z2UI5_CL_DEMO_APP_075 IMPLEMENTATION.
SPLIT mv_value AT `;` INTO DATA(lv_dummy) DATA(lv_data).
SPLIT lv_data AT `,` INTO lv_dummy lv_data.

DATA(lv_data2) = z2ui5_cl_demo_utility=>decode_x_base64( lv_data ).
DATA(lv_data2) = z2ui5_cl_util=>conv_decode_x_base64( lv_data ).
mv_file = z2ui5_cl_util=>conv_get_string_by_xstring( lv_data2 ).

client->message_box_display( `CSV loaded to table` ).
Expand Down
14 changes: 3 additions & 11 deletions src/z2ui5_cl_demo_app_128.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -21,26 +21,18 @@ CLASS z2ui5_cl_demo_app_128 IMPLEMENTATION.

METHOD z2ui5_if_app~main.


DATA(view) = z2ui5_cl_xml_view=>factory( ).
product_url = z2ui5_cl_demo_utility=>factory( client )->url_param_get( `product` ).
product_url = z2ui5_cl_util=>url_param_get(
val = `product`
url = client->get( )-s_config-search ).
* z2ui5_cl_demo_utility=>factory( client )->url_param_set( n = `product` v = `ABC` ).
product_url = z2ui5_cl_util=>url_param_get(
val = `product`
url = client->get( )-s_config-search ).
check_launchpad_active = client->get( )-check_launchpad_active.

IF check_initialized = abap_false.
check_initialized = abap_true.


* client->url_param_set( val = `test` ).

product = 'tomato'.
quantity = '500'.



client->view_display( view->shell(
)->page(
showheader = xsdbool( abap_false = client->get( )-check_launchpad_active )
Expand Down

0 comments on commit 249616f

Please sign in to comment.