DBA Data[Home] [Help]

APPS.PQH_BDGT_REALLOC_UTILITY dependencies on HR_MULTI_MESSAGE

Line 810: hr_multi_message.enable_message_list;

806: l_pool_rec csr_pool_dtls%ROWTYPE;
807: BEGIN
808: hr_utility.set_location('Entering '||l_proc,10);
809: --calling routine for enabling multi-message detection --kgowripe
810: hr_multi_message.enable_message_list;
811: --
812: OPEN csr_pool_dtls;
813: FETCH csr_pool_dtls INTO l_pool_rec;
814: CLOSE csr_pool_dtls;

Line 863: when hr_multi_message.error_message_exist then

859: --
860: RETURN l_return;
861: Exception
862: --added by kgowripe
863: when hr_multi_message.error_message_exist then
864: Null;
865:
866: When Others THEN
867:

Line 1097: hr_multi_message.enable_message_list;

1093: l_pool_rec csr_pool_dtls%ROWTYPE;
1094: BEGIN
1095: hr_utility.set_location('Entering '||l_proc,10);
1096: --added by kgowripe
1097: hr_multi_message.enable_message_list;
1098: --end changes by kgowripe
1099: OPEN csr_pool_dtls;
1100: FETCH csr_pool_dtls INTO l_pool_rec;
1101: CLOSE csr_pool_dtls;

Line 1121: when hr_multi_message.error_message_exist then

1117: --
1118: RETURN l_return;
1119: Exception
1120: --added by kgowripe
1121: when hr_multi_message.error_message_exist then
1122: Null;
1123:
1124: When Others THEN
1125:

Line 1290: hr_multi_message.enable_message_list;

1286:
1287: BEGIN
1288: hr_utility.set_location('Entering '||l_proc,10);
1289: --added by kgowripe
1290: hr_multi_message.enable_message_list;
1291: --end changes by kgowripe
1292: OPEN csr_pool_dtls;
1293: FETCH csr_pool_dtls INTO l_pool_rec;
1294: CLOSE csr_pool_dtls;

Line 1309: when hr_multi_message.error_message_exist then

1305: ,p_wf_transaction_category_id => l_pool_rec.wf_transaction_category_id);
1306: end if;
1307: Exception
1308: --added by kgowripe
1309: when hr_multi_message.error_message_exist then
1310: Null;
1311: End update_folder_approval_status;
1312: PROCEDURE bgt_dummy_folder_delete(p_business_group_id IN number)
1313: is

Line 1333: hr_multi_message.enable_message_list;

1329: BEGIN
1330:
1331: hr_utility.set_location(' Entering:' || l_proc,10);
1332: --added by kgowripe
1333: hr_multi_message.enable_message_list;
1334: --end changes by kgowripe
1335: Open csr_approval_status_T_folders;
1336: loop
1337: hr_utility.set_location('Folder Id :' || l_folder_id ,20);

Line 1514: hr_multi_message.enable_message_list;

1510: l_result varchar2(100);
1511: BEGIN
1512: --
1513: -- Enable multi-messaging
1514: hr_multi_message.enable_message_list;
1515: --
1516: pqh_workflow.valid_user_opening(
1517: p_business_group_id => p_business_group_id,
1518: p_short_name => p_short_name,

Line 1527: if (p_status_flag <> 0 and hr_multi_message.exception_add ) then

1523: p_role_id => p_role_id,
1524: p_role_template_id => p_role_template_id,
1525: p_status_flag => p_status_flag );
1526:
1527: if (p_status_flag <> 0 and hr_multi_message.exception_add ) then
1528: hr_utility.raise_error;
1529: end if;
1530:
1531: -- Get the return status and disable multi-messaging

Line 1532: l_result := hr_multi_message.get_return_status_disable;

1528: hr_utility.raise_error;
1529: end if;
1530:
1531: -- Get the return status and disable multi-messaging
1532: l_result := hr_multi_message.get_return_status_disable;
1533:
1534:
1535: exception
1536: when hr_multi_message.error_message_exist then

Line 1536: when hr_multi_message.error_message_exist then

1532: l_result := hr_multi_message.get_return_status_disable;
1533:
1534:
1535: exception
1536: when hr_multi_message.error_message_exist then
1537: l_result := hr_multi_message.get_return_status_disable;
1538: when others then
1539: raise;
1540:

Line 1537: l_result := hr_multi_message.get_return_status_disable;

1533:
1534:
1535: exception
1536: when hr_multi_message.error_message_exist then
1537: l_result := hr_multi_message.get_return_status_disable;
1538: when others then
1539: raise;
1540:
1541: END valid_user_opening;