DBA Data[Home] [Help]

APPS.JTF_OBJECT_DTLS_PKG dependencies on FND_MESSAGE

Line 74: fnd_message.set_name('JTF', 'JTF_API_RECORD_NOT_FOUND');

70: open c;
71: fetch c into recinfo;
72: if (c%notfound) then
73: close c;
74: fnd_message.set_name('JTF', 'JTF_API_RECORD_NOT_FOUND');
75: fnd_msg_pub.add;
76: app_exception.raise_exception;
77: end if;
78: close c;

Line 84: fnd_message.set_name('JTF', 'JTF_API_RECORD_NOT_FOUND');

80: if (recinfo.OBJECT_VERSION_NUMBER = X_OBJECT_VERSION_NUMBER)
81: then
82: null;
83: else
84: fnd_message.set_name('JTF', 'JTF_API_RECORD_NOT_FOUND');
85: fnd_msg_pub.add;
86: app_exception.raise_exception;
87: end if;
88: