DBA Data[Home] [Help]

APPS.IGS_FI_FEE_CAT_PKG dependencies on FND_MESSAGE

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

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

Line 74: Fnd_Message.Set_Name('IGS',v_message_name);

70: IF IGS_FI_VAL_FC.finp_val_fc_clsd_upd (
71: new_references.fee_cat,
72: new_references.closed_ind,
73: v_message_name) = FALSE THEN
74: Fnd_Message.Set_Name('IGS',v_message_name);
75: IGS_GE_MSG_STACK.ADD;
76: App_Exception.Raise_Exception;
77: END IF;
78: END IF;

Line 84: FND_MESSAGE.SET_NAME('IGS','IGS_FI_DEL_NOT_ALLWD');

80: -- Fee Category records can be deleted logically by making closed_ind as 'Y'
81: -- No physical deletion is allowed. As a part of Bug # 2729919
82: -- Preventing deletion of the Fee Category records.
83: IF p_deleting = TRUE THEN
84: FND_MESSAGE.SET_NAME('IGS','IGS_FI_DEL_NOT_ALLWD');
85: IGS_GE_MSG_STACK.ADD;
86: APP_EXCEPTION.RAISE_EXCEPTION;
87: END IF;
88:

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

113:
114: IF upper(Column_Name) = 'CLOSED_IND' OR
115: column_name is NULL THEN
116: IF new_references.closed_ind <> 'N' AND new_references.closed_ind <> 'Y' THEN
117: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
118: IGS_GE_MSG_STACK.ADD;
119: App_Exception.Raise_Exception;
120: END IF;
121: END IF;

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

122:
123: IF upper(Column_Name) = 'CURRENCY_CD' OR
124: column_name is NULL THEN
125: IF new_references.currency_cd <> UPPER(new_references.currency_cd) THEN
126: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
127: IGS_GE_MSG_STACK.ADD;
128: App_Exception.Raise_Exception;
129: END IF;
130: END IF;

Line 230: Fnd_Message.Set_Name ('IGS', 'IGS_GE_MULTI_ORG_DUP_REC');

226: p_updating => FALSE,
227: p_deleting => FALSE
228: );
229: IF Get_PK_For_Validation ( new_references.fee_cat ) THEN
230: Fnd_Message.Set_Name ('IGS', 'IGS_GE_MULTI_ORG_DUP_REC');
231: IGS_GE_MSG_STACK.ADD;
232: App_Exception.Raise_Exception;
233: END IF;
234: Check_Constraints;

Line 253: Fnd_Message.Set_Name ('IGS', 'IGS_GE_MULTI_ORG_DUP_REC');

249: Check_Child_Existance;
250: ELSIF (p_action = 'VALIDATE_INSERT') THEN
251: -- Call all the procedures related to Before Insert.
252: IF Get_PK_For_Validation ( new_references.fee_cat ) THEN
253: Fnd_Message.Set_Name ('IGS', 'IGS_GE_MULTI_ORG_DUP_REC');
254: IGS_GE_MSG_STACK.ADD;
255: App_Exception.Raise_Exception;
256: END IF;
257: Check_Constraints;

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

295: if X_LAST_UPDATE_LOGIN is NULL then
296: X_LAST_UPDATE_LOGIN := -1;
297: end if;
298: else
299: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
300: IGS_GE_MSG_STACK.ADD;
301: app_exception.raise_exception;
302: end if;
303: Before_DML(

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

363: begin
364: open c1;
365: fetch c1 into tlinfo;
366: if (c1%notfound) then
367: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
368: IGS_GE_MSG_STACK.ADD;
369: app_exception.raise_exception;
370: close c1;
371: return;

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

378: AND (tlinfo.CLOSED_IND = X_CLOSED_IND)
379: ) then
380: null;
381: else
382: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
383: IGS_GE_MSG_STACK.ADD;
384: app_exception.raise_exception;
385: end if;
386: return;

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

411: if X_LAST_UPDATE_LOGIN is NULL then
412: X_LAST_UPDATE_LOGIN := -1;
413: end if;
414: else
415: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
416: IGS_GE_MSG_STACK.ADD;
417: app_exception.raise_exception;
418: end if;
419: Before_DML(