DBA Data[Home] [Help]

APPS.ARP_BR_REMIT_BATCHES dependencies on AR_BATCH_SOURCES

Line 145: UPDATE ar_batch_sources

141: -- Automatic batch numbering
142: ------------------------------------------
143: l_batch_rec.batch_source_id := 1;
144:
145: UPDATE ar_batch_sources
146: SET last_batch_num = NVL(last_batch_num,0) + 1
147: WHERE batch_source_id = l_batch_rec.batch_source_id;
148:
149: -- Check that the Batch source is valid

Line 157: FROM ar_batch_sources

153: END IF;
154:
155: SELECT NVL(last_batch_num,0)
156: INTO l_batch_rec.name
157: FROM ar_batch_sources
158: WHERE batch_source_id = l_batch_rec.batch_source_id;
159:
160: IF PG_DEBUG in ('Y', 'C') THEN
161: arp_util.debug( 'ARP_BR_REMIT_BATCHES.insert_remit ... last_batch_num:'||l_batch_rec.name);