Browser
Opens a URL in a new browser tab from an event, leaving the running app where it is.
Z2UI5_CL_SMP_APP_073
Learn
Browser
UI5 1.71
The facts
- Repository
- abap2UI5/samples
- Class
Z2UI5_CL_SMP_APP_073- Source file
z2ui5_cl_smp_app_073.clas.abap↗- Category
- Browser
- Learning path
- Reach outside the view
- Minimum UI5
- 1.71 — the floor abap2UI5 holds its samples to
- In the playground
- runs in the browser, with no system and nothing installed
- Documentation
- abap2ui5.github.io/docs/cookbook/browser_interaction/url_ha… ↗
Keywords: url, window, open_new_tab, link, target
Controls it builds
- sap.m.Button
- sap.m.MessageStrip
- sap.m.Page
- sap.m.Shell
- sap.ui.core.mvc.View
- sap.ui.layout.form.SimpleForm
Read out of the builder chain by the abap2UI5 linter, not from the category this sample is filed under — which is what makes “which samples build one of these” a question the catalogue can answer at all.
Libraries
Run it here
The sample running, in this page — the app on its own, with no editor over it.
Switch to Playground with this code
Nothing is installed and nothing is sent anywhere: the ABAP is compiled to JavaScript in this browser and runs against abap2UI5 itself.
The ABAP
z2ui5_cl_smp_app_073.clas.abap — 108 lines
Click a number to link to a line — shift-click for a range.
Read it on GitHub ↗
" @keywords url window open_new_tab link target
" @summary Opens a URL in a new browser tab from an event, leaving the running app where it is.
" @docs https://abap2ui5.github.io/docs/cookbook/browser_interaction/url_handling
CLASS z2ui5_cl_smp_app_073 DEFINITION PUBLIC.
PUBLIC SECTION.
INTERFACES z2ui5_if_app.
METHODS view_display.
PROTECTED SECTION.
DATA client TYPE REF TO z2ui5_if_client.
METHODS url_own_get
RETURNING
VALUE(result) TYPE string.
PRIVATE SECTION.
ENDCLASS.
CLASS z2ui5_cl_smp_app_073 IMPLEMENTATION.
METHOD view_display.
DATA(view) = z2ui5_cl_ui5_view_builder=>factory(
)->ele( n = `View` ns = `mvc`
)->a( n = `displayBlock` v = `true`
)->a( n = `height` v = `100%`
)->a( n = `xmlns` v = `sap.m`
)->a( n = `xmlns:mvc` v = `sap.ui.core.mvc`
)->a( n = `xmlns:core` v = `sap.ui.core`
)->a( n = `xmlns:form` v = `sap.ui.layout.form` ).
DATA(page) = view->ele( `Shell`
)->ele( `Page`
)->a( n = `title` v = `abap2UI5 - Browser - Open a URL in a New Tab`
)->a( n = `showNavButton` b = client->check_app_prev_stack( )
)->a( n = `navButtonPress` v = client->_event_nav_app_leave( ) ).
page->tag( `MessageStrip`
)->a( n = `text` v = `Press the button to open the app's own URL in a new browser tab: the backend builds the ` &&
`URL and the open_new_tab front-end action launches it.`
)->a( n = `type` v = `Information`
)->a( n = `showIcon` b = abap_true
)->a( n = `class` v = `sapUiSmallMargin` ).
page->ele( n = `SimpleForm` ns = `form`
)->a( n = `title` v = `Form Title`
)->a( n = `editable` b = abap_true
)->ele( n = `content` ns = `form`
)->tag( `Button`
)->a( n = `press` v = client->_event( val = `BUTTON_OPEN_NEW_TAB` )
)->a( n = `text` v = `open new tab` ).
client->view_display( view->stringify( ) ).
ENDMETHOD.
METHOD z2ui5_if_app~main.
me->client = client.
IF client->check_on_navigated( ).
view_display( ).
ENDIF.
IF client->get_event( ) = `BUTTON_OPEN_NEW_TAB`.
client->follow_up_action(
val = z2ui5_if_client=>cs_event-open_new_tab
t_arg = VALUE #(
( url_own_get( ) )
) ).
ENDIF.
ENDMETHOD.
METHOD url_own_get.
DATA lt_param TYPE string_table.
" s_config carries the browser's own location: origin, path and query
DATA(ls_config) = client->get( )-s_config.
" keep every query parameter the current URL already has - sap-client and
" sap-language among them - and swap app_start for this class, so the new
" tab opens this app instead of whatever the current URL points to. The
" hash is left out on purpose: it holds THIS app's state, and the backend
" would prefer it over app_start.
SPLIT shift_left( val = ls_config-search sub = `?` ) AT `&` INTO TABLE lt_param.
DATA(lv_query) = `app_start=z2ui5_cl_smp_app_073`.
LOOP AT lt_param INTO DATA(lv_param).
IF lv_param IS INITIAL
OR to_lower( substring_before( val = lv_param sub = `=` ) ) = `app_start`.
CONTINUE.
ENDIF.
lv_query = |{ lv_query }&{ lv_param }|.
ENDLOOP.
result = |{ ls_config-origin }{ ls_config-pathname }?{ lv_query }|.
ENDMETHOD.
ENDCLASS.
More in Browser
On this page