DBA Data[Home] [Help]

APPS.FND_IMUTL dependencies on FND_HELP_DOCUMENTS

Line 313: and not exists (select 'x' from fnd_help_documents d

309: -- delete any orphaned rows --
310: ------------------------------
311: delete from fnd_lobs l
312: where program_name = 'FND_HELP'
313: and not exists (select 'x' from fnd_help_documents d
314: where l.file_id = d.file_id);
315:
316: delete from fnd_help_documents d
317: where not exists (select 'x' from fnd_lobs l

Line 316: delete from fnd_help_documents d

312: where program_name = 'FND_HELP'
313: and not exists (select 'x' from fnd_help_documents d
314: where l.file_id = d.file_id);
315:
316: delete from fnd_help_documents d
317: where not exists (select 'x' from fnd_lobs l
318: where l.file_id = d.file_id);
319:
320: delete from fnd_help_targets t

Line 321: where not exists (select 'x' from fnd_help_documents d

317: where not exists (select 'x' from fnd_lobs l
318: where l.file_id = d.file_id);
319:
320: delete from fnd_help_targets t
321: where not exists (select 'x' from fnd_help_documents d
322: where t.file_id = d.file_id);
323: commit;
324: end help_cleanup;
325: -----------------------------------------------------------------------------