DBA Data[Home] [Help]

APPS.CSF_RMDUP dependencies on CSF_MD_RDSEG_NM_ASGNS

Line 450: from csf_md_rdseg_nm_asgns

446: procedure clean_rdseg_names
447: is
448: cursor c1( start_id NUMBER ) is
449: select rd_seg_nm_id, rowid
450: from csf_md_rdseg_nm_asgns
451: where rd_seg_nm_id >= start_id
452: order by rd_seg_nm_id;
453: r1 c1%ROWTYPE;
454:

Line 474: delete from csf_md_rdseg_nm_asgns where rowid = r1.rowid;

470: exit;
471: end if;
472:
473: if ( min_start_id = r1.rd_seg_nm_id ) then
474: delete from csf_md_rdseg_nm_asgns where rowid = r1.rowid;
475: else
476: min_start_id := r1.rd_seg_nm_id;
477: end if;
478: