Jump to: navigation, search
(Created target blank page For Version: PSAAS:Julie) |
(Update with the copy of version: Public) |
||
Line 1: | Line 1: | ||
− | <!-- | + | = View GROUP_ = |
+ | |||
+ | <onlyinclude> | ||
+ | |||
+ | |||
+ | {{PDMView | ||
+ | |viewName = GROUP_ | ||
+ | |shortDesc = Allows facts to be described based on the membership of resources in resource groups or membership of places in place groups. | ||
+ | |viewDesc = Allows facts to be described based on the membership of resources in resource groups or membership of places in place groups. Routing points, queues, and agents can belong to resource groups. Places can belong to place groups. Each row describes one place group or resource group. A new row is issued for each configured place group and resource group, which is identified by its ID in the contact center configuration. Changing a group name causes an update to an existing row. Deleting a group and re-creating it under the same name causes a new row to be issued. | ||
+ | |||
+ | <!-- <font color=red>'''Writer's note to self:''' This is the page created on April 25 from the word-processed XML file (i.e., space-from-underscore removed from page title element). Confirm it is the page that gets linked to from the l-h navigation pane and from the Ponydocs TOC, and that there's no ghost GROUP_ page.</font>--> | ||
+ | |introduced = | ||
+ | |SQL = <source lang="xml" enclose="div">SELECT | ||
+ | ID AS GROUP_KEY, | ||
+ | TENANTID AS TENANT_KEY, | ||
+ | NAME AS GROUP_NAME, | ||
+ | CREATE_AUDIT_KEY AS CREATE_AUDIT_KEY, | ||
+ | UPDATE_AUDIT_KEY AS UPDATE_AUDIT_KEY, | ||
+ | CASE TYPE | ||
+ | WHEN 0 THEN 'Unknown' | ||
+ | WHEN 1 THEN 'Agent' | ||
+ | WHEN 2 THEN 'Place' | ||
+ | WHEN 3 THEN | ||
+ | CASE DNGROUPTYPE | ||
+ | WHEN 0 THEN 'Unknown' | ||
+ | WHEN 1 THEN 'Single Port' | ||
+ | WHEN 2 THEN 'Queue' | ||
+ | WHEN 3 THEN 'RoutingPoint' | ||
+ | WHEN 4 THEN 'Network Port' | ||
+ | WHEN 5 THEN 'Service Number' | ||
+ | ELSE 'Unknown' | ||
+ | END | ||
+ | ELSE 'Unknown' | ||
+ | END AS GROUP_TYPE, | ||
+ | CASE TYPE | ||
+ | WHEN 0 THEN 'UNKNOWN' | ||
+ | WHEN 1 THEN 'AGENT' | ||
+ | WHEN 2 THEN 'PLACE' | ||
+ | WHEN 3 THEN | ||
+ | CASE DNGROUPTYPE | ||
+ | WHEN 0 THEN 'UNKNOWN' | ||
+ | WHEN 1 THEN 'SINGLEPORT' | ||
+ | WHEN 2 THEN 'QUEUE' | ||
+ | WHEN 3 THEN 'ROUTINGPOINT' | ||
+ | WHEN 4 THEN 'NETWORKPORT' | ||
+ | WHEN 5 THEN 'SERVICENUMBER' | ||
+ | ELSE 'UNKNOWN' | ||
+ | END | ||
+ | ELSE 'UNKNOWN' | ||
+ | END AS GROUP_TYPE_CODE, | ||
+ | ID AS GROUP_CFG_DBID, | ||
+ | TYPE AS GROUP_CFG_TYPE_ID, | ||
+ | CREATED_TS AS START_TS, | ||
+ | DELETED_TS AS END_TS | ||
+ | FROM GIDB_GC_GROUP | ||
+ | UNION ALL | ||
+ | SELECT | ||
+ | -1 AS GROUP_KEY, | ||
+ | -1 AS TENANT_KEY, | ||
+ | 'UNKNOWN' AS GROUP_NAME, | ||
+ | -1 AS CREATE_AUDIT_KEY, | ||
+ | -1 AS UPDATE_AUDIT_KEY, | ||
+ | 'UNKNOWN' AS GROUP_TYPE, | ||
+ | 'UNKNOWN' AS GROUP_TYPE_CODE, | ||
+ | -1 AS GROUP_CFG_DBID, | ||
+ | -1 AS GROUP_CFG_TYPE_ID, | ||
+ | -1 AS START_TS, | ||
+ | -1 AS END_TS | ||
+ | FROM dual | ||
+ | UNION ALL | ||
+ | SELECT | ||
+ | -2 AS GROUP_KEY, | ||
+ | -1 AS TENANT_KEY, | ||
+ | 'No Group' AS GROUP_NAME, | ||
+ | -1 AS CREATE_AUDIT_KEY, | ||
+ | -1 AS UPDATE_AUDIT_KEY, | ||
+ | 'NO_VALUE' AS GROUP_TYPE, | ||
+ | 'NO_VALUE' AS GROUP_TYPE_CODE, | ||
+ | -1 AS GROUP_CFG_DBID, | ||
+ | -1 AS GROUP_CFG_TYPE_ID, | ||
+ | -1 AS START_TS, | ||
+ | -1 AS END_TS | ||
+ | FROM dual | ||
+ | |||
+ | </source> | ||
+ | }} | ||
+ | |||
+ | {{PDMViewColumn | ||
+ | |colName = GROUP_KEY | ||
+ | |colDesc = The primary key of this view that is used to join the GROUP_ dimension to the fact tables. | ||
+ | }} | ||
+ | |||
+ | {{PDMViewColumn | ||
+ | |colName = TENANT_KEY | ||
+ | |colDesc = The surrogate key that is used to join the TENANT dimension to the fact tables. | ||
+ | }} | ||
+ | |||
+ | {{PDMViewColumn | ||
+ | |colName = GROUP_NAME | ||
+ | |colDesc = The group name. | ||
+ | }} | ||
+ | |||
+ | {{PDMViewColumn | ||
+ | |colName = CREATE_AUDIT_KEY | ||
+ | |colDesc = The surrogate key that is used to join to the CTL_AUDIT_LOG control table. The key specifies the lineage for data creation. This value can be useful for aggregation, enterprise application integration (EAI), and ETL tools — that is, applications that need to identify newly added data. | ||
+ | }} | ||
+ | |||
+ | {{PDMViewColumn | ||
+ | |colName = UPDATE_AUDIT_KEY | ||
+ | |colDesc = The surrogate key used to join to the CTL_AUDIT_LOG dimension. Specifies the lineage for data update. This value can be useful for aggregation, enterprise application integration (EAI), and ETL tools — that is, applications that need to identify recently modified data. | ||
+ | }} | ||
+ | |||
+ | {{PDMViewColumn | ||
+ | |colName = GROUP_TYPE | ||
+ | |colDesc = The group type. This field is set to one of the following values: | ||
+ | * Unknown | ||
+ | * Agent | ||
+ | * Place | ||
+ | * Queue | ||
+ | * RoutingPoint | ||
+ | * Network Port | ||
+ | * Service Number | ||
+ | * Single Port | ||
+ | |||
+ | This value can change with localization. | ||
+ | }} | ||
+ | |||
+ | {{PDMViewColumn | ||
+ | |colName = GROUP_TYPE_CODE | ||
+ | |colDesc = The group type code. This field is set to one of the following values: | ||
+ | |||
+ | * UNKNOWN | ||
+ | * AGENT | ||
+ | * PLACE | ||
+ | * QUEUE | ||
+ | * ROUTINGPOINT | ||
+ | * NETWORKPORT | ||
+ | * SERVICENUMBER | ||
+ | * SINGLEPORT | ||
+ | |||
+ | This value does not change with localization. | ||
+ | }} | ||
+ | |||
+ | {{PDMViewColumn | ||
+ | |colName = GROUP_CFG_DBID | ||
+ | |colDesc = The group object identifier in the contact center configuration. | ||
+ | }} | ||
+ | |||
+ | {{PDMViewColumn | ||
+ | |colName = GROUP_CFG_TYPE_ID | ||
+ | |colDesc = The contact center configuration integer type that is associated with the DN or agent group object. | ||
+ | }} | ||
+ | |||
+ | {{PDMViewColumn | ||
+ | |colName = START_TS | ||
+ | |colDesc = The UTC-equivalent value of the date and time when the group was added to IDB, which may differ from when the group was actually added to contact center configuration. | ||
+ | }} | ||
+ | |||
+ | {{PDMViewColumn | ||
+ | |colName = END_TS | ||
+ | |colDesc = The UTC-equivalent value of the date and time when the group was removed from contact center configuration. | ||
+ | }} | ||
+ | |||
+ | {{PDMRef | ||
+ | |parentView = GROUP_ | ||
+ | |foreignKey = GROUP_KEY | ||
+ | }} | ||
+ | |||
+ | {{PDMRef | ||
+ | |parentView = TENANT | ||
+ | |foreignKey = TENANT_KEY | ||
+ | }} | ||
+ | |||
+ | {{PDMRef | ||
+ | |parentTable = CTL_AUDIT_LOG | ||
+ | |foreignKey = CREATE_AUDIT_KEY | ||
+ | }} | ||
+ | |||
+ | {{PDMRef | ||
+ | |parentTable = CTL_AUDIT_LOG | ||
+ | |foreignKey = UPDATE_AUDIT_KEY | ||
+ | }} | ||
+ | |||
+ | |||
+ | </onlyinclude> | ||
+ | |||
+ | [[Category:V:PSAAS:Julie]] |
Revision as of 18:01, June 10, 2019
View GROUP_
No results
Comments or questions about this documentation? Contact us for support!