DBA Data[Home] [Help]

APPS.OE_HEADER_PAYMENT_UTIL dependencies on OE_ORDER_UTIL

Line 2019: /* OE_ORDER_UTIL.Update_Global_Picture(p_Upd_New_Rec_If_Exists => True,

2015: IF l_debug_level > 0 THEN
2016: oe_debug_pub.add( 'JFC: payment_number' || P_HEADER_Payment_REC.payment_number ) ;
2017: END IF;
2018: -- Sasi: this should be added by Renga
2019: /* OE_ORDER_UTIL.Update_Global_Picture(p_Upd_New_Rec_If_Exists => True,
2020: p_Hdr_pmt_rec =>p_header_Payment_rec,
2021: p_hdr_pmt_id => p_header_Payment_rec.payment_number,
2022: x_index => l_index,
2023: x_return_status => l_return_status);*/

Line 2255: OE_ORDER_UTIL.Update_Global_Picture(p_Upd_New_Rec_If_Exists => True,

2251: --calling notification framework to update global picture
2252: --check code release level first. Notification framework is at Pack H level
2253: IF OE_CODE_CONTROL.CODE_RELEASE_LEVEL >= '110510' THEN
2254: /*
2255: OE_ORDER_UTIL.Update_Global_Picture(p_Upd_New_Rec_If_Exists => True,
2256: p_old_hdr_pmt_rec => NULL,
2257: p_Hdr_pmt_rec =>p_header_Payment_rec,
2258: p_hdr_pmt_id => p_header_Payment_rec.payment_number,
2259: x_index => l_index,

Line 2361: /* OE_ORDER_UTIL.Update_Global_Picture(p_Upd_New_Rec_If_Exists => True,

2357: l_new_header_Payment_rec.payment_collection_event := l_pmt.payment_collection_event;
2358: --l_new_header_Payment_rec.payment_type_code := l_pmt.
2359: --l_new_header_Payment_rec.trxn_extension_id := l_pmt.trxn_extension_id; --R12 CC Encryption Verify
2360:
2361: /* OE_ORDER_UTIL.Update_Global_Picture(p_Upd_New_Rec_If_Exists => True,
2362: p_Hdr_pmt_rec =>l_new_header_Payment_rec,
2363: p_hdr_pmt_id => payment_number,
2364: x_index => l_index,
2365: x_return_status => l_return_status); */

Line 2501: /* OE_ORDER_UTIL.Update_Global_Picture(p_Upd_New_Rec_If_Exists => True,

2497: /* Set the operation on the record so that globals are updated as well */
2498: l_new_header_Payment_rec.operation := OE_GLOBALS.G_OPR_DELETE;
2499: l_new_header_Payment_rec.payment_number := p_payment_number;
2500: l_new_header_Payment_rec.header_id := p_header_id;
2501: /* OE_ORDER_UTIL.Update_Global_Picture(p_Upd_New_Rec_If_Exists => True,
2502: p_Hdr_pmt_rec =>l_new_header_Payment_rec,
2503: p_hdr_pmt_id => p_payment_number,
2504: x_index => l_index,
2505: x_return_status => l_return_status); */

Line 4133: IF OE_ORDER_UTIL.G_Precision IS NULL THEN

4129:
4130: -- fix bug 3740225, need to round amount according to precision
4131: -- when processing prepayment and refund to be in synch with AR.
4132: IF p_x_header_payment_rec.payment_collection_event = 'PREPAY' THEN
4133: IF OE_ORDER_UTIL.G_Precision IS NULL THEN
4134: OE_ORDER_UTIL.G_Precision:=2;
4135: END IF;
4136:
4137: p_x_header_payment_rec.payment_amount

Line 4134: OE_ORDER_UTIL.G_Precision:=2;

4130: -- fix bug 3740225, need to round amount according to precision
4131: -- when processing prepayment and refund to be in synch with AR.
4132: IF p_x_header_payment_rec.payment_collection_event = 'PREPAY' THEN
4133: IF OE_ORDER_UTIL.G_Precision IS NULL THEN
4134: OE_ORDER_UTIL.G_Precision:=2;
4135: END IF;
4136:
4137: p_x_header_payment_rec.payment_amount
4138: := ROUND(p_x_header_payment_rec.payment_amount, OE_ORDER_UTIL.G_Precision);

Line 4138: := ROUND(p_x_header_payment_rec.payment_amount, OE_ORDER_UTIL.G_Precision);

4134: OE_ORDER_UTIL.G_Precision:=2;
4135: END IF;
4136:
4137: p_x_header_payment_rec.payment_amount
4138: := ROUND(p_x_header_payment_rec.payment_amount, OE_ORDER_UTIL.G_Precision);
4139: END IF;
4140:
4141: IF l_debug_level > 0 THEN
4142: oe_debug_pub.add('EXITING OE_HEADER_PAYMENT_UTIL.PRE_WRITE_PROCESS');