[Home] [Help]
The following lines contain the word 'select', 'insert', 'update' or 'delete':
x_last_update_date IN DATE DEFAULT NULL,
x_last_updated_by IN NUMBER DEFAULT NULL,
x_last_update_login IN NUMBER DEFAULT NULL,
-- anilk, bug#2784198
x_closed_ind IN VARCHAR2 DEFAULT NULL
) as
CURSOR cur_old_ref_values IS
SELECT *
FROM IGS_AS_ASSESSMNT_ITM_ALL
WHERE rowid = x_rowid;
IF (cur_old_ref_values%NOTFOUND) AND (p_action NOT IN ('INSERT','VALIDATE_INSERT')) THEN
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;
PROCEDURE BeforeRowInsertUpdate1(
p_inserting IN BOOLEAN DEFAULT FALSE,
p_updating IN BOOLEAN DEFAULT FALSE,
p_deleting IN BOOLEAN DEFAULT FALSE
) as
v_message_name varchar2(30);
IF p_inserting THEN
--
-- Validate assessment type closed indicator
IF IGS_AS_VAL_AI.assp_val_atyp_closed(new_references.assessment_type,
v_message_name) = FALSE THEN
Fnd_Message.Set_Name('IGS', v_message_name);
IF p_inserting OR p_updating THEN
--
-- Validate the approp. ass item details set and are not set for the
-- respective assessment type examinable indicator setting
IF IGS_AS_VAL_AI.assp_val_ai_details(new_references.assessment_type,
new_references.exam_scheduled_ind,
new_references.exam_working_time,
new_references.exam_announcements,
new_references.exam_short_paper_name,
new_references.exam_paper_name,
new_references.exam_perusal_time,
new_references.exam_supervisor_instrctn,
new_references.exam_allowable_instrctn,
new_references.exam_non_allowed_instrctn,
new_references.exam_supplied_instrctn,
new_references.question_or_title,
new_references.ass_length_or_duration,
v_message_name) = FALSE THEN
Fnd_Message.Set_Name('IGS', v_message_name);
END BeforeRowInsertUpdate1;
PROCEDURE AfterRowUpdate2(
p_inserting IN BOOLEAN DEFAULT FALSE,
p_updating IN BOOLEAN DEFAULT FALSE,
p_deleting IN BOOLEAN DEFAULT FALSE
) as
v_message_name varchar2(30);
END AfterRowUpdate2;
Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
SELECT rowid
FROM IGS_AS_ASSESSMNT_ITM_ALL
WHERE ass_id = x_ass_id;
SELECT rowid
FROM IGS_AS_ASSESSMNT_ITM_ALL
WHERE assessment_type = x_assessment_type ;
x_last_update_date IN DATE DEFAULT NULL,
x_last_updated_by IN NUMBER DEFAULT NULL,
x_last_update_login IN NUMBER DEFAULT NULL,
-- anilk, bug#2784198
x_closed_ind IN VARCHAR2 DEFAULT NULL
) as
BEGIN
Set_Column_Values (
p_action,
x_rowid,
x_org_id,
x_ass_id,
x_assessment_type,
x_description,
x_exam_scheduled_ind,
x_exam_working_time,
x_exam_announcements,
x_exam_short_paper_name,
x_exam_paper_name,
x_exam_perusal_time,
x_exam_supervisor_instrctn,
x_exam_allowable_instrctn,
x_exam_non_allowed_instrctn,
x_exam_supplied_instrctn,
x_question_or_title,
x_ass_length_or_duration,
x_comments,
x_exam_constraints,
x_attribute_category,
x_attribute1,
x_attribute2,
x_attribute3,
x_attribute4,
x_attribute5,
x_attribute6,
x_attribute7,
x_attribute8,
x_attribute9,
x_attribute10,
x_attribute11,
x_attribute12,
x_attribute13,
x_attribute14,
x_attribute15,
x_attribute16,
x_attribute17,
x_attribute18,
x_attribute19,
x_attribute20,
x_creation_date,
x_created_by,
x_last_update_date,
x_last_updated_by,
x_last_update_login,
-- anilk, bug#2784198
x_closed_ind
);
IF (p_action = 'INSERT') THEN
-- Call all the procedures related to Before Insert.
BeforeRowInsertUpdate1 ( p_inserting => TRUE );
ELSIF (p_action = 'UPDATE') THEN
-- Call all the procedures related to Before Update.
BeforeRowInsertUpdate1 ( p_updating => TRUE );
ELSIF (p_action = 'DELETE') THEN
-- Call all the procedures related to Before Delete.
Null;
ELSIF (p_action = 'VALIDATE_INSERT') THEN
IF Get_PK_For_Validation (
new_references.ass_id
) THEN
Fnd_Message.Set_Name ('IGS', 'IGS_GE_MULTI_ORG_DUP_REC');
ELSIF (p_action = 'VALIDATE_UPDATE') THEN
Check_Constraints;
ELSIF (p_action = 'VALIDATE_DELETE') THEN
Check_Child_Existance;
procedure INSERT_ROW (
X_ROWID in out NOCOPY VARCHAR2,
X_ORG_ID in NUMBER,
X_ASS_ID in NUMBER,
X_ASSESSMENT_TYPE in VARCHAR2,
X_DESCRIPTION in VARCHAR2,
X_EXAM_SHORT_PAPER_NAME in VARCHAR2,
X_EXAM_PAPER_NAME in VARCHAR2,
X_EXAM_WORKING_TIME in DATE,
X_EXAM_PERUSAL_TIME in DATE,
X_EXAM_SCHEDULED_IND in VARCHAR2,
X_EXAM_SUPERVISOR_INSTRCTN in VARCHAR2,
X_EXAM_ANNOUNCEMENTS in VARCHAR2,
X_EXAM_ALLOWABLE_INSTRCTN in VARCHAR2,
X_EXAM_NON_ALLOWED_INSTRCTN in VARCHAR2,
X_EXAM_SUPPLIED_INSTRCTN in VARCHAR2,
X_EXAM_CONSTRAINTS in VARCHAR2,
X_QUESTION_OR_TITLE in VARCHAR2,
X_ASS_LENGTH_OR_DURATION in VARCHAR2,
X_COMMENTS in VARCHAR2,
x_attribute_category IN VARCHAR2,
x_attribute1 IN VARCHAR2,
x_attribute2 IN VARCHAR2,
x_attribute3 IN VARCHAR2,
x_attribute4 IN VARCHAR2,
x_attribute5 IN VARCHAR2,
x_attribute6 IN VARCHAR2,
x_attribute7 IN VARCHAR2,
x_attribute8 IN VARCHAR2,
x_attribute9 IN VARCHAR2,
x_attribute10 IN VARCHAR2,
x_attribute11 IN VARCHAR2,
x_attribute12 IN VARCHAR2,
x_attribute13 IN VARCHAR2,
x_attribute14 IN VARCHAR2,
x_attribute15 IN VARCHAR2,
x_attribute16 IN VARCHAR2,
x_attribute17 IN VARCHAR2,
x_attribute18 IN VARCHAR2,
x_attribute19 IN VARCHAR2,
x_attribute20 IN VARCHAR2,
X_MODE in VARCHAR2 default 'R',
-- anilk, bug#2784198
x_closed_ind IN VARCHAR2
) as
cursor C is select ROWID from IGS_AS_ASSESSMNT_ITM_all
where ASS_ID = X_ASS_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;
p_action=>'INSERT',
x_rowid=>X_ROWID,
x_org_id => igs_ge_gen_003.get_org_id,
x_ass_id=>X_ASS_ID,
x_ass_length_or_duration=>X_ASS_LENGTH_OR_DURATION,
x_assessment_type=>X_ASSESSMENT_TYPE,
x_comments=>X_COMMENTS,
x_description=>X_DESCRIPTION,
x_exam_allowable_instrctn=>X_EXAM_ALLOWABLE_INSTRCTN,
x_exam_announcements=>X_EXAM_ANNOUNCEMENTS,
x_exam_constraints=>X_EXAM_CONSTRAINTS,
x_exam_non_allowed_instrctn=>X_EXAM_NON_ALLOWED_INSTRCTN,
x_exam_paper_name=>X_EXAM_PAPER_NAME,
x_exam_perusal_time=>X_EXAM_PERUSAL_TIME,
x_exam_scheduled_ind=>X_EXAM_SCHEDULED_IND,
x_exam_short_paper_name=>X_EXAM_SHORT_PAPER_NAME,
x_exam_supervisor_instrctn=>X_EXAM_SUPERVISOR_INSTRCTN,
x_exam_supplied_instrctn=>X_EXAM_SUPPLIED_INSTRCTN,
x_exam_working_time=>X_EXAM_WORKING_TIME,
x_question_or_title=>X_QUESTION_OR_TITLE,
x_attribute_category=>x_attribute_category,
x_attribute1=>x_attribute1,
x_attribute2=>x_attribute2,
x_attribute3=>x_attribute3,
x_attribute4=>x_attribute4,
x_attribute5=>x_attribute5,
x_attribute6=>x_attribute6,
x_attribute7=>x_attribute7,
x_attribute8=>x_attribute8,
x_attribute9=>x_attribute9,
x_attribute10=>x_attribute10,
x_attribute11=>x_attribute11,
x_attribute12=>x_attribute12,
x_attribute13=>x_attribute13,
x_attribute14=>x_attribute14,
x_attribute15=>x_attribute15,
x_attribute16=>x_attribute16,
x_attribute17=>x_attribute17,
x_attribute18=>x_attribute18,
x_attribute19=>x_attribute19,
x_attribute20=>x_attribute20,
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,
-- anilk, bug#2784198
x_closed_ind => x_closed_ind
);
insert into IGS_AS_ASSESSMNT_ITM_ALL (
ORG_ID,
ASS_ID,
ASSESSMENT_TYPE,
DESCRIPTION,
EXAM_SHORT_PAPER_NAME,
EXAM_PAPER_NAME,
EXAM_WORKING_TIME,
EXAM_PERUSAL_TIME,
EXAM_SCHEDULED_IND,
EXAM_SUPERVISOR_INSTRCTN,
EXAM_ANNOUNCEMENTS,
EXAM_ALLOWABLE_INSTRCTN,
EXAM_NON_ALLOWED_INSTRCTN,
EXAM_SUPPLIED_INSTRCTN,
EXAM_CONSTRAINTS,
QUESTION_OR_TITLE,
ASS_LENGTH_OR_DURATION,
COMMENTS,
attribute_category,
attribute1,
attribute2,
attribute3,
attribute4,
attribute5,
attribute6,
attribute7,
attribute8,
attribute9,
attribute10,
attribute11,
attribute12,
attribute13,
attribute14,
attribute15,
attribute16,
attribute17,
attribute18,
attribute19,
attribute20,
CREATION_DATE,
CREATED_BY,
LAST_UPDATE_DATE,
LAST_UPDATED_BY,
LAST_UPDATE_LOGIN,
-- anilk, bug#2784198
closed_ind
) values (
NEW_REFERENCES.ORG_ID,
NEW_REFERENCES.ASS_ID,
NEW_REFERENCES.ASSESSMENT_TYPE,
NEW_REFERENCES.DESCRIPTION,
NEW_REFERENCES.EXAM_SHORT_PAPER_NAME,
NEW_REFERENCES.EXAM_PAPER_NAME,
NEW_REFERENCES.EXAM_WORKING_TIME,
NEW_REFERENCES.EXAM_PERUSAL_TIME,
NEW_REFERENCES.EXAM_SCHEDULED_IND,
NEW_REFERENCES.EXAM_SUPERVISOR_INSTRCTN,
NEW_REFERENCES.EXAM_ANNOUNCEMENTS,
NEW_REFERENCES.EXAM_ALLOWABLE_INSTRCTN,
NEW_REFERENCES.EXAM_NON_ALLOWED_INSTRCTN,
NEW_REFERENCES.EXAM_SUPPLIED_INSTRCTN,
NEW_REFERENCES.EXAM_CONSTRAINTS,
NEW_REFERENCES.QUESTION_OR_TITLE,
NEW_REFERENCES.ASS_LENGTH_OR_DURATION,
NEW_REFERENCES.COMMENTS,
new_references.attribute_category,
new_references.attribute1,
new_references.attribute2,
new_references.attribute3,
new_references.attribute4,
new_references.attribute5,
new_references.attribute6,
new_references.attribute7,
new_references.attribute8,
new_references.attribute9,
new_references.attribute10,
new_references.attribute11,
new_references.attribute12,
new_references.attribute13,
new_references.attribute14,
new_references.attribute15,
new_references.attribute16,
new_references.attribute17,
new_references.attribute18,
new_references.attribute19,
new_references.attribute20,
X_LAST_UPDATE_DATE,
X_LAST_UPDATED_BY,
X_LAST_UPDATE_DATE,
X_LAST_UPDATED_BY,
X_LAST_UPDATE_LOGIN,
-- anilk, bug#2784198
new_references.closed_ind
);
end INSERT_ROW;
cursor c1 is select
ASSESSMENT_TYPE,
DESCRIPTION,
EXAM_SHORT_PAPER_NAME,
EXAM_PAPER_NAME,
EXAM_WORKING_TIME,
EXAM_PERUSAL_TIME,
EXAM_SCHEDULED_IND,
EXAM_SUPERVISOR_INSTRCTN,
EXAM_ANNOUNCEMENTS,
EXAM_ALLOWABLE_INSTRCTN,
EXAM_NON_ALLOWED_INSTRCTN,
EXAM_SUPPLIED_INSTRCTN,
EXAM_CONSTRAINTS,
QUESTION_OR_TITLE,
ASS_LENGTH_OR_DURATION,
COMMENTS,
attribute_category,
attribute1,
attribute2,
attribute3,
attribute4,
attribute5,
attribute6,
attribute7,
attribute8,
attribute9,
attribute10,
attribute11,
attribute12,
attribute13,
attribute14,
attribute15,
attribute16,
attribute17,
attribute18,
attribute19,
attribute20,
-- anilk, bug#2784198
closed_ind
from IGS_AS_ASSESSMNT_ITM_ALL
where ROWID = X_ROWID for update nowait;
fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
procedure UPDATE_ROW (
X_ROWID in VARCHAR2,
X_ASS_ID in NUMBER,
X_ASSESSMENT_TYPE in VARCHAR2,
X_DESCRIPTION in VARCHAR2,
X_EXAM_SHORT_PAPER_NAME in VARCHAR2,
X_EXAM_PAPER_NAME in VARCHAR2,
X_EXAM_WORKING_TIME in DATE,
X_EXAM_PERUSAL_TIME in DATE,
X_EXAM_SCHEDULED_IND in VARCHAR2,
X_EXAM_SUPERVISOR_INSTRCTN in VARCHAR2,
X_EXAM_ANNOUNCEMENTS in VARCHAR2,
X_EXAM_ALLOWABLE_INSTRCTN in VARCHAR2,
X_EXAM_NON_ALLOWED_INSTRCTN in VARCHAR2,
X_EXAM_SUPPLIED_INSTRCTN in VARCHAR2,
X_EXAM_CONSTRAINTS in VARCHAR2,
X_QUESTION_OR_TITLE in VARCHAR2,
X_ASS_LENGTH_OR_DURATION in VARCHAR2,
X_COMMENTS in VARCHAR2,
x_attribute_category IN VARCHAR2,
x_attribute1 IN VARCHAR2,
x_attribute2 IN VARCHAR2,
x_attribute3 IN VARCHAR2,
x_attribute4 IN VARCHAR2,
x_attribute5 IN VARCHAR2,
x_attribute6 IN VARCHAR2,
x_attribute7 IN VARCHAR2,
x_attribute8 IN VARCHAR2,
x_attribute9 IN VARCHAR2,
x_attribute10 IN VARCHAR2,
x_attribute11 IN VARCHAR2,
x_attribute12 IN VARCHAR2,
x_attribute13 IN VARCHAR2,
x_attribute14 IN VARCHAR2,
x_attribute15 IN VARCHAR2,
x_attribute16 IN VARCHAR2,
x_attribute17 IN VARCHAR2,
x_attribute18 IN VARCHAR2,
x_attribute19 IN VARCHAR2,
x_attribute20 IN VARCHAR2,
X_MODE in VARCHAR2 default 'R',
-- anilk, bug#2784198
x_closed_ind IN VARCHAR2
) as
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_ass_id=>X_ASS_ID,
x_ass_length_or_duration=>X_ASS_LENGTH_OR_DURATION,
x_assessment_type=>X_ASSESSMENT_TYPE,
x_comments=>X_COMMENTS,
x_description=>X_DESCRIPTION,
x_exam_allowable_instrctn=>X_EXAM_ALLOWABLE_INSTRCTN,
x_exam_announcements=>X_EXAM_ANNOUNCEMENTS,
x_exam_constraints=>X_EXAM_CONSTRAINTS,
x_exam_non_allowed_instrctn=>X_EXAM_NON_ALLOWED_INSTRCTN,
x_exam_paper_name=>X_EXAM_PAPER_NAME,
x_exam_perusal_time=>X_EXAM_PERUSAL_TIME,
x_exam_scheduled_ind=>X_EXAM_SCHEDULED_IND,
x_exam_short_paper_name=>X_EXAM_SHORT_PAPER_NAME,
x_exam_supervisor_instrctn=>X_EXAM_SUPERVISOR_INSTRCTN,
x_exam_supplied_instrctn=>X_EXAM_SUPPLIED_INSTRCTN,
x_exam_working_time=>X_EXAM_WORKING_TIME,
x_attribute_category=>x_attribute_category,
x_attribute1=>x_attribute1,
x_attribute2=>x_attribute2,
x_attribute3=>x_attribute3,
x_attribute4=>x_attribute4,
x_attribute5=>x_attribute5,
x_attribute6=>x_attribute6,
x_attribute7=>x_attribute7,
x_attribute8=>x_attribute8,
x_attribute9=>x_attribute9,
x_attribute10=>x_attribute10,
x_attribute11=>x_attribute11,
x_attribute12=>x_attribute12,
x_attribute13=>x_attribute13,
x_attribute14=>x_attribute14,
x_attribute15=>x_attribute15,
x_attribute16=>x_attribute16,
x_attribute17=>x_attribute17,
x_attribute18=>x_attribute18,
x_attribute19=>x_attribute19,
x_attribute20=>x_attribute20,
x_question_or_title=>X_QUESTION_OR_TITLE,
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,
-- anilk, bug#2784198
x_closed_ind => x_closed_ind
);
update IGS_AS_ASSESSMNT_ITM_ALL set
ASSESSMENT_TYPE = NEW_REFERENCES.ASSESSMENT_TYPE,
DESCRIPTION = NEW_REFERENCES.DESCRIPTION,
EXAM_SHORT_PAPER_NAME = NEW_REFERENCES.EXAM_SHORT_PAPER_NAME,
EXAM_PAPER_NAME = NEW_REFERENCES.EXAM_PAPER_NAME,
EXAM_WORKING_TIME = NEW_REFERENCES.EXAM_WORKING_TIME,
EXAM_PERUSAL_TIME = NEW_REFERENCES.EXAM_PERUSAL_TIME,
EXAM_SCHEDULED_IND = NEW_REFERENCES.EXAM_SCHEDULED_IND,
EXAM_SUPERVISOR_INSTRCTN = NEW_REFERENCES.EXAM_SUPERVISOR_INSTRCTN,
EXAM_ANNOUNCEMENTS = NEW_REFERENCES.EXAM_ANNOUNCEMENTS,
EXAM_ALLOWABLE_INSTRCTN = NEW_REFERENCES.EXAM_ALLOWABLE_INSTRCTN,
EXAM_NON_ALLOWED_INSTRCTN = NEW_REFERENCES.EXAM_NON_ALLOWED_INSTRCTN,
EXAM_SUPPLIED_INSTRCTN = NEW_REFERENCES.EXAM_SUPPLIED_INSTRCTN,
EXAM_CONSTRAINTS = NEW_REFERENCES.EXAM_CONSTRAINTS,
QUESTION_OR_TITLE = NEW_REFERENCES.QUESTION_OR_TITLE,
ASS_LENGTH_OR_DURATION = NEW_REFERENCES.ASS_LENGTH_OR_DURATION,
COMMENTS = NEW_REFERENCES.COMMENTS,
attribute_category = new_references.attribute_category,
attribute1 = new_references.attribute1,
attribute2 = new_references.attribute2,
attribute3 = new_references.attribute3,
attribute4 = new_references.attribute4,
attribute5 = new_references.attribute5,
attribute6 = new_references.attribute6,
attribute7 = new_references.attribute7,
attribute8 = new_references.attribute8,
attribute9 = new_references.attribute9,
attribute10 = new_references.attribute10,
attribute11 = new_references.attribute11,
attribute12 = new_references.attribute12,
attribute13 = new_references.attribute13,
attribute14 = new_references.attribute14,
attribute15 = new_references.attribute15,
attribute16 = new_references.attribute16,
attribute17 = new_references.attribute17,
attribute18 = new_references.attribute18,
attribute19 = new_references.attribute19,
attribute20 = new_references.attribute20,
LAST_UPDATE_DATE = X_LAST_UPDATE_DATE,
LAST_UPDATED_BY = X_LAST_UPDATED_BY,
LAST_UPDATE_LOGIN = X_LAST_UPDATE_LOGIN,
-- anilk, bug#2784198
closed_ind = new_references.closed_ind
where ROWID = X_ROWID;
end UPDATE_ROW;
cursor c1 is select rowid from IGS_AS_ASSESSMNT_ITM_ALL
where ASS_ID = X_ASS_ID
;
INSERT_ROW (
X_ROWID,
X_ORG_ID,
X_ASS_ID,
X_ASSESSMENT_TYPE,
X_DESCRIPTION,
X_EXAM_SHORT_PAPER_NAME,
X_EXAM_PAPER_NAME,
X_EXAM_WORKING_TIME,
X_EXAM_PERUSAL_TIME,
X_EXAM_SCHEDULED_IND,
X_EXAM_SUPERVISOR_INSTRCTN,
X_EXAM_ANNOUNCEMENTS,
X_EXAM_ALLOWABLE_INSTRCTN,
X_EXAM_NON_ALLOWED_INSTRCTN,
X_EXAM_SUPPLIED_INSTRCTN,
X_EXAM_CONSTRAINTS,
X_QUESTION_OR_TITLE,
X_ASS_LENGTH_OR_DURATION,
X_COMMENTS,
x_attribute_category,
x_attribute1,
x_attribute2,
x_attribute3,
x_attribute4,
x_attribute5,
x_attribute6,
x_attribute7,
x_attribute8,
x_attribute9,
x_attribute10,
x_attribute11,
x_attribute12,
x_attribute13,
x_attribute14,
x_attribute15,
x_attribute16,
x_attribute17,
x_attribute18,
x_attribute19,
x_attribute20,
X_MODE,
-- anilk, bug#2784198
x_closed_ind
);
UPDATE_ROW (
X_ROWID,
X_ASS_ID,
X_ASSESSMENT_TYPE,
X_DESCRIPTION,
X_EXAM_SHORT_PAPER_NAME,
X_EXAM_PAPER_NAME,
X_EXAM_WORKING_TIME,
X_EXAM_PERUSAL_TIME,
X_EXAM_SCHEDULED_IND,
X_EXAM_SUPERVISOR_INSTRCTN,
X_EXAM_ANNOUNCEMENTS,
X_EXAM_ALLOWABLE_INSTRCTN,
X_EXAM_NON_ALLOWED_INSTRCTN,
X_EXAM_SUPPLIED_INSTRCTN,
X_EXAM_CONSTRAINTS,
X_QUESTION_OR_TITLE,
X_ASS_LENGTH_OR_DURATION,
X_COMMENTS,
x_attribute_category,
x_attribute1,
x_attribute2,
x_attribute3,
x_attribute4,
x_attribute5,
x_attribute6,
x_attribute7,
x_attribute8,
x_attribute9,
x_attribute10,
x_attribute11,
x_attribute12,
x_attribute13,
x_attribute14,
x_attribute15,
x_attribute16,
x_attribute17,
x_attribute18,
x_attribute19,
x_attribute20,
X_MODE,
-- anilk, bug#2784198
x_closed_ind
);