DBA Data[Home] [Help]

APPS.ARP_PROCESS_ADJUSTMENT dependencies on FND_SEQNUM

Line 3418: | 7/30/1996 Harri Kaukovuo Fixed the code to fnd_seqnum, because AOL

3414: | |
3415: | NOTES |
3416: | |
3417: | MODIFICATION HISTORY - Created by Ganesh Vaidee - 04/25/95 |
3418: | 7/30/1996 Harri Kaukovuo Fixed the code to fnd_seqnum, because AOL
3419: | has changed the data type of the date parameter.
3420: | Fixed possible bug cancidate when trying to
3421: | select name from ar_receivables_trx into
3422: | VARCHAR2(30) field. Name is VARCHAR2(50).

Line 3502: FND_SEQNUM.GET_SEQ_NAME(

3498: BEGIN
3499:
3500: /* Commented to fix bug #741725, as this does not handle gapless sequence
3501: -- numbering.
3502: FND_SEQNUM.GET_SEQ_NAME(
3503: arp_standard.application_id
3504: , l_rec_name -- category code
3505: , arp_global.set_of_books_id
3506: , 'A'

Line 3513: fnd_seqnum.get_next_auto_seq(l_sequence_name);

3509: , l_sequence_id
3510: , l_sequence_assignment_id);
3511:
3512: p_adj_rec.doc_sequence_value :=
3513: fnd_seqnum.get_next_auto_seq(l_sequence_name);
3514: p_adj_rec.doc_sequence_id := l_sequence_id;
3515: */
3516:
3517: -- Bug fix #741725: Use AOL API get_next_sequence() instead of

Line 3520: FND_SEQNUM.GET_NEXT_SEQUENCE(

3516:
3517: -- Bug fix #741725: Use AOL API get_next_sequence() instead of
3518: -- get_seq_name.
3519: p_adj_rec.doc_sequence_value :=
3520: FND_SEQNUM.GET_NEXT_SEQUENCE(
3521: appid => arp_standard.application_id,
3522: cat_code => l_rec_name,
3523: sobid => arp_global.set_of_books_id,
3524: met_code => 'A',

Line 3564: FND_SEQNUM.get_next_auto_sequence (

3560:
3561:
3562: /*
3563: p_adj_rec.doc_sequence_value :=
3564: FND_SEQNUM.get_next_auto_sequence (
3565: arp_standard.application_id
3566: , l_rec_name
3567: , arp_standard.sysparm.set_of_books_id
3568: , 'A'