DBA Data[Home] [Help]

APPS.EGO_ITEM_PEOPLE_IMPORT_PKG dependencies on FND_OBJECTS

Line 24: G_FND_OBJECT_ID fnd_objects.object_id%TYPE;

20: --Indicates the object name
21: G_FND_OBJECT_NAME VARCHAR2(99) := 'EGO_ITEM';
22:
23: --Indicates the object id (set using g_Fnd_Object_Name)
24: G_FND_OBJECT_ID fnd_objects.object_id%TYPE;
25:
26: -- Seeded value for all_users (group available in hz_parties)
27: G_ALL_USERS_PARTY_ID PLS_INTEGER := -1000;
28:

Line 165: from fnd_objects

161: l_object_id number;
162: Begin
163: select object_id
164: into l_object_id
165: from fnd_objects
166: where obj_name=p_object_name;
167: return l_object_id;
168: exception
169: when no_data_found then

Line 456: FROM fnd_objects

452: -- IN : object_name
453: --
454: CURSOR c_fnd_object_id(c_object_name IN VARCHAR2) IS
455: SELECT object_id
456: FROM fnd_objects
457: WHERE obj_name = c_object_name;
458:
459: BEGIN
460: