Technology Blogs by SAP
Learn how to extend and personalize SAP applications. Follow the SAP technology blog for insights into SAP BTP, ABAP, SAP Analytics Cloud, SAP HANA, and more.
cancel
Showing results for 
Search instead for 
Did you mean: 
former_member185414
Active Contributor

Hello Fellow SCNers,

In this blog, I will demo the usage of Smart Table control including OData Metadata development and Front End application code.

Smart Table uses Vocabulary based annotations in OData.

Backend

Data Structure and Data preparation



Step 1: Go to SE11 and create a table as shown below.

Step 2: Populate the data and check.


Service Creation


Step 3: Import the highlighted vocabulary(ies) in SEGW(Project Builder Transaction). (This is a one time activity)

Step 4: Create a Service with Vocabulary Based Annotation as

Step 5: Create an Entity - SmartTable and corresponding EntitySet. These are standard steps and I am ignoring them here, though I have attached screenshot of the same.

Properties -

Step 6: Import the vocabulary in the Service as -

Step 7: Create the Line Item Annotation which is the most important one for Smart table as it will help the UI5 framework to create table structure.

Choose the line item column and then click on Create Annotation.


Step 8: Click on 'Append Row/Create'


Step 9: Choose the highlighted type for property

Step 10: One column is created as shown below -


Do the above step for all 4 columns.

Step 11: Now the service will look like -

Step 12: Implement the Getter for Smart Table Entityset too -


Now the metadata should look like below

<edmx:Edmx xmlns:edmx="http://schemas.microsoft.com/ado/2007/06/edmx" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns:sap="http://www.sap.com/Protocols/SAPData" Version="1.0">

<edmx:Reference xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx"Uri="https://<host:port>/sap/opu/odata/IWFND/CATALOGSERVICE;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVO...">

<edmx:Include Namespace="com.sap.vocabularies.UI.v1"/>

</edmx:Reference>

<edmx:Reference xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx"Uri="https://<host:port>/sap/opu/odata/IWFND/CATALOGSERVICE;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_CORE',Version='00...">

<edmx:Include Namespace="Org.OData.Core.V1"/>

</edmx:Reference>

<edmx:Reference xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx"Uri="https://<host:port>/sap/opu/odata/IWFND/CATALOGSERVICE;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_COMMUNICATION',Ve...">

<edmx:Include Namespace="com.sap.vocabularies.Communication.v1"/>

</edmx:Reference>

<edmx:DataServices m:DataServiceVersion="2.0">

<Schema xmlns="http://schemas.microsoft.com/ado/2008/09/edm" Namespace="ZSMARTTABLE4" xml:lang="en" sap:schema-version="0000">

<EntityType Name="SmartTable" sap:content-version="1">

<Key>

<PropertyRef Name="Bname"/>

</Key>

<Property Name="Bname" Type="Edm.String" Nullable="false" MaxLength="12" sap:label="User"/>

<Property Name="Fullname" Type="Edm.String" Nullable="false" MaxLength="80" sap:label="Complete name"/>

<Property Name="SmtpAddr" Type="Edm.String" Nullable="false" MaxLength="241" sap:label="E-Mail Address"/>

<Property Name="Location" Type="Edm.String" Nullable="false" MaxLength="40" sap:label="Location"/>

</EntityType>

<EntityContainer Name="ZSMARTTABLE4_Entities" m:IsDefaultEntityContainer="true">

<EntitySet Name="SmartTableSet" EntityType="ZSMARTTABLE4.SmartTable" sap:content-version="1"/>

</EntityContainer>

<Annotations xmlns="http://docs.oasis-open.org/odata/ns/edm" Target="SmartTable">

<Annotation Term="com.sap.vocabularies.UI.v1.LineItem">

<Collection>

<Record Type="com.sap.vocabularies.UI.v1.DataFieldForAnnotation">

<PropertyValue Property="Label" String="Location"/>

<PropertyValue Property="Target" AnnotationPath="Location"/>

</Record>

<Record Type="com.sap.vocabularies.UI.v1.DataFieldForAnnotation"/>

<Record Type="com.sap.vocabularies.UI.v1.DataFieldForAnnotation">

<PropertyValue Property="Label" String="Location"/>

<PropertyValue Property="Target" AnnotationPath="Location"/>

</Record>

<Record Type="com.sap.vocabularies.UI.v1.DataFieldForAnnotation"/>

</Collection>

</Annotation>

</Annotations>

<atom:link xmlns:atom="http://www.w3.org/2005/Atom" rel="self" href="<host:port>/sap/opu/odata/sap/ZSMARTTABLE4/$metadata"/>

<atom:link xmlns:atom="http://www.w3.org/2005/Atom" rel="latest-version" href="<host:port>/sap/opu/odata/sap/ZSMARTTABLE4/$metadata"/>

</Schema>

</edmx:DataServices>

</edmx:Edmx>

Front End Code

Step 13: For sake of simplicity I have put the Smart Table in Index.html file and run it.

<!DOCTYPE html>

<html><head>

  <meta http-equiv='X-UA-Compatible' content='IE=edge' />

  <meta http-equiv='Content-Type' content='text/html;charset=UTF-8'/>

<title>Smart Table</title>

  <script id='sap-ui-bootstrap' type='text/javascript'

src='/sapui5/resources/sap-ui-core.js'

data-sap-ui-theme='sap_bluecrystal'

data-sap-ui-xx-bindingSyntax="complex"

data-sap-ui-libs='sap.ui.commons, sap.m'>

  </script>

  <script id="view1" type="sapui5/xmlview">

  <core:View xmlns:core="sap.ui.core" xmlns="sap.m" xmlns:smartFilterBar="sap.ui.comp.smartfilterbar" xmlns:smartTable="sap.ui.comp.smarttable" controllerName="smartTable.controller" class="sapUiSizeCompact">

  <Page id="page" title="Customers">

  <smartTable:SmartTable entitySet="SmartTableSet" enableAutoBinding="true"/>

  </Page>

</core:View>

  </script>

  <script>

  //Controller

sap.ui.controller("smartTable.controller", {

  onInit: function() {

  var sURL, oModel, oView;

  sURL = "<host:port>/sap/opu/odata/sap/ZSMARTTABLE4";

  oModel = new sap.ui.model.odata.v2.ODataModel(sURL, {

  json: true

  });

  oView = this.getView();

oView.setModel(oModel);

  }

  });

jQuery.sap.declare("smartTable.Component");

sap.ui.core.UIComponent.extend("smartTable.Component", {

  /**

  * Initialize the application

  *

  * @returns {sap.ui.core.Control} the content

  */

  createContent: function() {

  var app = new sap.m.App({

  initialPage: "idView"

  });

  var oView = sap.ui.xmlview("idView", { viewContent: jQuery("#view1").html() });        

app.addPage(oView);

  return app;

  }

  });

  new sap.ui.core.ComponentContainer({

  name : "smartTable"

}).placeAt("content")

  </script>

  </head>

  <body class='sapUiBody'>

  <div id='content'></div>

  </body>

</html>

Final Output -

PS: You may get some errors like one shown below but it is dependent on the SAPUI5 Version. I have used 1.33.0-SNAPSHOT version but it works on 1.28 also.

I would like to thank santhu.gowdaz whose blog gave me inspiration to test this control and arshdeep.singh for his help.

I would request you all to provide feedback and ask questions to enhance everyone's learning.

BR,

Ankit Maskara.

34 Comments