DBA Data[Home] [Help]

SYSTEM.AD_INST dependencies on AD_APPS_PRIVATE

Line 42: ad_apps_private.error_buf := null;

38:
39: begin
40: -- initialize error buffers
41: ad_inst.error_buf := null;
42: ad_apps_private.error_buf := null;
43:
44: -- Check for APPS*DDL packages
45: ad_apps_private.check_for_apps_ddl(in_schema);
46:

Line 45: ad_apps_private.check_for_apps_ddl(in_schema);

41: ad_inst.error_buf := null;
42: ad_apps_private.error_buf := null;
43:
44: -- Check for APPS*DDL packages
45: ad_apps_private.check_for_apps_ddl(in_schema);
46:
47: -- first compile all invalid packages specifications
48: for c1rec in c1 loop
49: -- for each invalid object compile

Line 122: '):'||ad_inst.error_buf||':'||ad_apps_private.error_buf;

118:
119: exception
120: when others then
121: ad_inst.error_buf := 'compile_schema('||in_schema||
122: '):'||ad_inst.error_buf||':'||ad_apps_private.error_buf;
123: raise;
124: end compile_schema;
125:
126: