DBA Data[Home] [Help]

APPS.IGS_PE_NONIMG_FORM_PKG dependencies on IGS_PE_TYP_INSTANCES_PKG

Line 186: igs_pe_typ_instances_pkg.insert_row

182: OPEN per_type('NONIMG_STUDENT','N');
183: FETCH per_type INTO l_per_type;
184: IF per_type%FOUND THEN
185: IF p_insert = TRUE THEN
186: igs_pe_typ_instances_pkg.insert_row
187: (
188: x_rowid => lv_rowid,
189: x_person_id => new_references.person_id,
190: x_course_cd => null,

Line 213: igs_pe_typ_instances_pkg.update_row

209: IF (new_references.form_effective_date <> old_references.form_effective_date ) THEN
210: OPEN person_type('NONIMG_STUDENT');
211: FETCH person_type INTO l_person_type;
212: CLOSE person_type;
213: igs_pe_typ_instances_pkg.update_row
214: (
215: x_rowid => l_person_type.rowid,
216: x_person_id => l_person_type.person_id,
217: x_course_cd => l_person_type.course_cd,

Line 266: igs_pe_typ_instances_pkg.delete_row ( x_rowid => l_per_inst_rowid.rowid ) ;

262:
263: FOR l_per_inst_rowid IN c_per_inst_rowids ( old_references.person_id,'CREATE_NONIMG_STUDENT')
264: LOOP
265:
266: igs_pe_typ_instances_pkg.delete_row ( x_rowid => l_per_inst_rowid.rowid ) ;
267:
268: END LOOP ;
269: END del_per_inst;
270: