DBA Data[Home] [Help]

APPS.AK_OBJECT_PVT dependencies on AK_OBJECT_ATTRIBUTES_TL

Line 2285: delete from ak_object_attributes_tl

2281: end if;
2282: raise FND_API.G_EXC_ERROR;
2283: end if;
2284:
2285: delete from ak_object_attributes_tl
2286: where database_object_name = p_database_object_name
2287: and attribute_application_id = p_attribute_application_id
2288: and attribute_code = p_attribute_code;
2289:

Line 4196: insert into AK_OBJECT_ATTRIBUTES_TL (

4192: -- dbms_output.put_line(G_PKG_NAME || 'Error - First insert failed');
4193: raise FND_API.G_EXC_ERROR;
4194: end if;
4195:
4196: insert into AK_OBJECT_ATTRIBUTES_TL (
4197: DATABASE_OBJECT_NAME,
4198: ATTRIBUTE_APPLICATION_ID,
4199: ATTRIBUTE_CODE,
4200: LANGUAGE,

Line 4226: from AK_OBJECT_ATTRIBUTES_TL T

4222: from FND_LANGUAGES L
4223: where L.INSTALLED_FLAG in ('I', 'B')
4224: and not exists
4225: (select NULL
4226: from AK_OBJECT_ATTRIBUTES_TL T
4227: where T.DATABASE_OBJECT_NAME = p_database_object_name
4228: and T.ATTRIBUTE_APPLICATION_ID = p_attribute_application_id
4229: and T.ATTRIBUTE_CODE = p_attribute_code
4230: and T.LANGUAGE = L.LANGUAGE_CODE);