DBA Data[Home] [Help]

APPS.OTA_TRNG_ENROLL_SS dependencies on HR_UTILITY

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

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

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

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

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

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

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

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

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

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

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

1778: l_proc varchar2(72) := g_package||'check_enrollment_creation';
1779:
1780:
1781: BEGIN
1782: hr_utility.set_location('Entering:'||l_proc, 5);
1783: IF (funcmode = 'RUN') THEN
1784: l_booking_id := wf_engine.GetItemAttrNUMBER(itemtype => itemtype
1785: ,itemkey => itemkey
1786: ,aname => 'BOOKING_ID');

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

1814: wf_core.context('OTA_WF', 'Check_Creation',
1815: itemtype, itemkey, to_char(actid), funcmode);
1816: RAISE;
1817:
1818: hr_utility.set_location(' Leaving:'||l_proc, 10);
1819: END;
1820:
1821:
1822: --

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

1864: AND item_type = p_item_type
1865: AND item_key = p_item_key;
1866:
1867: BEGIN
1868: hr_utility.set_location('Entering:'||l_proc, 5);
1869: OPEN line_wf;
1870: fetch line_wf into l_exist;
1871: if line_wf%found then
1872: l_return := True;

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

1873: end if;
1874: CLOSE line_wf;
1875: Return(l_return);
1876:
1877: hr_utility.set_location('Leaving:'||l_proc, 10);
1878: END check_wf_status;
1879:
1880: --
1881: -- -----------------------------------------------------------