| Package | Description |
|---|---|
| com.sap.sl.sdk.authoring.datafoundation |
This package provides classes to create data foundations and manage objects for editing data foundations.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
AliasTable
A representation of the model object 'Alias Table'.
|
interface |
DatabaseTable
A representation of the 'Database Table' model object.
|
interface |
DerivedTable
A representation of the model object 'Derived Table'.
|
interface |
FederatedTable
A representation of the model object 'Federated Table'.
|
| Modifier and Type | Method and Description |
|---|---|
Table |
AliasTable.getAliasedTable()
Returns the value of the 'Aliased Table' reference.
|
Table |
SQLJoin.getLeftTable()
Returns the value of the 'Left Table' reference.
|
Table |
SQLJoin.getRightTable()
Returns the value of the 'Right Table' reference.
|
Table |
TableView.getTable()
Returns the value of the 'Table' reference.
|
Table |
Column.getTable()
Returns the value of the 'Table' container reference.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.List<Table> |
DataFoundation.getTables()
Returns the value of the 'Tables' containment reference list.
|
| Modifier and Type | Method and Description |
|---|---|
AliasTable |
DataFoundationFactory.createAliasTable(java.lang.String name,
Table aliasedTable,
DataFoundation dataFoundation)
Creates an alias table and appends it to the tables owned by the data foundation.
|
DatabaseColumn |
DataFoundationFactory.createColumn(java.lang.String name,
SQLDataType dataType,
Table table)
Creates a new database column.
|
TableView |
DataFoundationFactory.createTableView(Table table,
DataFoundationView dataFoundationView)
Creates a table view and adds it to a data foundation view.
|
java.lang.String |
DataFoundationService.getTableFullName(Table table)
Returns the fully qualified table name that identifies a table within a
DataFoundation. |
void |
TableView.setTable(Table value)
Sets the value of the '
Table' reference. |