DBA Data[Home] [Help]

APPS.OTA_ENROLL_IN_TRAINING_SS dependencies on FND_USER

Line 112: FND_USER

108: CURSOR csr_user(p_owner_id in number) IS
109: SELECT
110: USER_NAME
111: FROM
112: FND_USER
113: WHERE
114: Employee_id = p_owner_id ;
115:
116: CURSOR csr_activity(p_activity_version_id number )

Line 178: l_owner_username fnd_user.user_name%type;

174: l_course_end_date ota_events.course_end_date%type;
175: l_owner_id ota_events.owner_id%type;
176: l_activity_version_id ota_activity_versions.activity_version_id%type;
177: l_version_name ota_activity_versions.version_name%type;
178: l_owner_username fnd_user.user_name%type;
179: --Bug#2197997 commenting out completeactivity call.
180: -- l_return boolean;
181: l_offering_id ota_events.offering_id%type;
182: l_booking_status_used varchar2(20);

Line 1212: FND_USER

1208: CURSOR C_USER IS
1209: SELECT
1210: EMPLOYEE_ID
1211: FROM
1212: FND_USER
1213: WHERE
1214: user_id = l_current_user_id ;
1215:
1216: BEGIN

Line 1924: FND_USER USR

1920: CURSOR user_name(p_event_id OTA_EVENTS.event_id%TYPE) IS
1921: SELECT usr.user_name,
1922: evt.offering_id
1923: FROM OTA_EVENTS evt,
1924: FND_USER USR
1925: WHERE evt.event_id = p_event_id and
1926: usr.employee_id = evt.owner_id;
1927:
1928:

Line 1941: l_user_name FND_USER.USER_NAME%TYPE;

1937: l_api_result VARCHAR2(4000);
1938: l_api_from VARCHAR2(4000);
1939: l_api_to VARCHAR2(4000);
1940: l_event_id NUMBER;
1941: l_user_name FND_USER.USER_NAME%TYPE;
1942: l_offering_id ota_events.offering_id%type;
1943: l_booking_id ota_delegate_bookings.booking_id%type;
1944: l_version_name ota_activity_versions.version_name%type;
1945: l_notification_text varchar2(2000);