DBA Data[Home] [Help]

APPS.FND_PRODUCT_INITIALIZATION_PKG dependencies on FND_PRODUCT_INITIALIZATION_PKG

Line 1: package body Fnd_Product_Initialization_Pkg as

1: package body Fnd_Product_Initialization_Pkg as
2: /* $Header: AFPINITB.pls 120.6 2007/01/17 18:01:23 rsheh ship $ */
3:
4: --
5: -- Register (PUBLIC)

Line 41: 'Exception in FND_PRODUCT_INITIALIZATION_PKG.REMOVE');

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:
45: end Remove;

Line 91: 'Exception in FND_PRODUCT_INITIALIZATION_PKG.RemoveInitCondition');

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:
95: end RemoveInitCondition;

Line 141: 'Exception in FND_PRODUCT_INITIALIZATION_PKG.RemoveDependency');

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:
145: end RemoveDependency;

Line 210: Fnd_Product_Initialization_Pkg.init_conditions := conditions;

206: -- Reformat the x_conditions so that we can use that in our IN clause.
207: conditions := replace(x_conditions, '_', ',');
208: initfunc_str := conditions;
209:
210: Fnd_Product_Initialization_Pkg.init_conditions := conditions;
211:
212: -- Added the following to fix Bug#3654609
213: -- determine first chuck of string
214: pos := instr(initfunc_str,p_delim,1,1);

Line 461: fnd_product_initialization_pkg.execinitfunction(x_apps_name,

457:
458: procedure Test(x_apps_name in varchar2) is
459: begin
460:
461: fnd_product_initialization_pkg.execinitfunction(x_apps_name,
462: '''APPL''_''RESP''');
463: end Test;
464:
465: -- Register (PUBLIC)

Line 529: 'Exception in FND_PRODUCT_INITIALIZATION_PKG.REGISTER');

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:
533: --

Line 583: 'Exception in FND_PRODUCT_INITIALIZATION_PKG.AddDependency');

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:
587: end AddDependency;

Line 640: 'Exception in FND_PRODUCT_INITIALIZATION_PKG.AddInitCondition');

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;
644:

Line 655: fnd_product_initialization_pkg.ExecInitFunction(

651: --
652: function DiscoInit return number is
653: begin
654:
655: fnd_product_initialization_pkg.ExecInitFunction(
656: fnd_global.application_short_name,
657: '''APPL''_''RESP''_''USER''_''NLS''_''ORG''');
658: return(ExecInitSuccess);
659:

Line 688: end Fnd_Product_Initialization_Pkg;

684: end RemoveAll;
685:
686:
687:
688: end Fnd_Product_Initialization_Pkg;