Архив

Posts Tagged ‘PA’

Модуль PA (Проекты) — полезные запросы

Список проектов

select * from pa.pa_projects_all;

Просмотр позиций поставки

select * from pa.pa_proj_elements t where t.OBJECT_type = 'PA_DELIVERABLES';
select * from pa_deliverables_v;
select * from oke_deliverables_b where source_code = 'PA';

Просмотр типов позиций поставки

select * from pa.pa_task_types t where t.object_type = 'PA_DLVR_TYPES';

Просмотр статусов позиций поставки

select * from pa.pa_project_statuses s
 where 1 = 1
       and s.status_type = 'DELIVERABLE'
       and trunc(sysdate) between nvl(s.start_date_active, trunc(sysdate)) and
                                  nvl(s.end_date_active, trunc(sysdate));

Список задач

select * from pa.pa_proj_elements t where t.OBJECT_type = 'PA_TASKS'

Типы задач

select * from PA_TASK_TYPES t where object_type = 'PA_TASKS'