DBA Data[Home] [Help]

APPS.OE_OE_FORM_LINE dependencies on OE_DELAYED_REQUESTS_PVT

Line 2119: OE_DELAYED_REQUESTS_PVT.Process_Request_for_Reqtype

2115: END IF;
2116: --bug 2438466 begin
2117: IF l_return_status = FND_API.G_RET_STS_SUCCESS THEN -- Fix for bug3546224
2118: IF p_attr_id = OE_Line_Util.G_RETURN_CONTEXT THEN
2119: OE_DELAYED_REQUESTS_PVT.Process_Request_for_Reqtype
2120: (p_request_type =>OE_GLOBALS.G_COPY_ADJUSTMENTS
2121: ,p_delete => FND_API.G_TRUE
2122: ,x_return_status => l_return_status
2123: );

Line 2385: OE_DELAYED_REQUESTS_PVT.Process_Request_for_Reqtype

2381:
2382: -- bug 1834260, process delayed request for G_COPY_ADJUSTMENTS
2383: -- before processing for G_PRICE_LINE.
2384: IF OE_GLOBALS.G_DEFER_PRICING='N' THEN
2385: OE_DELAYED_REQUESTS_PVT.Process_Request_for_Reqtype
2386: (p_request_type =>OE_GLOBALS.G_COPY_ADJUSTMENTS
2387: ,p_delete => FND_API.G_TRUE
2388: ,x_return_status => l_return_status
2389: );

Line 2398: OE_DELAYED_REQUESTS_PVT.Process_Request_for_Reqtype

2394: END IF;
2395: END IF;
2396:
2397: IF OE_GLOBALS.G_DEFER_PRICING='N' THEN
2398: OE_DELAYED_REQUESTS_PVT.Process_Request_for_Reqtype
2399: (p_request_type =>OE_GLOBALS.G_PRICE_LINE
2400: ,p_delete => FND_API.G_TRUE
2401: ,x_return_status => l_return_status
2402: );

Line 2411: OE_DELAYED_REQUESTS_PVT.Process_Request_for_Reqtype

2407: END IF;
2408: END IF;
2409:
2410: IF OE_GLOBALS.G_DEFER_PRICING='N' THEN
2411: OE_DELAYED_REQUESTS_PVT.Process_Request_for_Reqtype
2412: (p_request_type =>OE_GLOBALS.G_TAX_LINE
2413: ,p_delete => FND_API.G_TRUE
2414: ,x_return_status => l_return_status
2415: );

Line 2429: OE_DELAYED_REQUESTS_PVT.Process_Request_for_Reqtype

2425: oe_debug_pub.add( 'CALLING TO PROCESS DELAYED REQUEST FOR COMMITMENT!' , 1 ) ;
2426: END IF;
2427:
2428: IF OE_GLOBALS.G_DEFER_PRICING='N' THEN
2429: OE_DELAYED_REQUESTS_PVT.Process_Request_for_Reqtype
2430: (p_request_type =>OE_GLOBALS.G_CALCULATE_COMMITMENT
2431: ,p_delete => FND_API.G_TRUE
2432: ,x_return_status => l_return_status
2433: );

Line 2441: OE_DELAYED_REQUESTS_PVT.Process_Request_for_Reqtype

2437: RAISE FND_API.G_EXC_ERROR;
2438: END IF;
2439:
2440: --bug 3560198
2441: OE_DELAYED_REQUESTS_PVT.Process_Request_for_Reqtype
2442: (p_request_type =>OE_GLOBALS.G_UPDATE_COMMITMENT_APPLIED
2443: ,p_delete => FND_API.G_TRUE
2444: ,x_return_status => l_return_status
2445: );

Line 5911: IF NOT OE_Delayed_Requests_Pvt.Check_For_Request

5907: oe_debug_pub.add('Roll version global is set');
5908: oe_debug_pub.add('Header ID: '||l_header_id);
5909: end if;
5910:
5911: IF NOT OE_Delayed_Requests_Pvt.Check_For_Request
5912: (p_entity_code => OE_GLOBALS.G_ENTITY_ALL
5913: ,p_entity_id => l_header_id
5914: ,p_request_type => OE_GLOBALS.G_VERSION_AUDIT
5915: )

Line 5926: OE_DELAYED_REQUESTS_PVT.Delete_Reqs_for_Deleted_Entity(

5922: END IF;
5923:
5924: END IF;
5925:
5926: OE_DELAYED_REQUESTS_PVT.Delete_Reqs_for_Deleted_Entity(
5927: p_entity_code => OE_GLOBALS.G_ENTITY_LINE
5928: ,p_entity_id => p_line_id
5929: -- Bug 3800577
5930: -- Also delete requests logged by this entity

Line 6247: oe_delayed_requests_pvt.delete_request(

6243: This is no longer required, since G_PRICE_ADJ request
6244: is logged against LINE entity now
6245:
6246: oe_debug_pub.add('delete the request logged for this line too');
6247: oe_delayed_requests_pvt.delete_request(
6248: p_entity_code =>OE_GLOBALS.G_ENTITY_LINE_ADJ,
6249: p_entity_id => x_line_id,
6250: p_request_type => OE_GLOBALS.G_PRICE_ADJ,
6251: x_return_status => l_return_status);