APPS.CZ_CONFIG_API_PUB dependencies on CZ_CONFIG_ITEMS_S
Line 89: SELECT cz_config_items_s.NEXTVAL
85: l_config_item_id NUMBER;
86: BEGIN
87: IF ((last_item_allocated IS NULL) OR
88: (next_item_to_use = last_item_allocated + id_increment)) THEN 89: SELECT cz_config_items_s.NEXTVAL 90: INTO last_item_allocated
91: FROM dual;
92: next_item_to_use := last_item_allocated;
93: END IF;