1

Hi i have a smart table like below

<VBox id="myid">
        <smartTable:SmartTable id="smartTable_ResponsiveTable" entitySet = "Employee" enableAutoBinding="true"
                tableType="ResponsiveTable" initialise="onSmartTableInit" editable="false" useVariantManagement="false"
                useTablePersonalisation="true" header="Employees" showRowCount="true" useExportToExcel="true" />
</VBox>

my odata service is like below:

<workspace>
  <atom:title>Default</atom:title>
  <collection href="TablePersonalization">
      <atom:title>TablePersonalization</atom:title>
  </collection>
  <collection href="Employee">
     <atom:title>Employee</atom:title>
  </collection>
  <collection href="Collections">
    <atom:title>Collections</atom:title>
  </collection>
</workspace>

my smart table is there in second view which is has a navigation from the first view. when ever i move to the second view we are binding the total view with a different path like below.

  this.getView().bindElement(bindingPath);

bindingPath = "/Collections('12345')"

here in my case, i am trying to bind the path "Employee", which is a parent navigation at root level.

iam confused about entitySet and tableBindingPath

metadata of oData is as follows.

<EntityType Name="EmployeeType">
 <Key>
  <PropertyRef Name="EMP_ID"/>
 </Key>
 <Property Name="EMP_ID" Type="Edm.String" Nullable="false"   MaxLength="1024"/>
 <Property Name="NAME" Type="Edm.String" Nullable="false" MaxLength="1024"/>
 <Property Name="ADDR" Type="Edm.String" Nullable="false" MaxLength="1024"/>
 <Property Name="SAL" Type="Edm.String" Nullable="false" MaxLength="1024"/>
</EntityType>

my DB table is as follows:-

entity Employee {
    key EMP_ID      :               String(1024) not null;  // Identifier of   the Column
    NAME            :               String(1024) not null;
    ADDR            :               String(1024) not null;
    SAL             :               String(1024) not null;
}; 

my odata is as follows.

"MY_SCHEMA"."my.db.models::CollectionModel.Employee" as "Employee";

i confused about the mapping here. what does the entitySet expects, is it table name or entityType name in metadata and what about the table binding path. Can any body answere this.

2 Answers 2

3


The entitySet expects the name of your Entity in Service. This is mainly required so that in the settings button all the fields in your entity will come up.
TableBindingPath - this is to bind the data. For example you could be binding the table to association to a Parent in which case you specify the association name.
This Reference should probably help.

Kindly note, if you do not specify the tableBindingPath and set the enableAutoBinding flag to true then system will table will automatically call getEntitySet on entitySet specified.
Hope this helps.
Thanks and Regards,
Veera

8
  • Hi Veera, thank you for your response. i tried the same as you mentioned, still not working, in my case i have a navigation as follows. /Collection('23453')/PatientItems. i have given entitySet="CollectionsType" and since it has a navigation to the PatientItems so i have given tableBindingPath="PatientItems". i found this name(PatientItems form the navigation property in metadata). but still facing problem. in the reference you have mentioned i didnot understand POHeaders Aug 18, 2015 at 11:07
  • When ever we move to a page where the we are showing smart table, we are change the binding context as well. means we are setting this.getView().bindElement("/Collection('23453')"). now model also point to this path. Aug 18, 2015 at 14:28
  • Hi Saran, The tableBindingPath is fine but the entitySet should be the name of the entitySet of the PatientItems. For Example lets take 2 entitySets 1.HeaderSet 2. ItemSet and the navigation from HeaderSet to ItemSet is called items EntitySet should be ItemSet tableBindingPath should be items Aug 18, 2015 at 15:20
  • Hi Veera that means, i have my oData meta data as follows <EntityType Name="PatientsType"></EntityType> and i have given entitySet = "PatientsType" is this the one you explained? Aug 19, 2015 at 7:53
  • Hi veera, i you dont mind can we take this offline. her is my mailid : [email protected], can you please send me a test mail. Aug 19, 2015 at 14:01
0

I found the below regarding SmartTable.

Check the version of the sapui5 you are using, in my case i am using sapui5 1.28.5, in which smart table is not working, then i changed the version of the sapui5 to 1.30 it started working.

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.