DBA Data[Home] [Help]

APPS.GMD_QMSMC dependencies on FND_USER

Line 534: SELECT user_name FROM fnd_user WHERE user_id = x_user_id;

530: FROM fnd_application
531: WHERE application_short_name = 'GMD';
532:
533: CURSOR get_user_name(x_user_id NUMBER) IS /* 4576699 */
534: SELECT user_name FROM fnd_user WHERE user_id = x_user_id;
535:
536: BEGIN
537: gmd_debug.put_line('SampleCreation WF. VERIFY_EVENT '); /* 4576699 */
538:

Line 2103: from fnd_user

2099: ELSE
2100: IF (Approver.person_id is null) THEN
2101: select user_name
2102: into l_user
2103: from fnd_user
2104: where user_id = Approver.user_id;
2105: ELSE
2106: select user_name
2107: into l_user

Line 2108: from fnd_user

2104: where user_id = Approver.user_id;
2105: ELSE
2106: select user_name
2107: into l_user
2108: from fnd_user
2109: where user_id = AME_UTIL.PERSONIDTOUSERID(Approver.person_id);
2110: END IF;
2111:
2112: /* Set the User Attribute */

Line 3003: from fnd_user

2999:
3000: IF (Approver.person_id is null) THEN
3001: select user_name
3002: into l_user
3003: from fnd_user
3004: where user_id = Approver.user_id;
3005: ELSE
3006: select user_name
3007: into l_user

Line 3008: from fnd_user

3004: where user_id = Approver.user_id;
3005: ELSE
3006: select user_name
3007: into l_user
3008: from fnd_user
3009: where user_id =
3010: AME_UTIL.PERSONIDTOUSERID(Approver.person_id);
3011: END IF;
3012: