Smart Table and Variants
with variant management - UI_PRODUCTLIST
Z2UI5_CL_SMPS_APP_313
Stack
Smart Controls
UI5 1.71
needs a system
needs a system. This sample is listed here because a sample somebody cannot find is worse than one they cannot run: SAPUI5 + an activated Gateway service. The ABAP is below; installed on a system that has what it needs, it runs there.
The facts
- Repository
- abap2UI5/samples-stack
- Class
Z2UI5_CL_SMPS_APP_313- Source file
z2ui5_cl_smps_app_313.clas.abap↗- Category
- Smart Controls
- Minimum UI5
- 1.71 — the floor abap2UI5 holds its samples to
- In the playground
- needs a system — it opens for reading instead
- Runs on
- Cloud + Standard ≥ 7.40 SP08
Keywords: smarttable, smartfilterbar, variant, management, annotations, controlconfiguration, odata
Controls it builds
- sap.m.Page
- sap.m.Shell
- sap.ui.comp.smartfilterbar.ControlConfiguration
- sap.ui.comp.smartfilterbar.SmartFilterBar
- sap.ui.comp.smarttable.SmartTable
- sap.ui.core.mvc.View
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
The ABAP
z2ui5_cl_smps_app_313.clas.abap — 76 lines, on branch 02-smart-controls
Click a number to link to a line — shift-click for a range.
Read it on GitHub ↗
" @keywords smarttable smartfilterbar variant management annotations controlconfiguration odata
" @summary with variant management - UI_PRODUCTLIST
CLASS z2ui5_cl_smps_app_313 DEFINITION PUBLIC.
PUBLIC SECTION.
INTERFACES z2ui5_if_app.
" No attributes: the two smart controls below are driven by the OData
" service, not by a model this class serializes. Everything a PUBLIC
" attribute would hold travels to the browser on every roundtrip.
PROTECTED SECTION.
PRIVATE SECTION.
ENDCLASS.
CLASS z2ui5_cl_smps_app_313 IMPLEMENTATION.
METHOD z2ui5_if_app~main.
IF client->check_on_navigated( ).
" An earlier revision of this app ran the same two smart controls against
" the BookingSupplement entity of /sap/opu/odata/DMO/API_TRAVEL_U_V2/. It
" was kept here commented out and is gone with the move to
" z2ui5_cl_ui5_view_builder - the service and entity set are the only part
" of it that was not already in the code below.
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:smartFilterBar` v = `sap.ui.comp.smartfilterbar`
)->a( n = `xmlns:smartTable` v = `sap.ui.comp.smarttable` ).
DATA(page) = view->ele( `Shell`
)->ele( `Page`
)->a( n = `title` v = `abap2UI5 - Smart Controls with Variants`
)->a( n = `showNavButton` b = client->check_app_prev_stack( )
)->a( n = `navButtonPress` v = client->_event_nav_app_leave( ) ).
page->ele( n = `SmartFilterBar` ns = `smartFilterBar`
)->a( n = `id` v = `smartFilterBar`
)->a( n = `entitySet` v = `ProductType_2`
)->a( n = `persistencyKey` v = `SmartFilterPKey`
)->ele( n = `controlConfiguration` ns = `smartFilterBar`
)->tag( n = `ControlConfiguration` ns = `smartFilterBar`
)->a( n = `key` v = `ProductType`
)->a( n = `visibleInAdvancedArea` b = abap_true
)->a( n = `preventInitialDataFetchInValueHelpDialog` b = abap_false
)->end(
)->ele( n = `SmartTable` ns = `smartTable`
)->a( n = `id` v = `smartFiltertable`
)->a( n = `smartFilterId` v = `smartFilterBar`
)->a( n = `tableType` v = `ResponsiveTable`
)->a( n = `editable` b = abap_false
)->a( n = `initiallyVisibleFields` v = `ProductType,ProductType_Text`
)->a( n = `entitySet` v = `ProductType_2`
)->a( n = `useVariantManagement` b = abap_true
)->a( n = `useExportToExcel` b = abap_true
)->a( n = `useTablePersonalisation` b = abap_true
)->a( n = `header` v = `Test`
)->a( n = `showRowCount` b = abap_true
)->a( n = `enableExport` b = abap_false
)->a( n = `enableAutoBinding` b = abap_false ).
client->view_display( val = view->stringify( ) switch_default_model_path = `/sap/opu/odata/sap/UI_PRODUCTLIST/` ).
ENDIF.
ENDMETHOD.
ENDCLASS.
More in Smart Controls
- Switch Default Model — device, HTTP and OData model side by side - GWSAMPLE_BASIC
- Smart Multi Input — UI conditions mapped 1:1 onto an ABAP range table
- SmartField in a SmartForm — needs the GWSAMPLE_BASIC OData service
- SmartForm, editable toggle — needs the GWSAMPLE_BASIC OData service
- SmartFilterBar and SmartTable — needs the GWSAMPLE_BASIC OData service
- Page Variant Management — needs the GWSAMPLE_BASIC OData service
- SmartChart with NavPopover — an analytical service - you supply the path
- classic FilterBar variants — no service needed - the data is ABAP
On this page