DBA Data[Home] [Help]

APPS.FND_EXECUTABLES_PKG dependencies on FND_EXECUTABLES_TL

Line 54: insert into FND_EXECUTABLES_TL (

50: X_LAST_UPDATED_BY,
51: X_LAST_UPDATE_LOGIN
52: );
53:
54: insert into FND_EXECUTABLES_TL (
55: APPLICATION_ID,
56: EXECUTABLE_ID,
57: CREATION_DATE,
58: CREATED_BY,

Line 82: from FND_EXECUTABLES_TL T

78: from FND_LANGUAGES L
79: where L.INSTALLED_FLAG in ('I', 'B')
80: and not exists
81: (select NULL
82: from FND_EXECUTABLES_TL T
83: where T.APPLICATION_ID = X_APPLICATION_ID
84: and T.EXECUTABLE_ID = X_EXECUTABLE_ID
85: and T.LANGUAGE = L.LANGUAGE_CODE);
86:

Line 123: from FND_EXECUTABLES_TL

119:
120: cursor c1 is select
121: USER_EXECUTABLE_NAME,
122: DESCRIPTION
123: from FND_EXECUTABLES_TL
124: where APPLICATION_ID = X_APPLICATION_ID
125: and EXECUTABLE_ID = X_EXECUTABLE_ID
126: and LANGUAGE = userenv('LANG')
127: for update of APPLICATION_ID nowait;

Line 205: update FND_EXECUTABLES_TL set

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

Line 278: from FND_EXECUTABLES_TL

274: and APPLICATION_ID = app_id;
275:
276: select LAST_UPDATED_BY, LAST_UPDATE_DATE
277: into db_luby, db_ludate
278: from FND_EXECUTABLES_TL
279: where APPLICATION_ID = app_id
280: and EXECUTABLE_ID = key_id
281: and LANGUAGE = userenv('LANG');
282: -- Update record, honoring customization mode.

Line 294: update FND_EXECUTABLES_TL set

290: p_db_id => db_luby,
291: p_db_lud => db_ludate,
292: p_custom_mode => x_custom_mode))
293: then
294: update FND_EXECUTABLES_TL set
295: USER_EXECUTABLE_NAME = nvl(x_user_executable_name,
296: USER_EXECUTABLE_NAME),
297: DESCRIPTION = nvl(x_description, DESCRIPTION),
298: SOURCE_LANG = userenv('LANG'),

Line 462: delete from FND_EXECUTABLES_TL

458: if (sql%notfound) then
459: raise no_data_found;
460: end if;
461:
462: delete from FND_EXECUTABLES_TL
463: where APPLICATION_ID = X_APPLICATION_ID
464: and EXECUTABLE_ID = X_EXECUTABLE_ID;
465:
466: if (sql%notfound) then

Line 482: delete from FND_EXECUTABLES_TL T

478: /* as a quick workaround to fix the time-consuming table handler issue */
479: /* Eventually we'll need to turn them into a separate fix_language procedure */
480: /*
481:
482: delete from FND_EXECUTABLES_TL T
483: where not exists
484: (select NULL
485: from FND_EXECUTABLES B
486: where B.APPLICATION_ID = T.APPLICATION_ID

Line 490: update FND_EXECUTABLES_TL T set (

486: where B.APPLICATION_ID = T.APPLICATION_ID
487: and B.EXECUTABLE_ID = T.EXECUTABLE_ID
488: );
489:
490: update FND_EXECUTABLES_TL T set (
491: USER_EXECUTABLE_NAME,
492: DESCRIPTION
493: ) = (select
494: B.USER_EXECUTABLE_NAME,

Line 496: from FND_EXECUTABLES_TL B

492: DESCRIPTION
493: ) = (select
494: B.USER_EXECUTABLE_NAME,
495: B.DESCRIPTION
496: from FND_EXECUTABLES_TL B
497: where B.APPLICATION_ID = T.APPLICATION_ID
498: and B.EXECUTABLE_ID = T.EXECUTABLE_ID
499: and B.LANGUAGE = T.SOURCE_LANG)
500: where (

Line 508: from FND_EXECUTABLES_TL SUBB, FND_EXECUTABLES_TL SUBT

504: ) in (select
505: SUBT.APPLICATION_ID,
506: SUBT.EXECUTABLE_ID,
507: SUBT.LANGUAGE
508: from FND_EXECUTABLES_TL SUBB, FND_EXECUTABLES_TL SUBT
509: where SUBB.APPLICATION_ID = SUBT.APPLICATION_ID
510: and SUBB.EXECUTABLE_ID = SUBT.EXECUTABLE_ID
511: and SUBB.LANGUAGE = SUBT.SOURCE_LANG
512: and (SUBB.USER_EXECUTABLE_NAME <> SUBT.USER_EXECUTABLE_NAME

Line 519: insert into FND_EXECUTABLES_TL (

515: or (SUBB.DESCRIPTION is not null and SUBT.DESCRIPTION is null)
516: ));
517: */
518:
519: insert into FND_EXECUTABLES_TL (
520: APPLICATION_ID,
521: EXECUTABLE_ID,
522: CREATION_DATE,
523: CREATED_BY,

Line 543: from FND_EXECUTABLES_TL B, FND_LANGUAGES L

539: B.USER_EXECUTABLE_NAME,
540: B.DESCRIPTION,
541: L.LANGUAGE_CODE,
542: B.SOURCE_LANG
543: from FND_EXECUTABLES_TL B, FND_LANGUAGES L
544: where L.INSTALLED_FLAG in ('I', 'B')
545: and B.LANGUAGE = userenv('LANG')
546: and not exists
547: (select NULL

Line 548: from FND_EXECUTABLES_TL T

544: where L.INSTALLED_FLAG in ('I', 'B')
545: and B.LANGUAGE = userenv('LANG')
546: and not exists
547: (select NULL
548: from FND_EXECUTABLES_TL T
549: where T.APPLICATION_ID = B.APPLICATION_ID
550: and T.EXECUTABLE_ID = B.EXECUTABLE_ID
551: and T.LANGUAGE = L.LANGUAGE_CODE);
552: end ADD_LANGUAGE;