DBA Data[Home] [Help]

APPS.IGS_PE_EV_FORM_PKG dependencies on IGS_PE_TYP_INSTANCES_PKG

Line 174: igs_pe_typ_instances_pkg.insert_row

170: OPEN per_type('EXCHG_VISITOR','N');
171: FETCH per_type INTO l_per_type;
172: IF per_type%FOUND THEN
173: IF p_insert = TRUE THEN
174: igs_pe_typ_instances_pkg.insert_row
175: (
176: X_ROWID => lv_rowid,
177: X_PERSON_ID => new_references.person_id,
178: X_COURSE_CD => null,

Line 203: igs_pe_typ_instances_pkg.UPDATE_ROW

199: OPEN person_type('EXCHG_VISITOR');
200: FETCH person_type INTO l_person_type;
201: CLOSE person_type;
202:
203: igs_pe_typ_instances_pkg.UPDATE_ROW
204: (
205: X_ROWID => l_person_type.rowid,
206: X_PERSON_ID => l_person_type.person_id,
207: X_COURSE_CD => l_person_type.course_cd,

Line 228: igs_pe_typ_instances_pkg.DELETE_ROW(l_person_type.rowid);

224: ELSIF p_delete = TRUE THEN
225: OPEN person_type('EXCHG_VISITOR');
226: FETCH person_type INTO l_person_type;
227: CLOSE person_type;
228: igs_pe_typ_instances_pkg.DELETE_ROW(l_person_type.rowid);
229: END IF;
230: CLOSE per_type;
231: END IF;
232: END afterrowinsertupdatedel;