Endeca - Entity (View)

Oracle Platform Structured Unstructured Data

About

Views definitions are stored in a centralized location in View Manager.

Views are used to simplify the configuration of visualization components in Studio. The Chart is the first Studio component that uses Views in it’s configuration.

Characteristics

  • There is no return statement in a view. The Studio component (e.g., Chart) is responsible for generating the return statement.
  • The only attributes returned by a View are those in the statement where the define name equals the view Key.
  • A view can be used in a EQL definition. Example with the employee view from the quickstart application:
RETURN viewQuery AS SELECT
SUM(Sales) as SalesSum,
FROM Employees
GROUP BY DimEmployee_DepartmentName
ORDER BY SalesSum
PAGE(0,10)
  • Do not alias a physical attribute name in select clauses of a View Definitions for an attribute marked as a Dimension because the drilldown of a chart relies on the physical attribute name. Use the display name property in the View Manager Attribute Configuration instead. Example:
/* CORRECT */ 
DimEmployee_FullName AS DimEmployee_FullName
/* INCORRECT */
DimEmployee_FullName AS FullName
  • Statement Names defined in the define word must be unique throughout all Views since there is a single namespace.

Management

Manager

The view manager is an interface that allows you to create, edit and delete views.

You can find it:

  • in Studio’s Control Panel before the version 3.1
  • in the application settings after the version 3.1

Endeca Studio View Manager

where you can see:

/* Ratio between the sum and the total */
SUM(FactSales_SalesAmount)/GlobalSales[].GlobalSales 
  • a base view: The base view is created and maintained automatically by the Endeca Server data store for all data sources in Studio. It contains all of the available attributes.

Sconfig Web Service

In order to list the Entity (View), you can use the listEntities function of the sconfig web service. It's the easy way to extract the view definition that you can use with a copy of the getting started application.

Endeca Sconfig Listentities

With this web service, you can also, put (add), delete, validate entities.





Discover More
Endeca Studio Data Set
(Endeca Server|Studio) - (Collection|Data Set)

Starting with the Endeca Server 7.6.0 and Studio 3.1.0, Endeca Server introduces collections (known in Studio as data sets), while keeping the ability to create entities (views). Collections allow you...
Oracle Platform Structured Unstructured Data
Endeca - Entity and Collection Configuration Web Service (sconfig)

Used to create and manage entities (view), collections (data set), and filter rules. http://host:endeca-server/ws/sconfig/dataDomain?wsdl
Oracle Platform Structured Unstructured Data
Endeca Server - Data Type (mdexType)

mdex:geocode See mdex:long mdex:string mdex:double ... view manager
Endeca Server Eql Multiple Statement
Endeca Server - Endeca Query Language (EQL)

EQL is the Endeca Query Language that permits you to retrieve data. view manager Simple EQL statements can be broken down into five primary components: Clauses are not case-sensitive Standard and...
Endeca Studio Chart Type
Endeca Studio - Chart

In 2.3, the chart becomes View-based to centralize definitions and ease component configuration. Pie, Bar, Stacked Bar, Stacked Bar Percent, Area, Area Percent, Line, Line...
Oracle Platform Structured Unstructured Data
Endeca- Records

Records are the fundamental units of data whereas attributes are fundamental units of the schema. In the previous release, views offered a way of grouping records. Endeca Server had a representation...



Share this page:
Follow us:
Task Runner