DBA Data[Home] [Help]

APPS.FPA_PLANNINGCYCLE_PVT dependencies on FPA_PLANNING_CYCLE_S

Line 28: SELECT fpa_planning_cycle_s.nextval AS l_pc_id

24: IS
25: -- A cursor to get the new unique id for the Pc
26: CURSOR l_pc_s_csr
27: IS
28: SELECT fpa_planning_cycle_s.nextval AS l_pc_id
29: FROM dual;
30:
31: -- A record to hold the new sequence value
32: l_pc_s_r l_pc_s_csr%ROWTYPE;