DBA Data[Home] [Help]

APPS.M4U_SETUP_PACKAGE dependencies on HR_LOCATION_API

Line 457: cln_debug_pub.Add('---- Call HR_LOCATION_API.create_location ----', 1);

453:
454: IF NOT l_record_found THEN
455: IF (l_Debug_Level <= 1) THEN
456: cln_debug_pub.Add('---- Setup HR Location Values in DB ----', 1);
457: cln_debug_pub.Add('---- Call HR_LOCATION_API.create_location ----', 1);
458: END IF;
459:
460: FND_MESSAGE.SET_NAME('CLN','M4U_HR_API_FAILED');
461: FND_MESSAGE.SET_TOKEN('PARAM','Create');

Line 464: HR_LOCATION_API.create_location(

460: FND_MESSAGE.SET_NAME('CLN','M4U_HR_API_FAILED');
461: FND_MESSAGE.SET_TOKEN('PARAM','Create');
462: l_msg_data := FND_MESSAGE.GET;
463:
464: HR_LOCATION_API.create_location(
465: p_effective_date => sysdate,
466: p_language_code => userenv('LANG'),
467: p_location_code => l_location_code,
468: p_description => l_description,

Line 478: cln_debug_pub.Add('---- HR_LOCATION_API.create_location returns Normal----', 1);

474:
475: l_msg_data := 'HR Location created with success';
476:
477: IF (l_Debug_Level <= 1) THEN
478: cln_debug_pub.Add('---- HR_LOCATION_API.create_location returns Normal----', 1);
479: cln_debug_pub.Add('Location Id -'||l_location_id, 1);
480: cln_debug_pub.Add('Object Version No -'||l_obj_ver_num, 1);
481: END IF;
482: ELSE

Line 485: cln_debug_pub.Add('---- Call HR_LOCATION_API.update_location ----', 1);

481: END IF;
482: ELSE
483: IF (l_Debug_Level <= 1) THEN
484: cln_debug_pub.Add('---- Update HR Location Values in DB ----', 1);
485: cln_debug_pub.Add('---- Call HR_LOCATION_API.update_location ----', 1);
486: END IF;
487:
488: FND_MESSAGE.SET_NAME('CLN','M4U_HR_API_FAILED');
489: FND_MESSAGE.SET_TOKEN('PARAM','Update');

Line 492: HR_LOCATION_API.update_location(

488: FND_MESSAGE.SET_NAME('CLN','M4U_HR_API_FAILED');
489: FND_MESSAGE.SET_TOKEN('PARAM','Update');
490: l_msg_data := FND_MESSAGE.GET;
491:
492: HR_LOCATION_API.update_location(
493: p_effective_date => sysdate,
494: p_language_code => userenv('LANG'),
495: p_location_code => l_location_code,
496: p_description => l_description,

Line 506: cln_debug_pub.Add('---- HR_LOCATION_API.update_location returns Normal----', 1);

502:
503: l_msg_data := 'HR Location updated with success';
504:
505: IF (l_Debug_Level <= 1) THEN
506: cln_debug_pub.Add('---- HR_LOCATION_API.update_location returns Normal----', 1);
507: cln_debug_pub.Add('Location Id -'||l_location_id, 1);
508: cln_debug_pub.Add('Object Version No -'||l_obj_ver_num, 1);
509: END IF;
510: END IF;