DBA Data[Home] [Help]

APPS.PA_UTILS dependencies on PA_EMPLOYEES

Line 162: pa_employees

158: person_id
159: INTO
160: X_person_id
161: FROM
162: pa_employees
163: WHERE
164: employee_number = X_emp_num;
165:
166: RETURN ( X_person_id );

Line 216: pa_employees

212: full_name
213: INTO
214: X_person_name
215: FROM
216: pa_employees
217: WHERE
218: person_id = X_person_id;
219:
220: RETURN ( X_person_name );

Line 1715: -- This Function Can also be used whenever pa_employees is not scanned by index and we want to force index scan on pa_employees view.

1711: -- ==========================================================================
1712: -- FUNCTION GetPersonInfo : Used only in the view PA_PROJECT_PLAYERS_V
1713: -- Returns the requested data in l_data. Returns 'NOT_FOUND' when no records
1714: -- found or invalid l_data
1715: -- This Function Can also be used whenever pa_employees is not scanned by index and we want to force index scan on pa_employees view.
1716: -- ==========================================================================
1717:
1718: FUNCTION GetPersonInfo( p_person_id IN per_all_people_f.person_id%TYPE,
1719: p_data IN VARCHAR2 DEFAULT 'PERSON_ID') RETURN VARCHAR2

Line 1737: from pa_employees where person_id = p_person_id;

1733: , L_PERSON_LAST_NAME
1734: , L_PERSON_FIRST_NAME
1735: , L_PERSON_MIDDLE_NAMES
1736: , L_PERSON_EMPLOYEE_NUMBER
1737: from pa_employees where person_id = p_person_id;
1738: Exception
1739: When No_Data_Found Then
1740: RETURN('NOT_FOUND');
1741: END;