DBA Data[Home] [Help]

APPS.FND_DATA_SECURITY dependencies on FND_OBJECTS

Line 354: from fnd_objects

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

Line 496: FROM fnd_objects

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

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

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