DBA Data[Home] [Help]

APPS.OTA_ENROLL_IN_TRAINING_SS dependencies on HR_UTILITY

Line 1033: hr_utility.set_message (810,'OTA_13667_WEB_STATUS_NOT_SEEDE');--Changed for 6819558.

1029: --
1030: -- Seed a technical message so that if the calling procedure decides
1031: -- that it is an error having nothing returned, it can use it.
1032: --
1033: hr_utility.set_message (810,'OTA_13667_WEB_STATUS_NOT_SEEDE');--Changed for 6819558.
1034: hr_utility.raise_error;
1035: --
1036: RETURN l_booking_status_row;
1037: --

Line 1034: hr_utility.raise_error;

1030: -- Seed a technical message so that if the calling procedure decides
1031: -- that it is an error having nothing returned, it can use it.
1032: --
1033: hr_utility.set_message (810,'OTA_13667_WEB_STATUS_NOT_SEEDE');--Changed for 6819558.
1034: hr_utility.raise_error;
1035: --
1036: RETURN l_booking_status_row;
1037: --
1038: ELSE

Line 1134: hr_utility.set_location('Entering:'||l_proc, 5);

1130: l_no number := 0;
1131: BEGIN
1132:
1133: --
1134: hr_utility.set_location('Entering:'||l_proc, 5);
1135: --
1136: For a in csr_cost loop
1137: l_no := l_no+1;
1138: p_cost_alloc_keyflex_id :=a.cost_allocation_keyflex_id;

Line 1155: hr_utility.set_location(' Leaving:'||l_proc, 10);

1151: p_organization_id :=a.organization_id ;
1152: end loop;
1153: end if;
1154: --
1155: hr_utility.set_location(' Leaving:'||l_proc, 10);
1156:
1157: END check_cost_center;
1158:
1159: --

Line 1217: hr_utility.set_location('Entering:'||l_proc, 5);

1213: WHERE
1214: user_id = l_current_user_id ;
1215:
1216: BEGIN
1217: hr_utility.set_location('Entering:'||l_proc, 5);
1218:
1219: OPEN C_USER;
1220: FETCH C_USER INTO l_creator_person_id;
1221: CLOSE C_USER;

Line 1223: hr_utility.set_location('Entering:'||l_proc, 10);

1219: OPEN C_USER;
1220: FETCH C_USER INTO l_creator_person_id;
1221: CLOSE C_USER;
1222:
1223: hr_utility.set_location('Entering:'||l_proc, 10);
1224: -- Get the next item key from the sequence
1225: select hr_workflow_item_key_s.nextval
1226: into l_item_key
1227: from sys.dual;

Line 1245: hr_utility.set_location('leaving:'||l_proc, 20);

1241:
1242: EXCEPTION
1243: WHEN OTHERS THEN
1244: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1245: hr_utility.set_location('leaving:'||l_proc, 20);
1246:
1247:
1248: End create_enroll_wf_process;
1249:

Line 1810: hr_utility.set_location('Entering:'||l_proc, 5);

1806: l_proc varchar2(72) := g_package||'check_enrollment_creation';
1807:
1808:
1809: BEGIN
1810: hr_utility.set_location('Entering:'||l_proc, 5);
1811: IF (funcmode = 'RUN') THEN
1812: l_booking_id := wf_engine.GetItemAttrNUMBER(itemtype => itemtype
1813: ,itemkey => itemkey
1814: ,aname => 'BOOKING_ID');

Line 1846: hr_utility.set_location(' Leaving:'||l_proc, 10);

1842: wf_core.context('OTA_WF', 'Check_Creation',
1843: itemtype, itemkey, to_char(actid), funcmode);
1844: RAISE;
1845:
1846: hr_utility.set_location(' Leaving:'||l_proc, 10);
1847: END;
1848:
1849:
1850: --

Line 1896: hr_utility.set_location('Entering:'||l_proc, 5);

1892: AND item_type = p_item_type
1893: AND item_key = p_item_key;
1894:
1895: BEGIN
1896: hr_utility.set_location('Entering:'||l_proc, 5);
1897: OPEN line_wf;
1898: fetch line_wf into l_exist;
1899: if line_wf%found then
1900: l_return := True;

Line 1905: hr_utility.set_location('Leaving:'||l_proc, 10);

1901: end if;
1902: CLOSE line_wf;
1903: Return(l_return);
1904:
1905: hr_utility.set_location('Leaving:'||l_proc, 10);
1906: END check_wf_status;
1907:
1908: --
1909: -- -----------------------------------------------------------