DBA Data[Home] [Help]

APPS.AK_OBJECT_PVT dependencies on AK_OBJECT_ATTRIBUTES_TL

Line 2278: delete from ak_object_attributes_tl

2274: end if;
2275: raise FND_API.G_EXC_ERROR;
2276: end if;
2277:
2278: delete from ak_object_attributes_tl
2279: where database_object_name = p_database_object_name
2280: and attribute_application_id = p_attribute_application_id
2281: and attribute_code = p_attribute_code;
2282:

Line 4189: insert into AK_OBJECT_ATTRIBUTES_TL (

4185: -- dbms_output.put_line(G_PKG_NAME || 'Error - First insert failed');
4186: raise FND_API.G_EXC_ERROR;
4187: end if;
4188:
4189: insert into AK_OBJECT_ATTRIBUTES_TL (
4190: DATABASE_OBJECT_NAME,
4191: ATTRIBUTE_APPLICATION_ID,
4192: ATTRIBUTE_CODE,
4193: LANGUAGE,

Line 4219: from AK_OBJECT_ATTRIBUTES_TL T

4215: from FND_LANGUAGES L
4216: where L.INSTALLED_FLAG in ('I', 'B')
4217: and not exists
4218: (select NULL
4219: from AK_OBJECT_ATTRIBUTES_TL T
4220: where T.DATABASE_OBJECT_NAME = p_database_object_name
4221: and T.ATTRIBUTE_APPLICATION_ID = p_attribute_application_id
4222: and T.ATTRIBUTE_CODE = p_attribute_code
4223: and T.LANGUAGE = L.LANGUAGE_CODE);