DBA Data[Home] [Help]

APPS.GL_GLCOAM_PKG dependencies on FND_ID_FLEX_SEGMENTS_TL

Line 66: DELETE FROM FND_ID_FLEX_SEGMENTS_TL

62: WHERE application_id = 101
63: AND id_flex_code = 'GLLE'
64: AND id_flex_num = X_id_flex_num;
65:
66: DELETE FROM FND_ID_FLEX_SEGMENTS_TL
67: WHERE application_id = 101
68: AND id_flex_code = 'GLLE'
69: AND id_flex_num = X_id_flex_num;
70:

Line 300: INSERT INTO FND_ID_FLEX_SEGMENTS_TL

296: AND id_flex_num = X_id_flex_num;
297:
298: --Insert the ledger segment in multiple languages supported by the
299: --application.
300: INSERT INTO FND_ID_FLEX_SEGMENTS_TL
301: (application_id,
302: id_flex_code,
303: id_flex_num,
304: application_column_name,

Line 337: FROM FND_ID_FLEX_SEGMENTS_TL t

333: FND_LANGUAGES l
334: WHERE l.installed_flag in ('B','I')
335: AND NOT EXISTS
336: (SELECT NULL
337: FROM FND_ID_FLEX_SEGMENTS_TL t
338: WHERE t.application_id = 101
339: AND t.id_flex_code = 'GLLE'
340: AND t.id_flex_num = X_id_flex_num
341: AND t.application_column_name = 'LEDGER_SEGMENT'

Line 350: INSERT INTO FND_ID_FLEX_SEGMENTS_TL

346: AND lv.view_application_id = 101;
347:
348: --Insert the remaining segments in multiple languages supported by the
349: --application.
350: INSERT INTO FND_ID_FLEX_SEGMENTS_TL
351: (application_id,
352: id_flex_code,
353: id_flex_num,
354: application_column_name,

Line 382: FROM FND_ID_FLEX_SEGMENTS_TL

378: form_above_prompt,
379: description,
380: source_lang
381: -- security_group_id
382: FROM FND_ID_FLEX_SEGMENTS_TL
383: WHERE application_id = 101
384: AND id_flex_code = 'GL#'
385: AND id_flex_num = X_id_flex_num;
386: