DBA Data[Home] [Help]

APPS.AR_BPA_URL_PARAMS_PKG dependencies on FND_MESSAGE

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

83: open c;
84: fetch c into recinfo;
85: if (c%notfound) then
86: close c;
87: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
88: app_exception.raise_exception;
89: end if;
90: close c;
91: if ( (recinfo.URL_PARAM_ID = X_URL_PARAM_ID)

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

101: OR ((recinfo.ENCRYPTED_FLAG is null) AND (X_ENCRYPTED_FLAG is null)))
102: ) then
103: null;
104: else
105: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
106: app_exception.raise_exception;
107: end if;
108: return;
109: end LOCK_ROW;