DBA Data[Home] [Help]

APPS.FEM_USER_DIM5_PKG dependencies on FEM_USER_DIM5_TL

Line 56: insert into FEM_USER_DIM5_TL (

52: X_LAST_UPDATED_BY,
53: X_LAST_UPDATE_LOGIN
54: );
55:
56: insert into FEM_USER_DIM5_TL (
57: USER_DIM5_ID,
58: VALUE_SET_ID,
59: USER_DIM5_NAME,
60: DESCRIPTION,

Line 84: from FEM_USER_DIM5_TL T

80: from FND_LANGUAGES L
81: where L.INSTALLED_FLAG in ('I', 'B')
82: and not exists
83: (select NULL
84: from FEM_USER_DIM5_TL T
85: where T.USER_DIM5_ID = X_USER_DIM5_ID
86: and T.VALUE_SET_ID = X_VALUE_SET_ID
87: and T.LANGUAGE = L.LANGUAGE_CODE);
88:

Line 128: from FEM_USER_DIM5_TL

124: cursor c1 is select
125: USER_DIM5_NAME,
126: DESCRIPTION,
127: decode(LANGUAGE, userenv('LANG'), 'Y', 'N') BASELANG
128: from FEM_USER_DIM5_TL
129: where USER_DIM5_ID = X_USER_DIM5_ID
130: and VALUE_SET_ID = X_VALUE_SET_ID
131: and userenv('LANG') in (LANGUAGE, SOURCE_LANG)
132: for update of USER_DIM5_ID nowait;

Line 205: update FEM_USER_DIM5_TL set

201: if (sql%notfound) then
202: raise no_data_found;
203: end if;
204:
205: update FEM_USER_DIM5_TL set
206: USER_DIM5_NAME = X_USER_DIM5_NAME,
207: DESCRIPTION = X_DESCRIPTION,
208: LAST_UPDATE_DATE = X_LAST_UPDATE_DATE,
209: LAST_UPDATED_BY = X_LAST_UPDATED_BY,

Line 226: delete from FEM_USER_DIM5_TL

222: X_USER_DIM5_ID in NUMBER,
223: X_VALUE_SET_ID in NUMBER
224: ) is
225: begin
226: delete from FEM_USER_DIM5_TL
227: where USER_DIM5_ID = X_USER_DIM5_ID
228: and VALUE_SET_ID = X_VALUE_SET_ID;
229:
230: if (sql%notfound) then

Line 246: delete from FEM_USER_DIM5_TL T

242:
243: procedure ADD_LANGUAGE
244: is
245: begin
246: delete from FEM_USER_DIM5_TL T
247: where not exists
248: (select NULL
249: from FEM_USER_DIM5_B B
250: where B.USER_DIM5_ID = T.USER_DIM5_ID

Line 254: update FEM_USER_DIM5_TL T set (

250: where B.USER_DIM5_ID = T.USER_DIM5_ID
251: and B.VALUE_SET_ID = T.VALUE_SET_ID
252: );
253:
254: update FEM_USER_DIM5_TL T set (
255: USER_DIM5_NAME,
256: DESCRIPTION
257: ) = (select
258: B.USER_DIM5_NAME,

Line 260: from FEM_USER_DIM5_TL B

256: DESCRIPTION
257: ) = (select
258: B.USER_DIM5_NAME,
259: B.DESCRIPTION
260: from FEM_USER_DIM5_TL B
261: where B.USER_DIM5_ID = T.USER_DIM5_ID
262: and B.VALUE_SET_ID = T.VALUE_SET_ID
263: and B.LANGUAGE = T.SOURCE_LANG)
264: where (

Line 272: from FEM_USER_DIM5_TL SUBB, FEM_USER_DIM5_TL SUBT

268: ) in (select
269: SUBT.USER_DIM5_ID,
270: SUBT.VALUE_SET_ID,
271: SUBT.LANGUAGE
272: from FEM_USER_DIM5_TL SUBB, FEM_USER_DIM5_TL SUBT
273: where SUBB.USER_DIM5_ID = SUBT.USER_DIM5_ID
274: and SUBB.VALUE_SET_ID = SUBT.VALUE_SET_ID
275: and SUBB.LANGUAGE = SUBT.SOURCE_LANG
276: and (SUBB.USER_DIM5_NAME <> SUBT.USER_DIM5_NAME

Line 282: insert into FEM_USER_DIM5_TL (

278: or (SUBB.DESCRIPTION is null and SUBT.DESCRIPTION is not null)
279: or (SUBB.DESCRIPTION is not null and SUBT.DESCRIPTION is null)
280: ));
281:
282: insert into FEM_USER_DIM5_TL (
283: USER_DIM5_ID,
284: VALUE_SET_ID,
285: USER_DIM5_NAME,
286: DESCRIPTION,

Line 306: from FEM_USER_DIM5_TL B, FND_LANGUAGES L

302: B.LAST_UPDATE_DATE,
303: B.LAST_UPDATE_LOGIN,
304: L.LANGUAGE_CODE,
305: B.SOURCE_LANG
306: from FEM_USER_DIM5_TL B, FND_LANGUAGES L
307: where L.INSTALLED_FLAG in ('I', 'B')
308: and B.LANGUAGE = userenv('LANG')
309: and not exists
310: (select NULL

Line 311: from FEM_USER_DIM5_TL T

307: where L.INSTALLED_FLAG in ('I', 'B')
308: and B.LANGUAGE = userenv('LANG')
309: and not exists
310: (select NULL
311: from FEM_USER_DIM5_TL T
312: where T.USER_DIM5_ID = B.USER_DIM5_ID
313: and T.VALUE_SET_ID = B.VALUE_SET_ID
314: and T.LANGUAGE = L.LANGUAGE_CODE);
315: end ADD_LANGUAGE;

Line 343: from FEM_USER_DIM5_TL

339: f_ludate := nvl(to_date(x_last_update_date, 'YYYY/MM/DD'), sysdate);
340: begin
341: select LAST_UPDATED_BY, LAST_UPDATE_DATE
342: into db_luby, db_ludate
343: from FEM_USER_DIM5_TL
344: where USER_DIM5_ID = x_USER_DIM5_ID
345: and LANGUAGE = userenv('LANG');
346:
347: -- Test for customization and version

Line 351: update FEM_USER_DIM5_TL set

347: -- Test for customization and version
348: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
349: db_ludate, x_custom_mode)) then
350: -- Update translations for this language
351: update FEM_USER_DIM5_TL set
352: USER_DIM5_NAME = decode(x_USER_DIM5_NAME,
353: fnd_load_util.null_value, null, -- Real null
354: null, x_USER_DIM5_NAME, -- No change
355: x_USER_DIM5_NAME),