DBA Data[Home] [Help]

APPS.JTF_TASK_CUSTOM_COLORS_PKG dependencies on FND_MESSAGE

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

85: fetch c1 into recinfo;
86:
87: if (c1%notfound) then
88: close c1;
89: fnd_message.set_name('JTF', 'JTF_API_RECORD_NOT_FOUND');
90: app_exception.raise_exception;
91: end if;
92: close c1;
93:

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

92: close c1;
93:
94: IF (recinfo.object_version_number <> x_object_version_number)
95: THEN
96: fnd_message.set_name ('JTF', 'JTF_API_RECORD_NOT_FOUND');
97: fnd_msg_pub.add;
98: app_exception.raise_exception;
99: END IF;
100:

Line 103: fnd_message.set_name('FND', 'FND_LOCK_RECORD_ERROR');

99: END IF;
100:
101: exception
102: when e_resource_busy then
103: fnd_message.set_name('FND', 'FND_LOCK_RECORD_ERROR');
104: fnd_msg_pub.add;
105: app_exception.raise_exception;
106: end LOCK_ROW;
107: