DBA Data[Home] [Help]

APPS.GR_EIN_ASL_RISKS_PKG dependencies on APP_EXCEPTION

Line 126: APP_EXCEPTION.Raise_Exception;

122: FND_MESSAGE.SET_TOKEN('TEXT',
123: l_msg_data,
124: FALSE);
125: IF FND_API.To_Boolean(p_called_by_form) THEN
126: APP_EXCEPTION.Raise_Exception;
127: ELSE
128: x_msg_data := FND_MESSAGE.Get;
129: END IF;
130:

Line 134: x_oracle_error := APP_EXCEPTION.Get_Code;

130:
131: WHEN Key_Exists_Error THEN
132: ROLLBACK TO SAVEPOINT Insert_Row;
133: x_return_status := 'E';
134: x_oracle_error := APP_EXCEPTION.Get_Code;
135: FND_MESSAGE.SET_NAME('GR',
136: 'GR_RECORD_EXISTS');
137: FND_MESSAGE.SET_TOKEN('CODE',
138: p_sequence_number || ',' || p_risk_phrase_code,

Line 141: APP_EXCEPTION.Raise_Exception;

137: FND_MESSAGE.SET_TOKEN('CODE',
138: p_sequence_number || ',' || p_risk_phrase_code,
139: FALSE);
140: IF FND_API.To_Boolean(p_called_by_form) THEN
141: APP_EXCEPTION.Raise_Exception;
142: ELSE
143: x_msg_data := FND_MESSAGE.Get;
144: END IF;
145:

Line 149: x_oracle_error := APP_EXCEPTION.Get_Code;

145:
146: WHEN Row_Missing_Error THEN
147: ROLLBACK TO SAVEPOINT Insert_Row;
148: x_return_status := 'E';
149: x_oracle_error := APP_EXCEPTION.Get_Code;
150: FND_MESSAGE.SET_NAME('GR',
151: 'GR_NO_RECORD_INSERTED');
152: FND_MESSAGE.SET_TOKEN('CODE',
153: p_sequence_number || ',' || p_risk_phrase_code,

Line 156: APP_EXCEPTION.Raise_Exception;

152: FND_MESSAGE.SET_TOKEN('CODE',
153: p_sequence_number || ',' || p_risk_phrase_code,
154: FALSE);
155: IF FND_API.To_Boolean(p_called_by_form) THEN
156: APP_EXCEPTION.Raise_Exception;
157: ELSE
158: x_msg_data := FND_MESSAGE.Get;
159: END IF;
160:

Line 172: APP_EXCEPTION.Raise_Exception;

168: FND_MESSAGE.SET_TOKEN('TEXT',
169: l_msg_data,
170: FALSE);
171: IF FND_API.To_Boolean(p_called_by_form) THEN
172: APP_EXCEPTION.Raise_Exception;
173: ELSE
174: x_msg_data := FND_MESSAGE.Get;
175: END IF;
176:

Line 319: APP_EXCEPTION.Raise_Exception;

315: ROLLBACK TO SAVEPOINT Delete_Row;
316: x_return_status := l_return_status;
317: x_oracle_error := l_oracle_error;
318: IF FND_API.To_Boolean(p_called_by_form) THEN
319: APP_EXCEPTION.Raise_Exception;
320: ELSE
321: x_msg_data := FND_MESSAGE.Get;
322: END IF;
323:

Line 327: x_oracle_error := APP_EXCEPTION.Get_Code;

323:
324: WHEN Row_Missing_Error THEN
325: ROLLBACK TO SAVEPOINT Delete_Row;
326: x_return_status := 'E';
327: x_oracle_error := APP_EXCEPTION.Get_Code;
328: FND_MESSAGE.SET_NAME('GR',
329: 'GR_RECORD_NOT_FOUND');
330: FND_MESSAGE.SET_TOKEN('CODE',
331: p_sequence_number || ', '

Line 335: APP_EXCEPTION.Raise_Exception;

331: p_sequence_number || ', '
332: || p_risk_phrase_code,
333: FALSE);
334: IF FND_API.To_Boolean(p_called_by_form) THEN
335: APP_EXCEPTION.Raise_Exception;
336: ELSE
337: x_msg_data := FND_MESSAGE.Get;
338: END IF;
339:

Line 351: APP_EXCEPTION.Raise_Exception;

347: FND_MESSAGE.SET_TOKEN('TEXT',
348: l_msg_data,
349: FALSE);
350: IF FND_API.To_Boolean(p_called_by_form) THEN
351: APP_EXCEPTION.Raise_Exception;
352: ELSE
353: x_msg_data := FND_MESSAGE.Get;
354: END IF;
355:

Line 412: APP_EXCEPTION.Raise_Exception;

408: FND_MESSAGE.SET_TOKEN('TEXT',
409: l_msg_data,
410: FALSE);
411: IF FND_API.To_Boolean(p_called_by_form) THEN
412: APP_EXCEPTION.Raise_Exception;
413: END IF;
414:
415: END Check_Primary_Key;
416: