DBA Data[Home] [Help]

APPS.EGO_USER_ATTRS_DATA_PVT dependencies on EGO_EXTFWK_S

Line 6977: SELECT EGO_EXTFWK_S.NEXTVAL INTO l_new_extension_id FROM DUAL;

6973: -- If we haven't set it yet, get a sequence-generated extension --
6974: -- ID to use for insertion into both the base and TL tables --
6975: ------------------------------------------------------------------
6976: IF (l_new_extension_id IS NULL) THEN
6977: SELECT EGO_EXTFWK_S.NEXTVAL INTO l_new_extension_id FROM DUAL;
6978: END IF;
6979:
6980: --Start 4105841
6981: Get_Changed_Attributes(

Line 13785: l_dynamic_sql := ' SELECT EXTENSION_ID, EGO_EXTFWK_S.NEXTVAL '||

13781: -- and to generate extension IDs for the copy-to object; then we loop --
13782: -- through that cursor inserting rows for the copy-to object into the --
13783: -- B and TL tables, using the copy-from object's values. --
13784: ------------------------------------------------------------------------
13785: l_dynamic_sql := ' SELECT EXTENSION_ID, EGO_EXTFWK_S.NEXTVAL '||
13786: ' FROM '||NVL(l_vl_name, l_b_table_name)||
13787: ' WHERE '||l_where_pk_sql||l_where_dtlevel_sql;
13788:
13789: -------------------------------------------------------------