DBA Data[Home] [Help]

APPS.IGS_GE_CFG_FORM_PKG dependencies on IGS_GE_CFG_FORM_PKG

Line 1: PACKAGE BODY IGS_GE_CFG_FORM_PKG AS

1: PACKAGE BODY IGS_GE_CFG_FORM_PKG AS
2: /* $Header: IGSNIA0B.pls 120.0 2005/06/02 00:17:52 appldev noship $ */
3: l_rowid VARCHAR2(25);
4: old_references igs_ge_cfg_form%ROWTYPE;
5: new_references igs_ge_cfg_form%ROWTYPE;

Line 441: igs_ge_cfg_form_pkg.delete_row (

437: );
438: END LOOP;
439: -- Delete from Form Configuration
440: For i in (SELECT rowid FROM igs_ge_cfg_form WHERE responsibility_id = x_to_responsibility_id) LOOP
441: igs_ge_cfg_form_pkg.delete_row (
442: i.rowid
443: );
444:
445: END LOOP;

Line 456: igs_ge_cfg_form_pkg.insert_row (

452:
453: -- Insert for the Form Configuration
454: For i in (SELECT form_code,query_only_ind FROM igs_ge_cfg_form WHERE responsibility_id = x_from_responsibility_id) LOOP
455: lv_rowid := Null;
456: igs_ge_cfg_form_pkg.insert_row (
457: lv_rowid,
458: x_to_responsibility_id,
459: i.form_code,
460: i.query_only_ind,

Line 494: END igs_ge_cfg_form_pkg;

490: END LOOP;
491:
492: END do_copy;
493:
494: END igs_ge_cfg_form_pkg;