DBA Data[Home] [Help]

APPS.OE_HEADER_UTIL dependencies on FND_SEQNUM

Line 7449: x_result := fnd_seqnum.get_seq_info(

7445: ELSIF p_transaction_phase_code = 'N' THEN
7446: X_Doc_Category_Code := to_char(p_order_type_id)||'-Quote';
7447: END IF;
7448:
7449: x_result := fnd_seqnum.get_seq_info(
7450: 660,
7451: x_doc_category_code,
7452: x_set_of_books_id,
7453: null,

Line 7651: x_result := fnd_seqnum.get_seq_info(

7647: X_Doc_Category_Code := to_char(p_x_header_rec.order_type_id);
7648: ELSIF p_x_header_rec.transaction_phase_code = 'N' THEN
7649: X_Doc_Category_Code := to_char(p_x_header_rec.order_type_id)||'-Quote';
7650: END IF;
7651: x_result := fnd_seqnum.get_seq_info(
7652: 660,
7653: x_doc_category_code,
7654: x_set_of_books_id,
7655: null,

Line 7718: x_result := fnd_seqnum.get_seq_info(

7714:
7715: oe_debug_pub.ADD('before calling get_seq_info ', 2);
7716: oe_debug_pub.ADD('Category Code'||x_doc_category_code, 3);
7717: oe_debug_pub.ADD('Set of Books'||x_set_of_books_id, 3);
7718: x_result := fnd_seqnum.get_seq_info(
7719: 660,
7720: x_doc_category_code,
7721: x_set_of_books_id,
7722: null,

Line 7736: IF x_result <> FND_SEQNUM.SEQSUCC THEN

7732: );
7733:
7734: oe_debug_pub.ADD('after calling get_seq_info ', 2);
7735:
7736: IF x_result <> FND_SEQNUM.SEQSUCC THEN
7737: IF x_result = FND_SEQNUM.NOTUSED THEN
7738: fnd_message.set_name('ONT','OE_MISS_DOC_SEQ');
7739: OE_MSG_PUB.Add;
7740: RAISE FND_API.G_EXC_ERROR;

Line 7737: IF x_result = FND_SEQNUM.NOTUSED THEN

7733:
7734: oe_debug_pub.ADD('after calling get_seq_info ', 2);
7735:
7736: IF x_result <> FND_SEQNUM.SEQSUCC THEN
7737: IF x_result = FND_SEQNUM.NOTUSED THEN
7738: fnd_message.set_name('ONT','OE_MISS_DOC_SEQ');
7739: OE_MSG_PUB.Add;
7740: RAISE FND_API.G_EXC_ERROR;
7741: END IF;

Line 7747: X_result := fnd_seqnum.get_seq_val(

7743: l_doc_seq_type := x_doc_sequence_type;
7744:
7745: IF ( l_doc_seq_type <> 'M') THEN
7746:
7747: X_result := fnd_seqnum.get_seq_val(
7748: 660,
7749: x_doc_category_code,
7750: x_set_of_books_id,
7751: null,