DBA Data[Home] [Help]

APPS.OKE_K_SECURITY_PKG dependencies on FND_USER

Line 22: FROM fnd_user

18: -- Private Global Cursors
19: --
20: CURSOR G_Emp_CSR ( C_User_ID NUMBER ) IS
21: SELECT employee_id
22: FROM fnd_user
23: WHERE user_id = C_User_ID;
24:
25: CURSOR G_Owner_CSR ( C_K_Header_ID NUMBER
26: , C_User_ID NUMBER )

Line 138: -- Getting employee information for the given user from FND_USER.

134:
135: L_Emp_ID := NULL;
136:
137: --
138: -- Getting employee information for the given user from FND_USER.
139: -- Access information are kept by employees.
140: --
141: OPEN G_Emp_CSR ( P_User_ID );
142: FETCH G_Emp_CSR INTO L_Emp_ID;

Line 344: -- Getting employee information for the given user from FND_USER.

340:
341: L_Emp_ID := NULL;
342:
343: --
344: -- Getting employee information for the given user from FND_USER.
345: -- Access information are kept by employees.
346: --
347: OPEN G_Emp_CSR ( P_User_ID );
348: FETCH G_Emp_CSR INTO L_Emp_ID;