This table is used to create a target grouped view of an existing job container.
| Column Name | Column Datatype | Column Null Option | Column Comment |
| objectid | byte(16) | not null | Primary key, it is a uuid.. |
| version | integer | not null | Version number is used to maintain cache and an optimistic transaction policy |
| jobcont | byte(16) | with null | This is the link to the job container, FK to usd_job_cont. |
| type | integer | not null | Only set to target view so far, user view not implemented yet. |
| waitingcnt | integer | not null | This is the total number of targets that are WAITING for a specific job container. |
| activecnt | integer | not null | This is the total number of targets that are ACTIVE for a specific job container. |
| errorcnt | integer | not null | This is the total number of targets that are ERROR for a specific job container. |
| okcnt | integer | not null | This is the total number of targets that are OK for a specific job container. |
| waitingrenewcnt | integer | not null | This is the total number of target that are renewed and WAITING for a specific job container. |
| activerenewcnt | integer | not null | This is the total number of target that are renewed and ACTIVE for a specific job container. |
| errorrenewcnt | integer | not null | This is the total number of target that are renewed and ERROR for a specific job container. |
| okrenewcnt | integer | not null | This is the total number of target that are renewed and OK for a specific job container. |
Product Name: Unicenter Desktop and Server Management
Table Type: Table
Relationships:
| Primary Key | Related Table | Related Column |
| objectid | usd_jcappgr | jobcontview |