CARIS HPD : HPD® Server API : Editing : Edit views : TASK_VW
 

TASK_VW

A list of edits

Output

Column

Type

Description

task_id

NUMBER

Primary key of the edit.

project_id

NUMBER

Primary key of the project.

timestamp

DATE

The time of the edit

user_id

NUMBER

The user id.

machine_name

VARCHAR2

The name of the computer that did the edit

Example

-- Get the edit information for the current version of a feature on each usage

SELECT *

FROM SOURCE_FEATURE_VW sv, TASK_VW e

WHERE sv.ADD_TASK_ID = e.TASK_ID;