DBA Data[Home] [Help]

APPS.OE_PC_CONC_REQUESTS dependencies on FND_API

Line 126: RAISE FND_API.G_EXC_ERROR;

122:
123: -- if there was an error in compiling the package, raise
124: -- an error
125: if n > 0 then
126: RAISE FND_API.G_EXC_ERROR;
127: end if;
128:
129: End Create_Package_From_Buffer;
130:

Line 270: IF (l_return_status = fnd_api.G_RET_STS_SUCCESS)

266: ,x_return_status => l_return_status
267: ,x_msg_data => l_msg_data
268: ,x_msg_count => l_msg_count);
269:
270: IF (l_return_status = fnd_api.G_RET_STS_SUCCESS)
271: THEN
272:
273: PUT_LINE( 'Successfully generated Validation Package');
274:

Line 311: WHEN FND_API.G_EXC_ERROR THEN

307:
308: -- Continue creating other validation pkgs even if there were errors
309: -- when creating this package
310: EXCEPTION
311: WHEN FND_API.G_EXC_ERROR THEN
312: NULL;
313: END;
314:
315: ELSE

Line 332: when FND_API.G_EXC_ERROR then

328:
329: retcode := 0;
330:
331: EXCEPTION
332: when FND_API.G_EXC_ERROR then
333: retcode := 2;
334: errbuf := 'Please fix the error in the log file';
335: PUT_LINE(
336: 'Please fix the errors in this log file and re-run the concurrent program.');