DBA Data[Home] [Help]

APPS.FND_DATA_SECURITY dependencies on FND_OBJECTS

Line 355: from fnd_objects

351: v_object_id := g_obj_id_cache; /* If we have it cached, use value */
352: else /* not cached, hit db */
353: select object_id
354: into v_object_id
355: from fnd_objects
356: where obj_name=p_object_name;
357:
358: /* Store in cache */
359: g_obj_id_cache := v_object_id;

Line 497: FROM fnd_objects

493: ,pk3_column_type
494: ,pk4_column_type
495: ,pk5_column_type
496: , database_object_name
497: FROM fnd_objects
498: WHERE obj_name=p_object_name ;
499: begin
500: if (fnd_log.LEVEL_PROCEDURE >= fnd_log.g_current_runtime_level) then
501: fnd_log.string(FND_LOG.LEVEL_PROCEDURE,

Line 541: 'FND_OBJECTS does not have column obj_name with value:'||

537: fnd_message.set_name('FND', 'GENERIC-INTERNAL ERROR');
538: fnd_message.set_token('ROUTINE',
539: c_pkg_name || '.'|| l_api_name);
540: fnd_message.set_token('REASON',
541: 'FND_OBJECTS does not have column obj_name with value:'||
542: p_object_name);
543: if (fnd_log.LEVEL_EXCEPTION >= fnd_log.g_current_runtime_level) then
544: fnd_log.message(FND_LOG.LEVEL_EXCEPTION,
545: c_log_head || l_api_name || '.bad_objname',