KNTA_PORTLET_QUERIES
This table stores the default SQL clauses for each of the portlet types based on filter criteria. Some portlet types have different defaults based on a specific parameter, while others have a single default.
Foreign Keys
Primary Key Table |
Primary Key Column |
Foreign Key Column |
---|---|---|
KNTA_USERS |
USER_ID |
CREATED_BY |
KNTA_USERS |
USER_ID |
LAST_UPDATED_BY |
KNTA_PORTLET_TYPES |
PORTLET_TYPE_ID |
PORTLET_TYPE_ID |
Column Descriptions
Column Name |
Null? |
Data Type |
Description |
---|---|---|---|
PORTLET_QUERY_ID |
NOT NULL |
NUMBER |
System-generated identifier |
CREATION_DATE |
NOT NULL |
DATE |
Date record was created |
CREATED_BY |
NOT NULL |
NUMBER |
Identifier for the user who created the record |
LAST_UPDATE_DATE |
NOT NULL |
DATE |
Date record was last updated |
LAST_UPDATED_BY |
NOT NULL |
NUMBER |
Identifier for the user who last updated the record |
PORTLET_TYPE_ID |
NOT NULL |
NUMBER |
ID of the portlet type for which this portlet query is a default. |
PARAMETER_NAME |
NULLABLE |
VARCHAR2(40) |
Name of the parameter used to select the defaults for a portlet |
PARAMETER_VALUE |
NULLABLE |
VARCHAR2(200) |
If the portlet uses this parameter value, then the default clauses will be used from this portlet query |
SELECT_CLAUSE |
NOT NULL |
VARCHAR2(4000) |
Default select clause for the query based on the parameter name and value |
FROM_CLAUSE |
NOT NULL |
VARCHAR2(2000) |
Default from clause for the query based on the parameter name and value |
GROUP_BY_CLAUSE |
NULLABLE |
VARCHAR2(2000) |
Default group by clause for the query based on the parameter name and value |
ORDER_BY_CLAUSE |
NULLABLE |
VARCHAR2(2000) |
Default order by clause for the query based on the parameter name and value |
SOURCE_TYPE_CODE |
NULLABLE |
VARCHAR2(30) |
For records that have been updated by an interface or migrator, indicates the type of external update (specific interface or migrator name, and so on) |
SOURCE |
NULLABLE |
VARCHAR2(100) |
For records that have been updated by an interface or migrator, provides additional information about the source of the external update. |
Indexes
Index Name |
Index Type |
Sequence |
Column Name |
---|---|---|---|
KNTA_PORTLET_QUERIES_N1 |
NONUNIQUE |
1 |
PORTLET_TYPE_ID |
KNTA_PORTLET_QUERIES_U1 |
UNIQUE |
1 |
PORTLET_QUERY_ID |
Sequences
Sequence Name |
Sequence Type |
---|---|
KNTA_PORTLET_QUERIES_S |
PORTLET_QUERY_ID |