Class ExtraTableInfo
With this class you can retrieve meta information about an extra table. The class will only retrieve information, thus it is not possible to change an extra table from this class.
Syntax
Examples
ExtraTableInfo e;
e.load("y_mytable");
Constructors
ExtraTableInfo()
Initializes a new instance of the ExtraTableInfo class.
Declaration
ExtraTableInfo
Examples
ExtraTableInfo e;
e.load("y_mytable");
Methods
getFlags()
Returns the flags for this extra table.
Declaration
Integer getFlags()
Returns
| Type | Description |
|---|---|
| Integer | The flags for this table. |
Remarks
Available flags: FlagHidden = 0, FlagDeleted = 8
Examples
ExtraTableInfo e;
e.load("y_mytable");
getId()
Returns the ID of the extra table.
Declaration
Integer getId()
Returns
| Type | Description |
|---|---|
| Integer | The ID of the extra table. |
Examples
ExtraTableInfo e;
e.load("y_mytable");
getName()
Return the textual name of the extra table.
Declaration
String getName()
Returns
| Type | Description |
|---|---|
| String | The textual name of the extra table. |
Examples
ExtraTableInfo e;
e.load("y_mytable");
load(String)
Load the extra table with the given table name.
Declaration
Void load(String tableName)
Parameters
| Type | Name | Description |
|---|---|---|
| String | tableName | Name of the table (for example y_mytable). |
Returns
| Type | Description |
|---|---|
| Void |
Examples
ExtraTableInfo e;
e.load("y_mytable");