DBA Data[Home] [Help]

APPS.OE_LINE_UTIL dependencies on OE_PAYMENTS

Line 364: -- OE_Payments_Util.delete_row(p_line_id => p_line_id);

360: END IF;
361: OE_Holds_PUB.Delete_Holds(p_line_id => p_line_id );
362:
363: -- 1829201, commitment related changes.
364: -- OE_Payments_Util.delete_row(p_line_id => p_line_id);
365:
366: begin
367: select header_id
368: into l_header_id

Line 1453: l_delete_payment_count from oe_payments

1449:
1450: IF p_x_line_rec.operation = OE_GLOBALS.G_OPR_UPDATE THEN
1451: --R12 CC Encryption
1452: select count(payment_type_code) into
1453: l_delete_payment_count from oe_payments
1454: where header_id = p_x_line_rec.header_id
1455: and line_id = p_x_line_rec.line_id and
1456: payment_type_code in ('ACH','DIRECT_DEBIT','CREDIT_CARD');
1457:

Line 17651: FROM oe_payments

17647:
17648: BEGIN
17649: SELECT payment_type_code
17650: INTO l_line_payment_type_code
17651: FROM oe_payments
17652: WHERE header_id = p_x_line_rec.header_id
17653: AND line_id = p_x_line_rec.split_from_line_id
17654: AND payment_type_code IS NOT NULL
17655: AND rownum = 1;