Dynamische Ansicht erzeugen
Um eine dynamische Ansicht zu erzeugen, können Sie SQL verwenden.
1.Speichern Sie die Ansicht:
2.Enter the SQL-Statement, which select task_ids form projects.
Typische Beispiele:
Auswahl aller neuen Projekte (Status unerledigt)
select x.task_id from t_task x where x.task_id = x.project_fk and x.control_status = 0
Auswahl aller laufenden Projekte (Status Freigegeben, Gestarted, Unterbrochen)
select x.task_id from t_task x where x.task_id = x.project_fk and x.control_status in (1,2,3)
Alle Projekte, die beendet sind (Status Beendet, Storniert)
select x.task_id from t_task x where x.task_id = x.project_fk and x.control_status in (4,5)
Projekte einer speziellen Kategorie:
select x.task_id from t_task x where x.task_id = x.project_fk and x.task_type like '<our category>%'
Zusammenfassung mehrerer Teilprojekte (Beispiel)
select x.task_id from t_task x where x.task_id = x.project_fk and x.ID_NO = 'Summary project'
Bestimmter Verantwortlicher
select x.task_id
from t_task x
join t_user u on u.user_id = x.responsible_fk
where x.task_id = x.project_fk and u.long_name = '<login name>'
Fragen Sie Ihren PLANOUT-Vertriebspartner für weitere Informationen.