DBA Data[Home] [Help]

APPS.AHL_UMP_NONROUTINES_PVT dependencies on PER_PEOPLE_X

Line 3064: -- Using per_people_x here, since it already has the inactive person check on per_people_f

3060: party_name = p_x_nonroutine_rec.contact_name;
3061: ELSIF (p_x_nonroutine_rec.contact_type = 'EMPLOYEE')
3062: THEN
3063: -- Bug #4918818: APPSPERF fix
3064: -- Using per_people_x here, since it already has the inactive person check on per_people_f
3065: SELECT person_id
3066: INTO p_x_nonroutine_rec.contact_id
3067: FROM per_people_x
3068: WHERE full_name = p_x_nonroutine_rec.contact_name;

Line 3067: FROM per_people_x

3063: -- Bug #4918818: APPSPERF fix
3064: -- Using per_people_x here, since it already has the inactive person check on per_people_f
3065: SELECT person_id
3066: INTO p_x_nonroutine_rec.contact_id
3067: FROM per_people_x
3068: WHERE full_name = p_x_nonroutine_rec.contact_name;
3069: ELSE
3070: FND_MESSAGE.SET_NAME(G_APP_NAME, 'AHL_UMP_NR_CONT_TYPE_INV');
3071: FND_MESSAGE.SET_TOKEN('CONT_TYPE', p_x_nonroutine_rec.contact_type);