DBA Data[Home] [Help]

APPS.CSF_RMDUP dependencies on CSF_MD_THEME_METADATA

Line 540: from csf_md_theme_metadata

536: procedure clean_theme_metadata
537: is
538: cursor c1( start_id NUMBER ) is
539: select theme_id, rowid
540: from csf_md_theme_metadata
541: where theme_id >= start_id
542: order by theme_id;
543: r1 c1%ROWTYPE;
544:

Line 564: delete from csf_md_theme_metadata where rowid = r1.rowid;

560: exit;
561: end if;
562:
563: if ( min_start_id = r1.theme_id ) then
564: delete from csf_md_theme_metadata where rowid = r1.rowid;
565: else
566: min_start_id := r1.theme_id;
567: end if;
568: