PROJ_TEAM_PRMPT(SQL View) |
Index Back |
---|---|
Project prompt based on TeamIf the team based project prompt is enforced, this prompt view shows only those projects where the employee is a team member. It shows all projects that does not enforce team member only access. |
SELECT EMPLID , BUSINESS_UNIT , PROJECT_ID , DESCR FROM PS_PERSONAL_DATA PERDATA , PS_PROJECT WHERE ENFORCE = 'N' OR EXISTS ( SELECT 'X' FROM PS_PROJECT_TEAM_VW TEAM WHERE PS_PROJECT.BUSINESS_UNIT = TEAM.BUSINESS_UNIT AND PS_PROJECT.PROJECT_ID = TEAM.PROJECT_ID AND TEAM.TEAM_MEMBER = PERDATA.EMPLID) |
# | PeopleSoft Field Name | PeopleSoft Field Type | Database Column Type | Description |
---|---|---|---|---|
1 | EMPLID | Character(11) | VARCHAR2(11) NOT NULL | Employee ID |
2 | BUSINESS_UNIT_PC | Character(5) | VARCHAR2(5) NOT NULL | PC Business Unit |
3 | PROJECT_ID | Character(15) | VARCHAR2(15) NOT NULL | Project Id ChartField |
4 | DESCR | Character(30) | VARCHAR2(30) NOT NULL | Description |