DBA Data[Home] [Help]

APPS.ARP_PROCESS_ADJUSTMENT dependencies on FND_SEQNUM

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

2922: | |
2923: | NOTES |
2924: | |
2925: | MODIFICATION HISTORY - Created by Ganesh Vaidee - 04/25/95 |
2926: | 7/30/1996 Harri Kaukovuo Fixed the code to fnd_seqnum, because AOL
2927: | has changed the data type of the date parameter.
2928: | Fixed possible bug cancidate when trying to
2929: | select name from ar_receivables_trx into
2930: | VARCHAR2(30) field. Name is VARCHAR2(50).

Line 3003: FND_SEQNUM.GET_SEQ_NAME(

2999: BEGIN
3000:
3001: /* Commented to fix bug #741725, as this does not handle gapless sequence
3002: -- numbering.
3003: FND_SEQNUM.GET_SEQ_NAME(
3004: arp_standard.application_id
3005: , l_rec_name -- category code
3006: , arp_global.set_of_books_id
3007: , 'A'

Line 3014: fnd_seqnum.get_next_auto_seq(l_sequence_name);

3010: , l_sequence_id
3011: , l_sequence_assignment_id);
3012:
3013: p_adj_rec.doc_sequence_value :=
3014: fnd_seqnum.get_next_auto_seq(l_sequence_name);
3015: p_adj_rec.doc_sequence_id := l_sequence_id;
3016: */
3017:
3018: -- Bug fix #741725: Use AOL API get_next_sequence() instead of

Line 3021: FND_SEQNUM.GET_NEXT_SEQUENCE(

3017:
3018: -- Bug fix #741725: Use AOL API get_next_sequence() instead of
3019: -- get_seq_name.
3020: p_adj_rec.doc_sequence_value :=
3021: FND_SEQNUM.GET_NEXT_SEQUENCE(
3022: appid => arp_standard.application_id,
3023: cat_code => l_rec_name,
3024: sobid => arp_global.set_of_books_id,
3025: met_code => 'A',

Line 3065: FND_SEQNUM.get_next_auto_sequence (

3061:
3062:
3063: /*
3064: p_adj_rec.doc_sequence_value :=
3065: FND_SEQNUM.get_next_auto_sequence (
3066: arp_standard.application_id
3067: , l_rec_name
3068: , arp_standard.sysparm.set_of_books_id
3069: , 'A'