DBA Data[Home] [Help]

APPS.SOA_GENERATE dependencies on FND_OBJECTS

Line 751: select fnd_objects_s.nextval

747: and class_type = c_entry_type
748: for update ;
749:
750: cursor c_irep_class_id is
751: select fnd_objects_s.nextval
752: from dual;
753:
754: l_class_id number;
755:

Line 1681: from fnd_objects

1677: is
1678:
1679: cursor c_object(c_object_id in number) is
1680: select count(*) l_count
1681: from fnd_objects
1682: where object_id = c_object_id;
1683:
1684:
1685: cursor c_object_name(c_object_id in number) is

Line 1687: from fnd_objects

1683:
1684:
1685: cursor c_object_name(c_object_id in number) is
1686: select obj_name ,irep_name
1687: from fnd_objects
1688: where object_id = c_object_id;
1689:
1690: c_object_rec c_object%ROWTYPE;
1691:

Line 1783: Base entry is in fnd_objects and its derived entry would be made in fnd_irep_classes

1779: end create_object_derived_entry;
1780:
1781: /**
1782: Procedure for creating a Derived Entry for all functions of a base Object Entry
1783: Base entry is in fnd_objects and its derived entry would be made in fnd_irep_classes
1784: **/
1785: procedure create_obj_func_derived_entry
1786: (
1787: p_base_object_id in pls_integer,

Line 1799: from fnd_objects_vl

1795: is
1796:
1797: cursor c_base_object_entry(c_base_object_id in number) is
1798: select *
1799: from fnd_objects_vl
1800: where object_id = c_base_object_id;
1801:
1802: c_base_object_entry_rec c_base_object_entry%ROWTYPE;
1803:

Line 2042: from fnd_objects

2038: is
2039:
2040: cursor c_base_object_entry(c_base_object_id in number) is
2041: select *
2042: from fnd_objects
2043: where object_id = c_base_object_id;
2044:
2045: c_base_object_entry_rec c_base_object_entry%ROWTYPE;
2046: