DBA Data[Home] [Help]

APPS.FND_PRODUCT_INITIALIZATION_PKG dependencies on APP_EXCEPTION

Line 40: app_exception.raise_exception(NULL, NULL,

36: fnd_message.set_name('FND', 'SQL_PLSQL_ERROR');
37: fnd_message.set_token('ROUTINE', 'Remove');
38: fnd_message.set_token('ERRNO', to_char(sqlcode));
39: fnd_message.set_token('REASON', sqlerrm);
40: app_exception.raise_exception(NULL, NULL,
41: 'Exception in FND_PRODUCT_INITIALIZATION_PKG.REMOVE');
42: raise;
43: end;
44:

Line 90: app_exception.raise_exception(NULL, NULL,

86: fnd_message.set_name('FND', 'SQL_PLSQL_ERROR');
87: fnd_message.set_token('ROUTINE', 'RemoveInitCondition');
88: fnd_message.set_token('ERRNO', to_char(sqlcode));
89: fnd_message.set_token('REASON', sqlerrm);
90: app_exception.raise_exception(NULL, NULL,
91: 'Exception in FND_PRODUCT_INITIALIZATION_PKG.RemoveInitCondition');
92: raise;
93: end;
94:

Line 140: app_exception.raise_exception(NULL, NULL,

136: fnd_message.set_name('FND', 'SQL_PLSQL_ERROR');
137: fnd_message.set_token('ROUTINE', 'RemoveDependency');
138: fnd_message.set_token('ERRNO', to_char(sqlcode));
139: fnd_message.set_token('REASON', sqlerrm);
140: app_exception.raise_exception(NULL, NULL,
141: 'Exception in FND_PRODUCT_INITIALIZATION_PKG.RemoveDependency');
142: raise;
143: end;
144:

Line 260: app_exception.raise_exception;

256: fnd_message.set_name('FND', 'SQL_PLSQL_ERROR');
257: fnd_message.set_token('ROUTINE',sqlbuf);
258: fnd_message.set_token('ERRNO', to_char(sqlcode));
259: fnd_message.set_token('REASON', sqlerrm);
260: app_exception.raise_exception;
261: end;
262:
263: i := 0;
264: while(deparr(i) is not null) loop

Line 420: app_exception.raise_exception;

416: fnd_message.set_name('FND', 'SQL_PLSQL_ERROR');
417: fnd_message.set_token('ROUTINE',sqlbuf);
418: fnd_message.set_token('ERRNO', to_char(sqlcode));
419: fnd_message.set_token('REASON', sqlerrm);
420: app_exception.raise_exception;
421: end;
422:
423: if (init_function is not null) then
424: -- Execute the init function

Line 449: app_exception.raise_exception;

445: fnd_message.set_token('APPS', deparr(i));
446: fnd_message.set_token('ROUTINE', init_function);
447: fnd_message.set_token('SQLCODE', to_char(sqlcode));
448: fnd_message.set_token('SQLERROR', sqlerrm);
449: app_exception.raise_exception;
450: end;
451: end if;
452: i := i+1;
453: end loop;

Line 528: app_exception.raise_exception(NULL, NULL,

524: fnd_message.set_name('FND', 'SQL_PLSQL_ERROR');
525: fnd_message.set_token('ROUTINE', 'Register');
526: fnd_message.set_token('ERRNO', to_char(sqlcode));
527: fnd_message.set_token('REASON', sqlerrm);
528: app_exception.raise_exception(NULL, NULL,
529: 'Exception in FND_PRODUCT_INITIALIZATION_PKG.REGISTER');
530: end;
531: end Register;
532:

Line 582: app_exception.raise_exception(NULL, NULL,

578: fnd_message.set_name('FND', 'SQL_PLSQL_ERROR');
579: fnd_message.set_token('ROUTINE', 'AddDependency');
580: fnd_message.set_token('ERRNO', to_char(sqlcode));
581: fnd_message.set_token('REASON', sqlerrm);
582: app_exception.raise_exception(NULL, NULL,
583: 'Exception in FND_PRODUCT_INITIALIZATION_PKG.AddDependency');
584: raise;
585: end;
586:

Line 639: app_exception.raise_exception(NULL, NULL,

635: fnd_message.set_name('FND', 'SQL_PLSQL_ERROR');
636: fnd_message.set_token('ROUTINE', 'AddInitCondition');
637: fnd_message.set_token('ERRNO', to_char(sqlcode));
638: fnd_message.set_token('REASON', sqlerrm);
639: app_exception.raise_exception(NULL, NULL,
640: 'Exception in FND_PRODUCT_INITIALIZATION_PKG.AddInitCondition');
641: end;
642:
643: end AddInitCondition;