DBA Data[Home] [Help]

APPS.ARP_PROCESS_BR_LINE dependencies on ARP_CTL_PKG

Line 55: arp_ctl_pkg.insert_p( p_line_rec,

51: /*----------------------------------------------+
52: | Call the table handler to insert the line |
53: +----------------------------------------------*/
54:
55: arp_ctl_pkg.insert_p( p_line_rec,
56: p_customer_trx_line_id);
57:
58: /*----------------------------------------+
59: | BR has no Sales Credit, terms or tax |

Line 65: -- No longer required as arp_ctl_pkg.insert_p does insert the mrc customer_trx_lines

61:
62: /*------------------------------------------+
63: | Call MRC logic to create MRC rows |
64: +------------------------------------------*/
65: -- No longer required as arp_ctl_pkg.insert_p does insert the mrc customer_trx_lines
66: -- ARP_PROCESS_BR_LINE.insert_mrc_transaction_line(p_line_rec,
67: -- p_customer_trx_line_id);
68:
69: /*---------------------------------------------------------------------------+

Line 83: arp_ctl_pkg.display_line_rec(p_line_rec);

79: WHEN OTHERS THEN
80: IF PG_DEBUG in ('Y', 'C') THEN
81: arp_util.debug('EXCEPTION: arp_process_br_line.insert_line()');
82: END IF;
83: arp_ctl_pkg.display_line_rec(p_line_rec);
84: RAISE;
85:
86: END insert_line;
87:

Line 141: arp_ctl_pkg.update_p( p_line_rec,

137: /*---------------------------------------------+
138: | Call the table handler to update the line |
139: +---------------------------------------------*/
140:
141: arp_ctl_pkg.update_p( p_line_rec,
142: p_customer_trx_line_id,
143: NULL);
144:
145: /*----------------------------------------+

Line 152: -- No longer required as the procedure arp_ctl_pkg.update_p does the updation of mrc trx lines

148:
149: /*------------------------------------------+
150: | Call MRC logic to create MRC rows |
151: +------------------------------------------*/
152: -- No longer required as the procedure arp_ctl_pkg.update_p does the updation of mrc trx lines
153:
154: -- ARP_PROCESS_BR_LINE.update_mrc_transaction_line(p_line_rec,
155: -- p_customer_trx_line_id);
156:

Line 171: arp_ctl_pkg.display_line_rec(p_line_rec);

167: WHEN OTHERS THEN
168: IF PG_DEBUG in ('Y', 'C') THEN
169: arp_util.debug('EXCEPTION: arp_process_br_line.update_line()');
170: END IF;
171: arp_ctl_pkg.display_line_rec(p_line_rec);
172: RAISE;
173:
174: END update_line;
175:

Line 224: arp_ctl_pkg.delete_p( p_customer_trx_line_id );

220: /*-----------------------------------------------------+
221: | call the table-handler to delete the line record |
222: +-----------------------------------------------------*/
223:
224: arp_ctl_pkg.delete_p( p_customer_trx_line_id );
225:
226: /*----------------------------------------+
227: | BR has no Sales Credit, terms or tax |
228: +----------------------------------------*/

Line 233: -- Should be removed as the arp_ctl_pkg.delete_p does the deletion of mrc lines

229:
230: /*------------------------------------------+
231: | Call MRC logic to create MRC rows |
232: +------------------------------------------*/
233: -- Should be removed as the arp_ctl_pkg.delete_p does the deletion of mrc lines
234: -- ARP_PROCESS_BR_LINE.delete_mrc_transaction_line(p_customer_trx_line_id);
235:
236: /*---------------------------------------------------------------------------+
237: | All accounting is done in the accounting engine called by transaction |