DBA Data[Home] [Help]

APPS.GCS_LEX_MAP_GL_APPLY_PKG dependencies on FND_MESSAGE

Line 155: x_errbuf := FND_MESSAGE.get;

151:
152: -- If the request was submitted successfully, then update the request id
153: -- to be that of the journal import request.
154: IF req_id <= 0 THEN
155: x_errbuf := FND_MESSAGE.get;
156: x_retcode := '2';
157: ELSE
158: -- Pause the parent so that the child can go through.
159: fnd_conc_global.set_req_globals(conc_status => 'PAUSED',

Line 167: FND_MESSAGE.set_name('GCS', 'GCS_IDT_GL_FAILURE');

163:
164: return;
165: EXCEPTION
166: WHEN gcs_lex_map_gl_failed THEN
167: FND_MESSAGE.set_name('GCS', 'GCS_IDT_GL_FAILURE');
168: x_errbuf := FND_MESSAGE.get;
169: x_retcode := '2';
170: WHEN OTHERS THEN
171: FND_MESSAGE.set_name('GCS', 'GCS_IDT_GL_UNEXPECTED');

Line 168: x_errbuf := FND_MESSAGE.get;

164: return;
165: EXCEPTION
166: WHEN gcs_lex_map_gl_failed THEN
167: FND_MESSAGE.set_name('GCS', 'GCS_IDT_GL_FAILURE');
168: x_errbuf := FND_MESSAGE.get;
169: x_retcode := '2';
170: WHEN OTHERS THEN
171: FND_MESSAGE.set_name('GCS', 'GCS_IDT_GL_UNEXPECTED');
172: x_errbuf := FND_MESSAGE.get;

Line 171: FND_MESSAGE.set_name('GCS', 'GCS_IDT_GL_UNEXPECTED');

167: FND_MESSAGE.set_name('GCS', 'GCS_IDT_GL_FAILURE');
168: x_errbuf := FND_MESSAGE.get;
169: x_retcode := '2';
170: WHEN OTHERS THEN
171: FND_MESSAGE.set_name('GCS', 'GCS_IDT_GL_UNEXPECTED');
172: x_errbuf := FND_MESSAGE.get;
173: x_retcode := '2';
174: END Apply_Transformation;
175:

Line 172: x_errbuf := FND_MESSAGE.get;

168: x_errbuf := FND_MESSAGE.get;
169: x_retcode := '2';
170: WHEN OTHERS THEN
171: FND_MESSAGE.set_name('GCS', 'GCS_IDT_GL_UNEXPECTED');
172: x_errbuf := FND_MESSAGE.get;
173: x_retcode := '2';
174: END Apply_Transformation;
175:
176: END GCS_LEX_MAP_GL_APPLY_PKG;