DBA Data[Home] [Help]

APPS.OKE_UTILS dependencies on FND_GLOBAL

Line 34: -- Pre-reqs : FND_GLOBAL.INITIALIZE

30:
31:
32: --
33: -- Name : Curr_Emp_ID
34: -- Pre-reqs : FND_GLOBAL.INITIALIZE
35: -- Function : This function returns the employee ID derived from
36: -- the current user
37: --
38: --

Line 62: OR G_User_ID <> FND_GLOBAL.User_ID ) THEN

58: -- midstream, the last used USER_ID used to retrieve the
59: -- employee ID is also cached to check for mismatch
60: --
61: IF ( G_Emp_ID IS NULL
62: OR G_User_ID <> FND_GLOBAL.User_ID ) THEN
63: /*
64: OPEN csr ( FND_GLOBAL.user_id );
65: FETCH csr INTO G_Emp_ID;
66: CLOSE csr;

Line 64: OPEN csr ( FND_GLOBAL.user_id );

60: --
61: IF ( G_Emp_ID IS NULL
62: OR G_User_ID <> FND_GLOBAL.User_ID ) THEN
63: /*
64: OPEN csr ( FND_GLOBAL.user_id );
65: FETCH csr INTO G_Emp_ID;
66: CLOSE csr;
67: */
68: G_Emp_ID := FND_GLOBAL.Employee_ID;

Line 68: G_Emp_ID := FND_GLOBAL.Employee_ID;

64: OPEN csr ( FND_GLOBAL.user_id );
65: FETCH csr INTO G_Emp_ID;
66: CLOSE csr;
67: */
68: G_Emp_ID := FND_GLOBAL.Employee_ID;
69: G_User_ID := FND_GLOBAL.User_ID;
70:
71: END IF;
72:

Line 69: G_User_ID := FND_GLOBAL.User_ID;

65: FETCH csr INTO G_Emp_ID;
66: CLOSE csr;
67: */
68: G_Emp_ID := FND_GLOBAL.Employee_ID;
69: G_User_ID := FND_GLOBAL.User_ID;
70:
71: END IF;
72:
73: RETURN ( G_Emp_ID );

Line 83: -- Pre-reqs : FND_GLOBAL.INITIALIZE

79: END Curr_Emp_ID;
80:
81: --
82: -- Name : Curr_Emp_Name
83: -- Pre-reqs : FND_GLOBAL.INITIALIZE
84: -- Function : This function returns the employee name derived from
85: -- the current user
86: --
87: --

Line 111: OR G_User_ID <> FND_GLOBAL.User_ID ) THEN

107: -- midstream, the last used USER_ID used to retrieve the
108: -- employee name is also cached to check for mismatch
109: --
110: IF ( G_Emp_Name IS NULL
111: OR G_User_ID <> FND_GLOBAL.User_ID ) THEN
112:
113: OPEN csr ( Curr_Emp_ID );
114: FETCH csr INTO G_Emp_Name;
115: CLOSE csr;

Line 117: G_User_ID := FND_GLOBAL.User_ID;

113: OPEN csr ( Curr_Emp_ID );
114: FETCH csr INTO G_Emp_Name;
115: CLOSE csr;
116:
117: G_User_ID := FND_GLOBAL.User_ID;
118:
119: END IF;
120:
121: RETURN ( G_Emp_Name );