DBA Data[Home] [Help]

APPS.OE_OE_FORM_LINE dependencies on OE_DELAYED_REQUESTS_PVT

Line 2179: OE_DELAYED_REQUESTS_PVT.Process_Request_for_Reqtype

2175: END IF;
2176: --bug 2438466 begin
2177: IF l_return_status = FND_API.G_RET_STS_SUCCESS THEN -- Fix for bug3546224
2178: IF p_attr_id = OE_Line_Util.G_RETURN_CONTEXT THEN
2179: OE_DELAYED_REQUESTS_PVT.Process_Request_for_Reqtype
2180: (p_request_type =>OE_GLOBALS.G_COPY_ADJUSTMENTS
2181: ,p_delete => FND_API.G_TRUE
2182: ,x_return_status => l_return_status
2183: );

Line 2445: OE_DELAYED_REQUESTS_PVT.Process_Request_for_Reqtype

2441:
2442: -- bug 1834260, process delayed request for G_COPY_ADJUSTMENTS
2443: -- before processing for G_PRICE_LINE.
2444: IF OE_GLOBALS.G_DEFER_PRICING='N' THEN
2445: OE_DELAYED_REQUESTS_PVT.Process_Request_for_Reqtype
2446: (p_request_type =>OE_GLOBALS.G_COPY_ADJUSTMENTS
2447: ,p_delete => FND_API.G_TRUE
2448: ,x_return_status => l_return_status
2449: );

Line 2458: OE_DELAYED_REQUESTS_PVT.Process_Request_for_Reqtype

2454: END IF;
2455: END IF;
2456:
2457: IF OE_GLOBALS.G_DEFER_PRICING='N' THEN
2458: OE_DELAYED_REQUESTS_PVT.Process_Request_for_Reqtype
2459: (p_request_type =>OE_GLOBALS.G_PRICE_LINE
2460: ,p_delete => FND_API.G_TRUE
2461: ,x_return_status => l_return_status
2462: );

Line 2473: OE_DELAYED_REQUESTS_PVT.Process_Request_for_Reqtype

2469:
2470: IF OE_GLOBALS.G_DEFER_PRICING='N' THEN
2471:
2472: IF nvl(FND_PROFILE.VALUE('ONT_DELAY_TAX_CALC'), 'N') = 'N' THEN --TaxER
2473: OE_DELAYED_REQUESTS_PVT.Process_Request_for_Reqtype
2474: (p_request_type =>OE_GLOBALS.G_TAX_LINE
2475: ,p_delete => FND_API.G_TRUE
2476: ,x_return_status => l_return_status
2477: );

Line 2493: OE_DELAYED_REQUESTS_PVT.Process_Request_for_Reqtype

2489: oe_debug_pub.add( 'CALLING TO PROCESS DELAYED REQUEST FOR COMMITMENT!' , 1 ) ;
2490: END IF;
2491:
2492: IF OE_GLOBALS.G_DEFER_PRICING='N' THEN
2493: OE_DELAYED_REQUESTS_PVT.Process_Request_for_Reqtype
2494: (p_request_type =>OE_GLOBALS.G_CALCULATE_COMMITMENT
2495: ,p_delete => FND_API.G_TRUE
2496: ,x_return_status => l_return_status
2497: );

Line 2505: OE_DELAYED_REQUESTS_PVT.Process_Request_for_Reqtype

2501: RAISE FND_API.G_EXC_ERROR;
2502: END IF;
2503:
2504: --bug 3560198
2505: OE_DELAYED_REQUESTS_PVT.Process_Request_for_Reqtype
2506: (p_request_type =>OE_GLOBALS.G_UPDATE_COMMITMENT_APPLIED
2507: ,p_delete => FND_API.G_TRUE
2508: ,x_return_status => l_return_status
2509: );

Line 6259: IF NOT OE_Delayed_Requests_Pvt.Check_For_Request

6255: oe_debug_pub.add('Roll version global is set');
6256: oe_debug_pub.add('Header ID: '||l_header_id);
6257: end if;
6258:
6259: IF NOT OE_Delayed_Requests_Pvt.Check_For_Request
6260: (p_entity_code => OE_GLOBALS.G_ENTITY_ALL
6261: ,p_entity_id => l_header_id
6262: ,p_request_type => OE_GLOBALS.G_VERSION_AUDIT
6263: )

Line 6274: OE_DELAYED_REQUESTS_PVT.Delete_Reqs_for_Deleted_Entity(

6270: END IF;
6271:
6272: END IF;
6273:
6274: OE_DELAYED_REQUESTS_PVT.Delete_Reqs_for_Deleted_Entity(
6275: p_entity_code => OE_GLOBALS.G_ENTITY_LINE
6276: ,p_entity_id => p_line_id
6277: -- Bug 3800577
6278: -- Also delete requests logged by this entity

Line 6639: oe_delayed_requests_pvt.delete_request(

6635: This is no longer required, since G_PRICE_ADJ request
6636: is logged against LINE entity now
6637:
6638: oe_debug_pub.add('delete the request logged for this line too');
6639: oe_delayed_requests_pvt.delete_request(
6640: p_entity_code =>OE_GLOBALS.G_ENTITY_LINE_ADJ,
6641: p_entity_id => x_line_id,
6642: p_request_type => OE_GLOBALS.G_PRICE_ADJ,
6643: x_return_status => l_return_status);