DBA Data[Home] [Help]

APPS.OE_ORDER_PRICE_PVT dependencies on OE_DELAYED_REQUESTS_PVT

Line 3093: OE_delayed_requests_Pvt.log_request(

3089: l_commt_tax_flag := 'N' ; --bug 2505961
3090: -- lkxu, make changes for bug 1581188
3091: IF (OE_GLOBALS.G_UI_FLAG)
3092: AND nvl(FND_PROFILE.VALUE('ONT_DELAY_TAX_CALC'), 'N') = 'N' THEN --TaxER
3093: OE_delayed_requests_Pvt.log_request(
3094: p_entity_code => OE_GLOBALS.G_ENTITY_LINE,
3095: p_entity_id => update_line.line_id,
3096: p_requesting_entity_code => OE_GLOBALS.G_ENTITY_LINE,
3097: p_requesting_entity_id => update_line.line_id,

Line 3102: OE_delayed_requests_Pvt.log_request(

3098: p_request_type => OE_GLOBALS.g_tax_line,
3099: x_return_status => l_return_status);
3100: ELSE
3101: -- added p_param1 for bug 1786533.
3102: OE_delayed_requests_Pvt.log_request(
3103: p_entity_code => OE_GLOBALS.G_ENTITY_ALL,
3104: p_entity_id => update_line.line_id,
3105: p_requesting_entity_code => OE_GLOBALS.G_ENTITY_LINE,
3106: p_requesting_entity_id => update_line.line_id,

Line 3151: OE_delayed_requests_Pvt.log_request

3147: IF l_debug_level > 0 THEN
3148: oe_debug_pub.add( 'LOGGING DELAYED REQUEST FOR VERIFY PAYMENT' ) ;
3149: END IF;
3150: --
3151: OE_delayed_requests_Pvt.log_request
3152: (p_entity_code => OE_GLOBALS.G_ENTITY_ALL,
3153: p_entity_id => oe_order_pub.g_hdr.header_id,
3154: p_requesting_entity_code => OE_GLOBALS.G_ENTITY_LINE,
3155: p_requesting_entity_id => update_line.line_id,

Line 3173: OE_Delayed_Requests_Pvt.Log_Request(

3169: IF l_commitment_sequencing AND update_line.commitment_id IS NOT NULL THEN
3170: IF l_debug_level > 0 THEN
3171: oe_debug_pub.add( 'LOGGING DELAYED REQUEST FOR COMMITMENT.' , 2 ) ;
3172: END IF;
3173: OE_Delayed_Requests_Pvt.Log_Request(
3174: p_entity_code => OE_GLOBALS.G_ENTITY_LINE,
3175: p_entity_id => update_line.line_id,
3176: p_requesting_entity_code => OE_GLOBALS.G_ENTITY_LINE,
3177: p_requesting_entity_id => update_line.line_id,

Line 3214: OE_Delayed_Requests_Pvt.Log_Request

3210: --for bug 3108881
3211: --request should be logged only for Sales order and not for quotes
3212: IF nvl(update_line.transaction_phase_code,'F') = 'F' THEN
3213:
3214: OE_Delayed_Requests_Pvt.Log_Request
3215: (p_entity_code => OE_GLOBALS.G_ENTITY_ALL
3216: ,p_entity_id => update_line.line_id
3217: ,p_requesting_entity_code => OE_GLOBALS.G_ENTITY_LINE
3218: ,p_requesting_entity_id => update_line.line_id

Line 3248: OE_Delayed_Requests_Pvt.Log_Request

3244: RAISE FND_API.G_EXC_ERROR;
3245: END IF;
3246:
3247: IF update_line.line_set_id IS NOT NULL THEN
3248: OE_Delayed_Requests_Pvt.Log_Request
3249: (p_entity_code => OE_GLOBALS.G_ENTITY_ALL
3250: ,p_entity_id => update_line.line_set_id
3251: ,p_requesting_entity_code => OE_GLOBALS.G_ENTITY_LINE
3252: ,p_requesting_entity_id => update_line.line_id

Line 3287: oe_delayed_requests_pvt.log_request(

3283: IF l_log_mrg_hold_req = 'Y' THEN
3284: IF l_debug_level > 0 THEN
3285: oe_debug_pub.add( 'LOGGING DELAYED REQUEST FOR MARGIN HOLD FOR BOOKED HEADER_ID:'||l_header_id ) ;
3286: END IF;
3287: oe_delayed_requests_pvt.log_request(
3288: p_entity_code => OE_GLOBALS.G_ENTITY_ALL,
3289: p_entity_id => l_header_id,
3290:
3291: p_requesting_entity_code => OE_GLOBALS.G_ENTITY_ALL,

Line 3316: OE_DELAYED_REQUESTS_PVT.LOG_REQUEST(

3312: IF (l_order_adj_changed_flag = 'C') THEN
3313: IF l_debug_level > 0 THEN
3314: oe_debug_pub.add( 'LOGGING REQUEST TO UPDATE ALL LINES FOR HEADER LEVEL ADJUSTMENT.' , 1 ) ;
3315: END IF;
3316: OE_DELAYED_REQUESTS_PVT.LOG_REQUEST(
3317: p_entity_code => OE_GLOBALS.G_ENTITY_ALL,
3318: p_entity_id => oe_order_pub.g_hdr.header_id,
3319: p_requesting_entity_code => OE_GLOBALS.G_ENTITY_HEADER,
3320: p_requesting_entity_id => oe_order_pub.g_hdr.header_id,

Line 8267: OE_delayed_requests_Pvt.log_request(

8263:
8264: IF (OE_GLOBALS.G_UI_FLAG)
8265: AND nvl(FND_PROFILE.VALUE('ONT_DELAY_TAX_CALC'), 'N') = 'N'
8266: THEN
8267: OE_delayed_requests_Pvt.log_request(
8268: p_entity_code => OE_GLOBALS.G_ENTITY_HEADER,
8269: p_entity_id => px_Line_Tbl(1).header_id,
8270: p_requesting_entity_code => OE_GLOBALS.G_ENTITY_HEADER,
8271: p_requesting_entity_id => px_Line_Tbl(1).header_id,

Line 8275: OE_delayed_requests_Pvt.log_request(

8271: p_requesting_entity_id => px_Line_Tbl(1).header_id,
8272: p_request_type => OE_GLOBALS.g_tax_line,
8273: x_return_status => x_return_status);
8274: ELSE
8275: OE_delayed_requests_Pvt.log_request(
8276: p_entity_code => OE_GLOBALS.G_ENTITY_ALL,
8277: p_entity_id => px_Line_Tbl(1).header_id,
8278: p_requesting_entity_code => OE_GLOBALS.G_ENTITY_HEADER,
8279: p_requesting_entity_id => px_Line_Tbl(1).header_id,

Line 8322: OE_delayed_requests_Pvt.log_request(

8318:
8319: IF (OE_GLOBALS.G_UI_FLAG)
8320: AND nvl(FND_PROFILE.VALUE('ONT_DELAY_TAX_CALC'), 'N') = 'N'
8321: THEN
8322: OE_delayed_requests_Pvt.log_request(
8323: p_entity_code => OE_GLOBALS.G_ENTITY_LINE,
8324: p_entity_id => l_line_rec.line_id,
8325: p_requesting_entity_code => OE_GLOBALS.G_ENTITY_LINE,
8326: p_requesting_entity_id => l_line_rec.line_id,

Line 8330: OE_delayed_requests_Pvt.log_request(

8326: p_requesting_entity_id => l_line_rec.line_id,
8327: p_request_type => OE_GLOBALS.g_tax_line,
8328: x_return_status => x_return_status);
8329: ELSE
8330: OE_delayed_requests_Pvt.log_request(
8331: p_entity_code => OE_GLOBALS.G_ENTITY_ALL,
8332: p_entity_id => l_line_rec.line_id,
8333: p_requesting_entity_code => OE_GLOBALS.G_ENTITY_LINE,
8334: p_requesting_entity_id => l_line_rec.line_id,