DBA Data[Home] [Help]

APPS.OKC_RRD_PVT dependencies on OKC_RG_ROLE_DEFS_S1

Line 13: OKC_RG_ROLE_DEFS_S1.nextval

9: l_id Number;
10: -- for customer's data (for non-seeded date id should be 50000 or above)
11: cursor nonseed_c is
12: select
13: OKC_RG_ROLE_DEFS_S1.nextval
14: from
15: dual;
16: -- for datamerge's data (for seeded date id should be greater than or equal to 11000 and less than 50000)
17: cursor seed_c is

Line 35: SELECT OKC_RG_ROLE_DEFS_S1.nextval

31: fetch nonseed_c into l_id;
32: close nonseed_c;
33: end if;
34: /*
35: SELECT OKC_RG_ROLE_DEFS_S1.nextval
36: INTO l_id
37: FROM DUAL;
38: */
39: RETURN(l_id);