DBA Data[Home] [Help]

APPS.OE_BLANKET_FORM_CONTROL dependencies on OE_DELAYED_REQUESTS_PVT

Line 1271: I := oe_delayed_requests_pvt.g_delayed_requests.first;

1267: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN
1268: RAISE FND_API.G_EXC_ERROR;
1269: END IF;
1270: END IF;
1271: I := oe_delayed_requests_pvt.g_delayed_requests.first;
1272: WHILE I IS NOT NULL LOOP
1273: l_request_rec := oe_delayed_requests_pvt.g_delayed_requests(I);
1274: if l_request_rec.entity_id=G_header_cache_rec(ctr).header_id
1275: then EXIT;

Line 1273: l_request_rec := oe_delayed_requests_pvt.g_delayed_requests(I);

1269: END IF;
1270: END IF;
1271: I := oe_delayed_requests_pvt.g_delayed_requests.first;
1272: WHILE I IS NOT NULL LOOP
1273: l_request_rec := oe_delayed_requests_pvt.g_delayed_requests(I);
1274: if l_request_rec.entity_id=G_header_cache_rec(ctr).header_id
1275: then EXIT;
1276: end if;
1277: I := oe_delayed_requests_pvt.g_delayed_requests.next(I);

Line 1277: I := oe_delayed_requests_pvt.g_delayed_requests.next(I);

1273: l_request_rec := oe_delayed_requests_pvt.g_delayed_requests(I);
1274: if l_request_rec.entity_id=G_header_cache_rec(ctr).header_id
1275: then EXIT;
1276: end if;
1277: I := oe_delayed_requests_pvt.g_delayed_requests.next(I);
1278: END LOOP;
1279: IF I IS NULL THEN
1280: OE_Blanket_Util.Validate_Entity(G_header_cache_rec(ctr),
1281: l_dummy_header_rec,

Line 1305: I := oe_delayed_requests_pvt.g_delayed_requests.first;

1301: ELSIF G_line_cache_rec(ctr).operation = OE_GLOBALS.G_OPR_UPDATE
1302: THEN
1303: l_dummy_line_rec := OE_Blanket_util.Query_Row(p_line_id => G_LIne_cache_rec(ctr).line_id);
1304: END IF;
1305: I := oe_delayed_requests_pvt.g_delayed_requests.first;
1306: WHILE I IS NOT NULL LOOP
1307: l_request_rec := oe_delayed_requests_pvt.g_delayed_requests(I);
1308: if l_request_rec.entity_id=G_LIne_cache_rec(ctr).line_id
1309: then EXIT;

Line 1307: l_request_rec := oe_delayed_requests_pvt.g_delayed_requests(I);

1303: l_dummy_line_rec := OE_Blanket_util.Query_Row(p_line_id => G_LIne_cache_rec(ctr).line_id);
1304: END IF;
1305: I := oe_delayed_requests_pvt.g_delayed_requests.first;
1306: WHILE I IS NOT NULL LOOP
1307: l_request_rec := oe_delayed_requests_pvt.g_delayed_requests(I);
1308: if l_request_rec.entity_id=G_LIne_cache_rec(ctr).line_id
1309: then EXIT;
1310: end if;
1311: I := oe_delayed_requests_pvt.g_delayed_requests.next(I);

Line 1311: I := oe_delayed_requests_pvt.g_delayed_requests.next(I);

1307: l_request_rec := oe_delayed_requests_pvt.g_delayed_requests(I);
1308: if l_request_rec.entity_id=G_LIne_cache_rec(ctr).line_id
1309: then EXIT;
1310: end if;
1311: I := oe_delayed_requests_pvt.g_delayed_requests.next(I);
1312: END LOOP;
1313: IF I IS NULL THEN
1314: OE_Blanket_Util.Validate_Entity(G_line_cache_rec(ctr),
1315: l_dummy_line_rec,

Line 1869: OE_DELAYED_REQUESTS_PVT.Delete_Reqs_for_Deleted_Entity(

1865:
1866: If delete_flag = 'Y' then
1867: If found_flag = 'Y' then
1868: G_Header_Cache_Rec(ctr) := NULL;
1869: OE_DELAYED_REQUESTS_PVT.Delete_Reqs_for_Deleted_Entity(
1870: p_entity_code => OE_BLANKET_PUB.G_ENTITY_BLANKET_HEADER
1871: ,p_entity_id => p_x_header_rec.header_id
1872: , p_delete_against => FALSE
1873: ,x_return_status => l_return_status);

Line 1923: OE_DELAYED_REQUESTS_PVT.Delete_Reqs_for_Deleted_Entity(

1919:
1920: If delete_flag = 'Y' then
1921:
1922: If found_flag = 'Y' then
1923: OE_DELAYED_REQUESTS_PVT.Delete_Reqs_for_Deleted_Entity(
1924: p_entity_code => OE_BLANKET_PUB.G_ENTITY_BLANKET_LINE
1925: ,p_entity_id => p_x_Line_rec.Line_id
1926: , p_delete_against => FALSE
1927: ,x_return_status => l_return_status);