DBA Data[Home] [Help]

APPS.CN_PREPOSTBATCHES dependencies on DUAL

Line 17: FROM dual;

13: PROCEDURE Get_UID( x_posting_batch_id IN OUT NOCOPY NUMBER )
14: IS
15: CURSOR get_id IS
16: SELECT cn_posting_batches_s.nextval
17: FROM dual;
18: BEGIN
19: OPEN get_id;
20: FETCH get_id INTO x_posting_batch_id;
21: CLOSE get_id;