[Home] [Help]
The following lines contain the word 'select', 'insert', 'update' or 'delete':
x_last_update_date IN DATE ,
x_last_updated_by IN NUMBER ,
x_last_update_login IN NUMBER ,
-- Added following 3 Columns as part of UCCR002 Build. Bug NO: 2278817 by rbezawad
x_starh_socio_economic IN NUMBER ,
x_starx_socio_economic IN NUMBER ,
x_starx_occ_background IN VARCHAR2 ,
-- Added following Columns as part of UCFD102Build. Bug NO: 2643048 by bayadav
x_ivstarh_dependants IN NUMBER ,
x_ivstarh_married IN VARCHAR2 ,
x_ivstarx_religion IN NUMBER ,
x_ivstarx_dependants IN NUMBER ,
x_ivstarx_married IN VARCHAR2
) AS
/*
|| Created By : [email protected]
|| Created On : 21-FEB-2002
|| Purpose : Initialises the Old and New references for the columns of the table.
|| Known limitations, enhancements or remarks :
|| Change History :
|| Who When What
|| smaddali 10-jun-03 obsoleting timestamp columns for ucfd203 - multiple cycles build , bug#2669208 |
|| (reverse chronological order - newest change first)
*/
CURSOR cur_old_ref_values IS
SELECT *
FROM IGS_UC_APP_STATS
WHERE rowid = x_rowid;
IF ((cur_old_ref_values%NOTFOUND) AND (p_action NOT IN ('INSERT', 'VALIDATE_INSERT'))) THEN
CLOSE cur_old_ref_values;
fnd_message.set_name ('FND', 'FORM_RECORD_DELETED');
IF (p_action = 'UPDATE') THEN
new_references.creation_date := old_references.creation_date;
new_references.last_update_date := x_last_update_date;
new_references.last_updated_by := x_last_updated_by;
new_references.last_update_login := x_last_update_login;
fnd_message.set_name ('FND', 'FORM_RECORD_DELETED');
SELECT rowid
FROM igs_uc_app_stats
WHERE app_stat_id = x_app_stat_id ;
SELECT rowid
FROM igs_uc_app_stats
WHERE app_no = x_app_no
AND ((l_rowid IS NULL) OR (rowid <> l_rowid));
SELECT rowid
FROM igs_uc_app_stats
WHERE ((app_id = x_app_id));
x_last_update_date IN DATE ,
x_last_updated_by IN NUMBER ,
x_last_update_login IN NUMBER ,
-- Added following 3 Columns as part of UCCR002 Build. Bug NO: 2278817 by rbezawad
x_starh_socio_economic IN NUMBER ,
x_starx_socio_economic IN NUMBER ,
x_starx_occ_background IN VARCHAR2 ,
-- Added following Columns as part of UCFD102Build. Bug NO: 2643048 by bayadav
x_ivstarh_dependants IN NUMBER ,
x_ivstarh_married IN VARCHAR2 ,
x_ivstarx_religion IN NUMBER ,
x_ivstarx_dependants IN NUMBER ,
x_ivstarx_married IN VARCHAR2
) AS
/*
|| Created By : [email protected]
|| Created On : 21-FEB-2002
|| Purpose : Initialises the columns, Checks Constraints, Calls the
|| Trigger Handlers for the table, before any DML operation.
|| Known limitations, enhancements or remarks :
|| Change History :
|| Who When What
|| smaddali 10-jun-03 obsoleting timestamp columns for ucfd203 - multiple cycles build , bug#2669208 |
|| (reverse chronological order - newest change first)
*/
BEGIN
set_column_values (
p_action,
x_rowid,
x_app_stat_id,
x_app_id,
x_app_no,
x_starh_ethnic,
x_starh_social_class,
x_starh_pocc_edu_chg_dt,
x_starh_pocc,
x_starh_pocc_text,
x_starh_last_edu_inst,
x_starh_edu_leave_date,
x_starh_lea,
x_starx_ethnic,
x_starx_pocc_edu_chg,
x_starx_pocc,
x_starx_pocc_text,
x_sent_to_hesa,
x_creation_date,
x_created_by,
x_last_update_date,
x_last_updated_by,
x_last_update_login,
x_starh_socio_economic,
x_starx_socio_economic,
x_starx_occ_background,
x_ivstarh_dependants,
x_ivstarh_married,
x_ivstarx_religion,
x_ivstarx_dependants,
x_ivstarx_married
);
IF (p_action = 'INSERT') THEN
-- Call all the procedures related to Before Insert.
IF ( get_pk_for_validation(
new_references.app_stat_id
)
) THEN
fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
ELSIF (p_action = 'UPDATE') THEN
-- Call all the procedures related to Before Update.
check_uniqueness;
ELSIF (p_action = 'VALIDATE_INSERT') THEN
-- Call all the procedures related to Before Insert.
IF ( get_pk_for_validation (
new_references.app_stat_id
)
) THEN
fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
ELSIF (p_action = 'VALIDATE_UPDATE') THEN
check_uniqueness;
PROCEDURE insert_row (
x_rowid IN OUT NOCOPY VARCHAR2,
x_app_stat_id IN OUT NOCOPY NUMBER,
x_app_id IN NUMBER,
x_app_no IN NUMBER,
x_starh_ethnic IN NUMBER,
x_starh_social_class IN VARCHAR2,
x_starh_pocc_edu_chg_dt IN DATE,
x_starh_pocc IN VARCHAR2,
x_starh_pocc_text IN VARCHAR2,
x_starh_last_edu_inst IN NUMBER,
x_starh_edu_leave_date IN NUMBER,
x_starh_lea IN NUMBER,
x_starx_ethnic IN NUMBER,
x_starx_pocc_edu_chg IN DATE,
x_starx_pocc IN VARCHAR2,
x_starx_pocc_text IN VARCHAR2,
x_sent_to_hesa IN VARCHAR2,
x_mode IN VARCHAR2 ,
-- Added following 3 Columns as part of UCCR002 Build. Bug NO: 2278817 by rbezawad
x_starh_socio_economic IN NUMBER ,
x_starx_socio_economic IN NUMBER ,
x_starx_occ_background IN VARCHAR2 ,
-- Added following Columns as part of UCFD102Build. Bug NO: 2643048 by bayadav
x_ivstarh_dependants IN NUMBER ,
x_ivstarh_married IN VARCHAR2 ,
x_ivstarx_religion IN NUMBER ,
x_ivstarx_dependants IN NUMBER ,
x_ivstarx_married IN VARCHAR2
) AS
/*
|| Created By : [email protected]
|| Created On : 21-FEB-2002
|| Purpose : Handles the INSERT DML logic for the table.
|| Known limitations, enhancements or remarks :
|| Change History :
|| Who When What
|| smaddali 10-jun-03 obsoleting timestamp columns for ucfd203 - multiple cycles build , bug#2669208 |
|| (reverse chronological order - newest change first)
*/
CURSOR c IS
SELECT rowid
FROM igs_uc_app_stats
WHERE app_stat_id = x_app_stat_id;
x_last_update_date DATE;
x_last_updated_by NUMBER;
x_last_update_login NUMBER;
x_last_update_date := SYSDATE;
x_last_updated_by := 1;
x_last_update_login := 0;
x_last_updated_by := fnd_global.user_id;
IF (x_last_updated_by IS NULL) THEN
x_last_updated_by := -1;
x_last_update_login := fnd_global.login_id;
IF (x_last_update_login IS NULL) THEN
x_last_update_login := -1;
SELECT igs_uc_app_stats_s.NEXTVAL
INTO x_app_stat_id
FROM dual;
p_action => 'INSERT',
x_rowid => x_rowid,
x_app_stat_id => x_app_stat_id,
x_app_id => x_app_id,
x_app_no => x_app_no,
x_starh_ethnic => x_starh_ethnic,
x_starh_social_class => x_starh_social_class,
x_starh_pocc_edu_chg_dt => x_starh_pocc_edu_chg_dt,
x_starh_pocc => x_starh_pocc,
x_starh_pocc_text => x_starh_pocc_text,
x_starh_last_edu_inst => x_starh_last_edu_inst,
x_starh_edu_leave_date => x_starh_edu_leave_date,
x_starh_lea => x_starh_lea,
x_starx_ethnic => x_starx_ethnic,
x_starx_pocc_edu_chg => x_starx_pocc_edu_chg,
x_starx_pocc => x_starx_pocc,
x_starx_pocc_text => x_starx_pocc_text,
x_sent_to_hesa => x_sent_to_hesa,
x_creation_date => x_last_update_date,
x_created_by => x_last_updated_by,
x_last_update_date => x_last_update_date,
x_last_updated_by => x_last_updated_by,
x_last_update_login => x_last_update_login,
x_starh_socio_economic => x_starh_socio_economic,
x_starx_socio_economic => x_starx_socio_economic,
x_starx_occ_background => x_starx_occ_background,
x_ivstarh_dependants => x_ivstarh_dependants,
x_ivstarh_married => x_ivstarh_married,
x_ivstarx_religion => x_ivstarx_religion,
x_ivstarx_dependants => x_ivstarx_dependants,
x_ivstarx_married => x_ivstarx_married
);
INSERT INTO igs_uc_app_stats (
app_stat_id,
app_id,
app_no,
starh_ethnic,
starh_social_class,
starh_pocc_edu_chg_dt,
starh_pocc,
starh_pocc_text,
starh_last_edu_inst,
starh_edu_leave_date,
starh_lea,
starx_ethnic,
starx_pocc_edu_chg,
starx_pocc,
starx_pocc_text,
sent_to_hesa,
creation_date,
created_by,
last_update_date,
last_updated_by,
last_update_login,
starh_socio_economic,
starx_socio_economic,
starx_occ_background,
ivstarh_dependants,
ivstarh_married,
ivstarx_religion,
ivstarx_dependants,
ivstarx_married
) VALUES (
new_references.app_stat_id,
new_references.app_id,
new_references.app_no,
new_references.starh_ethnic,
new_references.starh_social_class,
new_references.starh_pocc_edu_chg_dt,
new_references.starh_pocc,
new_references.starh_pocc_text,
new_references.starh_last_edu_inst,
new_references.starh_edu_leave_date,
new_references.starh_lea,
new_references.starx_ethnic,
new_references.starx_pocc_edu_chg,
new_references.starx_pocc,
new_references.starx_pocc_text,
new_references.sent_to_hesa,
x_last_update_date,
x_last_updated_by,
x_last_update_date,
x_last_updated_by,
x_last_update_login,
new_references.starh_socio_economic,
new_references.starx_socio_economic,
new_references.starx_occ_background,
new_references.ivstarh_dependants,
new_references.ivstarh_married,
new_references.ivstarx_religion,
new_references.ivstarx_dependants,
new_references.ivstarx_married
);
END insert_row;
SELECT
app_id,
app_no,
starh_ethnic,
starh_social_class,
starh_pocc_edu_chg_dt,
starh_pocc,
starh_pocc_text,
starh_last_edu_inst,
starh_edu_leave_date,
starh_lea,
starx_ethnic,
starx_pocc_edu_chg,
starx_pocc,
starx_pocc_text,
sent_to_hesa,
starh_socio_economic,
starx_socio_economic,
starx_occ_background,
ivstarh_dependants,
ivstarh_married,
ivstarx_religion,
ivstarx_dependants,
ivstarx_married
FROM igs_uc_app_stats
WHERE rowid = x_rowid
FOR UPDATE NOWAIT;
fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
PROCEDURE update_row (
x_rowid IN VARCHAR2,
x_app_stat_id IN NUMBER,
x_app_id IN NUMBER,
x_app_no IN NUMBER,
x_starh_ethnic IN NUMBER,
x_starh_social_class IN VARCHAR2,
x_starh_pocc_edu_chg_dt IN DATE,
x_starh_pocc IN VARCHAR2,
x_starh_pocc_text IN VARCHAR2,
x_starh_last_edu_inst IN NUMBER,
x_starh_edu_leave_date IN NUMBER,
x_starh_lea IN NUMBER,
x_starx_ethnic IN NUMBER,
x_starx_pocc_edu_chg IN DATE,
x_starx_pocc IN VARCHAR2,
x_starx_pocc_text IN VARCHAR2,
x_sent_to_hesa IN VARCHAR2,
x_mode IN VARCHAR2 ,
-- Added following 3 Columns as part of UCCR002 Build. Bug NO: 2278817 by rbezawad
x_starh_socio_economic IN NUMBER ,
x_starx_socio_economic IN NUMBER ,
x_starx_occ_background IN VARCHAR2 ,
-- Added following Columns as part of UCFD102Build. Bug NO: 2643048 by bayadav
x_ivstarh_dependants IN NUMBER ,
x_ivstarh_married IN VARCHAR2 ,
x_ivstarx_religion IN NUMBER ,
x_ivstarx_dependants IN NUMBER ,
x_ivstarx_married IN VARCHAR2
) AS
/*
|| Created By : [email protected]
|| Created On : 21-FEB-2002
|| Purpose : Handles the UPDATE DML logic for the table.
|| Known limitations, enhancements or remarks :
|| Change History :
|| Who When What
|| smaddali 10-jun-03 obsoleting timestamp columns for ucfd203 - multiple cycles build , bug#2669208 |
|| (reverse chronological order - newest change first)
*/
x_last_update_date DATE ;
x_last_updated_by NUMBER;
x_last_update_login NUMBER;
x_last_update_date := SYSDATE;
x_last_updated_by := 1;
x_last_update_login := 0;
x_last_updated_by := fnd_global.user_id;
IF x_last_updated_by IS NULL THEN
x_last_updated_by := -1;
x_last_update_login := fnd_global.login_id;
IF (x_last_update_login IS NULL) THEN
x_last_update_login := -1;
p_action => 'UPDATE',
x_rowid => x_rowid,
x_app_stat_id => x_app_stat_id,
x_app_id => x_app_id,
x_app_no => x_app_no,
x_starh_ethnic => x_starh_ethnic,
x_starh_social_class => x_starh_social_class,
x_starh_pocc_edu_chg_dt => x_starh_pocc_edu_chg_dt,
x_starh_pocc => x_starh_pocc,
x_starh_pocc_text => x_starh_pocc_text,
x_starh_last_edu_inst => x_starh_last_edu_inst,
x_starh_edu_leave_date => x_starh_edu_leave_date,
x_starh_lea => x_starh_lea,
x_starx_ethnic => x_starx_ethnic,
x_starx_pocc_edu_chg => x_starx_pocc_edu_chg,
x_starx_pocc => x_starx_pocc,
x_starx_pocc_text => x_starx_pocc_text,
x_sent_to_hesa => x_sent_to_hesa,
x_creation_date => x_last_update_date,
x_created_by => x_last_updated_by,
x_last_update_date => x_last_update_date,
x_last_updated_by => x_last_updated_by,
x_last_update_login => x_last_update_login,
x_starh_socio_economic => x_starh_socio_economic,
x_starx_socio_economic => x_starx_socio_economic,
x_starx_occ_background => x_starx_occ_background,
x_ivstarh_dependants => x_ivstarh_dependants,
x_ivstarh_married => x_ivstarh_married,
x_ivstarx_religion => x_ivstarx_religion,
x_ivstarx_dependants => x_ivstarx_dependants,
x_ivstarx_married => x_ivstarx_married
);
UPDATE igs_uc_app_stats
SET
app_id = new_references.app_id,
app_no = new_references.app_no,
starh_ethnic = new_references.starh_ethnic,
starh_social_class = new_references.starh_social_class,
starh_pocc_edu_chg_dt = new_references.starh_pocc_edu_chg_dt,
starh_pocc = new_references.starh_pocc,
starh_pocc_text = new_references.starh_pocc_text,
starh_last_edu_inst = new_references.starh_last_edu_inst,
starh_edu_leave_date = new_references.starh_edu_leave_date,
starh_lea = new_references.starh_lea,
starx_ethnic = new_references.starx_ethnic,
starx_pocc_edu_chg = new_references.starx_pocc_edu_chg,
starx_pocc = new_references.starx_pocc,
starx_pocc_text = new_references.starx_pocc_text,
sent_to_hesa = new_references.sent_to_hesa,
last_update_date = x_last_update_date,
last_updated_by = x_last_updated_by,
last_update_login = x_last_update_login,
starh_socio_economic = new_references.starh_socio_economic,
starx_socio_economic = new_references.starx_socio_economic,
starx_occ_background = new_references.starx_occ_background,
-- Added following Columns as part of UCFD102Build. Bug NO: 2643048 by bayadav
ivstarh_dependants = new_references.ivstarh_dependants,
ivstarh_married = new_references.ivstarh_married,
ivstarx_religion = new_references.ivstarx_religion,
ivstarx_dependants = new_references.ivstarx_dependants,
ivstarx_married = new_references.ivstarx_married
WHERE rowid = x_rowid;
END update_row;
|| Purpose : Adds a row if there is no existing row, otherwise updates existing row in the table.
|| Known limitations, enhancements or remarks :
|| Change History :
|| Who When What
|| smaddali 10-jun-03 obsoleting timestamp columns for ucfd203 - multiple cycles build , bug#2669208 |
|| (reverse chronological order - newest change first)
*/
CURSOR c1 IS
SELECT rowid
FROM igs_uc_app_stats
WHERE app_stat_id = x_app_stat_id;
insert_row (
x_rowid,
x_app_stat_id,
x_app_id,
x_app_no,
x_starh_ethnic,
x_starh_social_class,
x_starh_pocc_edu_chg_dt,
x_starh_pocc,
x_starh_pocc_text,
x_starh_last_edu_inst,
x_starh_edu_leave_date,
x_starh_lea,
x_starx_ethnic,
x_starx_pocc_edu_chg,
x_starx_pocc,
x_starx_pocc_text,
x_sent_to_hesa,
x_mode,
x_starh_socio_economic,
x_starx_socio_economic,
x_starx_occ_background,
x_ivstarh_dependants,
x_ivstarh_married,
x_ivstarx_religion,
x_ivstarx_dependants,
x_ivstarx_married
);
update_row (
x_rowid,
x_app_stat_id,
x_app_id,
x_app_no,
x_starh_ethnic,
x_starh_social_class,
x_starh_pocc_edu_chg_dt,
x_starh_pocc,
x_starh_pocc_text,
x_starh_last_edu_inst,
x_starh_edu_leave_date,
x_starh_lea,
x_starx_ethnic,
x_starx_pocc_edu_chg,
x_starx_pocc,
x_starx_pocc_text,
x_sent_to_hesa,
x_mode,
x_starh_socio_economic,
x_starx_socio_economic,
x_starx_occ_background ,
x_ivstarh_dependants,
x_ivstarh_married,
x_ivstarx_religion,
x_ivstarx_dependants,
x_ivstarx_married
);
PROCEDURE delete_row (
x_rowid IN VARCHAR2
) AS
/*
|| Created By : [email protected]
|| Created On : 21-FEB-2002
|| Purpose : Handles the DELETE DML logic for the table.
|| Known limitations, enhancements or remarks :
|| Change History :
|| Who When What
|| (reverse chronological order - newest change first)
*/
BEGIN
before_dml (
p_action => 'DELETE',
x_rowid => x_rowid
);
DELETE FROM igs_uc_app_stats
WHERE rowid = x_rowid;
END delete_row;