DBA Data[Home] [Help]

APPS.INL_ENTITIES_PKG dependencies on INL_ENTITIES_TL

Line 67: INSERT INTO inl_entities_tl(

63: p_last_updated_by,
64: p_last_update_login
65: );
66:
67: INSERT INTO inl_entities_tl(
68: entity_code,
69: language,
70: source_lang,
71: entity_name,

Line 93: FROM inl_entities_tl e

89: FROM FND_LANGUAGES L
90: WHERE L.INSTALLED_FLAG IN ('I', 'B')
91: AND NOT EXISTS
92: (SELECT NULL
93: FROM inl_entities_tl e
94: WHERE e.entity_code = p_entity_code
95: AND e.LANGUAGE = L.LANGUAGE_CODE);
96:
97: OPEN c;

Line 151: UPDATE inl_entities_tl SET

147: IF (SQL%NOTFOUND) THEN
148: RAISE no_data_found;
149: END IF;
150:
151: UPDATE inl_entities_tl SET
152: entity_name = p_entity_name,
153: description = p_description,
154: last_update_date = sysdate,
155: last_updated_by = p_last_updated_by,

Line 200: UPDATE inl_entities_tl SET

196:
197: -- Translate char last_update_date to date using TO_DATE
198: l_last_update_date := nvl(to_date(p_last_update_date, 'YYYY/MM/DD'),sysdate);
199:
200: UPDATE inl_entities_tl SET
201: entity_name = p_entity_name,
202: description = p_description,
203: last_update_date = sysdate,
204: last_updated_by = l_owner, --Decode(p_owner,'SEED',1,0),