DBA Data[Home] [Help]

APPS.OKL_VP_PA_WF dependencies on WF_USERS

Line 61: CURSOR wf_users_csr(cp_user_id NUMBER)IS

57: x_return_status OUT NOCOPY VARCHAR2,
58: x_name OUT NOCOPY VARCHAR2,
59: x_description OUT NOCOPY VARCHAR2) IS
60:
61: CURSOR wf_users_csr(cp_user_id NUMBER)IS
62: SELECT name, display_name
63: FROM wf_users
64: WHERE orig_system_id = p_user_id
65: AND orig_system = G_WF_USER_ORIG_SYSTEM_HR;

Line 63: FROM wf_users

59: x_description OUT NOCOPY VARCHAR2) IS
60:
61: CURSOR wf_users_csr(cp_user_id NUMBER)IS
62: SELECT name, display_name
63: FROM wf_users
64: WHERE orig_system_id = p_user_id
65: AND orig_system = G_WF_USER_ORIG_SYSTEM_HR;
66:
67: CURSOR fnd_users_csr(cp_user_id NUMBER)IS

Line 73: OPEN wf_users_csr(p_user_id);

69: FROM fnd_user
70: WHERE user_id = cp_user_id;
71: BEGIN
72: x_return_status := OKL_API.G_RET_STS_SUCCESS;
73: OPEN wf_users_csr(p_user_id);
74: FETCH wf_users_csr INTO x_name, x_description;
75: CLOSE wf_users_csr;
76: IF x_name IS NULL THEN
77: OPEN fnd_users_csr(p_user_id);

Line 74: FETCH wf_users_csr INTO x_name, x_description;

70: WHERE user_id = cp_user_id;
71: BEGIN
72: x_return_status := OKL_API.G_RET_STS_SUCCESS;
73: OPEN wf_users_csr(p_user_id);
74: FETCH wf_users_csr INTO x_name, x_description;
75: CLOSE wf_users_csr;
76: IF x_name IS NULL THEN
77: OPEN fnd_users_csr(p_user_id);
78: FETCH fnd_users_csr INTO x_name, x_description;

Line 75: CLOSE wf_users_csr;

71: BEGIN
72: x_return_status := OKL_API.G_RET_STS_SUCCESS;
73: OPEN wf_users_csr(p_user_id);
74: FETCH wf_users_csr INTO x_name, x_description;
75: CLOSE wf_users_csr;
76: IF x_name IS NULL THEN
77: OPEN fnd_users_csr(p_user_id);
78: FETCH fnd_users_csr INTO x_name, x_description;
79: CLOSE fnd_users_csr;