DBA Data[Home] [Help]

APPS.IGS_FI_FEE_STR_STAT_PKG dependencies on FND_MESSAGE

Line 31: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');

27: Open cur_old_ref_values;
28: Fetch cur_old_ref_values INTO old_references;
29: IF (cur_old_ref_values%NOTFOUND) AND (p_action NOT IN ('INSERT', 'VALIDATE_INSERT')) THEN
30: Close cur_old_ref_values;
31: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
32: IGS_GE_MSG_STACK.ADD;
33: App_Exception.Raise_Exception;
34: Return;
35: END IF;

Line 83: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');

79:
80: IF upper(Column_Name) = 'CLOSED_IND' OR
81: column_name is NULL THEN
82: IF new_references.closed_ind <> 'Y' AND new_references.closed_ind <> 'N' THEN
83: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
84: IGS_GE_MSG_STACK.ADD;
85: App_Exception.Raise_Exception;
86: END IF;
87: END IF;

Line 94: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');

90: column_name is NULL THEN
91: IF new_references.s_fee_structure_status <> 'ACTIVE' AND
92: new_references.s_fee_structure_status <> 'INACTIVE' AND
93: new_references.s_fee_structure_status <> 'PLANNED' THEN
94: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
95: IGS_GE_MSG_STACK.ADD;
96: App_Exception.Raise_Exception;
97: END IF;
98: END IF;

Line 162: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');

158: );
159: IF (p_action = 'INSERT') THEN
160: -- Call all the procedures related to Before Insert.
161: IF Get_PK_For_Validation ( new_references.fee_structure_status) THEN
162: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
163: IGS_GE_MSG_STACK.ADD;
164: App_Exception.Raise_Exception;
165: END IF;
166: Check_Constraints;

Line 176: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');

172: Check_Child_Existance;
173: ELSIF (p_action = 'VALIDATE_INSERT') THEN
174: -- Call all the procedures related to Before Insert.
175: IF Get_PK_For_Validation ( new_references.fee_structure_status) THEN
176: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
177: IGS_GE_MSG_STACK.ADD;
178: App_Exception.Raise_Exception;
179: END IF;
180: Check_Constraints;

Line 216: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');

212: if X_LAST_UPDATE_LOGIN is NULL then
213: X_LAST_UPDATE_LOGIN := -1;
214: end if;
215: else
216: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
217: IGS_GE_MSG_STACK.ADD;
218: app_exception.raise_exception;
219: end if;
220: Before_DML(

Line 281: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');

277: begin
278: open c1;
279: fetch c1 into tlinfo;
280: if (c1%notfound) then
281: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
282: IGS_GE_MSG_STACK.ADD;
283: app_exception.raise_exception;
284: close c1;
285: return;

Line 294: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');

290: AND (tlinfo.CLOSED_IND = X_CLOSED_IND)
291: ) then
292: null;
293: else
294: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
295: IGS_GE_MSG_STACK.ADD;
296: app_exception.raise_exception;
297: end if;
298: return;

Line 326: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');

322: if X_LAST_UPDATE_LOGIN is NULL then
323: X_LAST_UPDATE_LOGIN := -1;
324: end if;
325: else
326: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
327: IGS_GE_MSG_STACK.ADD;
328: app_exception.raise_exception;
329: end if;
330: Before_DML(