DBA Data[Home] [Help]

APPS.FA_RX_PARAMETERS_PKG dependencies on FND_MESSAGE

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

73: Open c_reports;
74: Fetch c_reports into recinfo;
75: IF (c_reports%notfound) then
76: close c_reports;
77: fnd_message.set_name('FND','FORM_RECORD_DELETED');
78: app_exception.raise_exception;
79:
80: End if;
81: Close c_reports;

Line 95: FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_CHANGED');

91: AND (recinfo.max_length = X_max_length)
92: AND (recinfo.datatype = X_datatype)) then
93: return;
94: else
95: FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_CHANGED');
96: APP_EXCEPTION.Raise_Exception;
97: end if;
98:
99: end lock_row;