DBA Data[Home] [Help]

APPS.EDR_PSIG_SIGN_PARAMS_PKG dependencies on FND_MESSAGE

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

95: open c;
96: fetch c into recinfo;
97: if (c%notfound) then
98: close c;
99: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
100: app_exception.raise_exception;
101: end if;
102: close c;
103: if ( ((recinfo.SIGNATURE_ID = X_SIGNATURE_ID)

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

108: OR ((recinfo.VALUE is null) AND (X_VALUE is null)))
109: ) then
110: null;
111: else
112: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
113: app_exception.raise_exception;
114: end if;
115:
116: for tlinfo in c1 loop

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

119: OR ((tlinfo.DISPLAY_NAME is null) AND (X_DISPLAY_NAME is null)))
120: ) then
121: null;
122: else
123: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
124: app_exception.raise_exception;
125: end if;
126: end if;
127: end loop;