DBA Data[Home] [Help]

APPS.CN_CALC_SQL_EXPS_PKG dependencies on FND_MESSAGE

Line 135: FND_MESSAGE.SET_NAME('CN', 'CN_EXPRESSION_CREATE');

131: X_LAST_UPDATE_DATE,
132: X_LAST_UPDATED_BY,
133: X_OBJECT_VERSION_NUMBER);
134:
135: FND_MESSAGE.SET_NAME('CN', 'CN_EXPRESSION_CREATE');
136: FND_MESSAGE.SET_TOKEN('EXPRESSION_NAME', X_NAME);
137: l_note_msg := FND_MESSAGE.GET;
138:
139: jtf_notes_pub.create_note

Line 136: FND_MESSAGE.SET_TOKEN('EXPRESSION_NAME', X_NAME);

132: X_LAST_UPDATED_BY,
133: X_OBJECT_VERSION_NUMBER);
134:
135: FND_MESSAGE.SET_NAME('CN', 'CN_EXPRESSION_CREATE');
136: FND_MESSAGE.SET_TOKEN('EXPRESSION_NAME', X_NAME);
137: l_note_msg := FND_MESSAGE.GET;
138:
139: jtf_notes_pub.create_note
140: ( p_api_version => 1.0,

Line 137: l_note_msg := FND_MESSAGE.GET;

133: X_OBJECT_VERSION_NUMBER);
134:
135: FND_MESSAGE.SET_NAME('CN', 'CN_EXPRESSION_CREATE');
136: FND_MESSAGE.SET_TOKEN('EXPRESSION_NAME', X_NAME);
137: l_note_msg := FND_MESSAGE.GET;
138:
139: jtf_notes_pub.create_note
140: ( p_api_version => 1.0,
141: x_return_status => x_return_status,

Line 170: fnd_message.set_name('CN', 'CN_RECORD_DELETED');

166: open c;
167: fetch c into tlinfo;
168: if (c%notfound) then
169: close c;
170: fnd_message.set_name('CN', 'CN_RECORD_DELETED');
171: fnd_msg_pub.add;
172: raise fnd_api.g_exc_unexpected_error;
173: end if;
174: close c;

Line 177: fnd_message.set_name('CN', 'CN_RECORD_CHANGED');

173: end if;
174: close c;
175:
176: if (tlinfo.object_version_number <> p_object_version_number) then
177: fnd_message.set_name('CN', 'CN_RECORD_CHANGED');
178: fnd_msg_pub.add;
179: raise fnd_api.g_exc_unexpected_error;
180: end if;
181:

Line 267: fnd_message.set_name('CN', 'CN_RECORD_DELETED');

263: delete from CN_CALC_SQL_EXPS
264: where CALC_SQL_EXP_ID = X_CALC_SQL_EXP_ID;
265:
266: if (sql%notfound) then
267: fnd_message.set_name('CN', 'CN_RECORD_DELETED');
268: fnd_msg_pub.add;
269: raise fnd_api.g_exc_unexpected_error;
270: end if;
271: