DBA Data[Home] [Help]

APPS.OE_DEFAULTING_FWK_PUB dependencies on AD_DDL

Line 11: -- 5529963 : from ad_ddl.build_package spec. max_line_size is up tp 256 char

7: g_login_seq VARCHAR2(15) := abs(FND_GLOBAL.login_id);
8: g_schema VARCHAR2(30);
9: g_conc_mode VARCHAR2(1);
10:
11: -- 5529963 : from ad_ddl.build_package spec. max_line_size is up tp 256 char
12: g_max_line_size NUMBER := 256;
13:
14: line_number NUMBER := 0;
15: -- Global Cache Table defined for Performance issue we want to genarate PkgBdy once

Line 80: ad_ddl.build_package(' ',line_number);

76: --
77: BEGIN
78:
79: line_number := line_number + 1;
80: ad_ddl.build_package(' ',line_number);
81:
82: END New_Line;
83:
84: -------------------------------------------------------------------------

Line 112: ad_ddl.build_package(LPAD(p_string,p_level*2+LENGTH(p_string)),line_number);

108: BEGIN
109:
110: line_number := line_number + 1;
111: /* replaced with the next line for bug fix 3179429
112: ad_ddl.build_package(LPAD(p_string,p_level*2+LENGTH(p_string)),line_number);
113: */
114: ad_ddl.build_package(LPAD(' ', p_level*2)||p_string, line_number);
115:
116: END text;

Line 114: ad_ddl.build_package(LPAD(' ', p_level*2)||p_string, line_number);

110: line_number := line_number + 1;
111: /* replaced with the next line for bug fix 3179429
112: ad_ddl.build_package(LPAD(p_string,p_level*2+LENGTH(p_string)),line_number);
113: */
114: ad_ddl.build_package(LPAD(' ', p_level*2)||p_string, line_number);
115:
116: END text;
117:
118: -------------------------------------------------------------------------------

Line 184: 'Call AD_DDL to create '||p_pkg_type||' of package '||p_pkg_name);

180: l_is_pkg_body := 'FALSE';
181: END IF;
182:
183: PUT_LINE(
184: 'Call AD_DDL to create '||p_pkg_type||' of package '||p_pkg_name);
185:
186:
187: ad_ddl.create_package(applsys_schema => g_schema
188: ,application_short_name => 'ONT'

Line 187: ad_ddl.create_package(applsys_schema => g_schema

183: PUT_LINE(
184: 'Call AD_DDL to create '||p_pkg_type||' of package '||p_pkg_name);
185:
186:
187: ad_ddl.create_package(applsys_schema => g_schema
188: ,application_short_name => 'ONT'
189: ,package_name => p_pkg_name
190: ,is_package_body => l_is_pkg_body
191: ,lb => 1

Line 215: raise_application_error(-20000,SQLERRM||' '||ad_ddl.error_buf);

211: exception
212: when FND_API.G_EXC_ERROR then
213: raise FND_API.G_EXC_ERROR;
214: when others THEN
215: raise_application_error(-20000,SQLERRM||' '||ad_ddl.error_buf);
216: -- PUT_LINE('Iam into exception' ||ad_ddl.error_buf);
217: -- RAISE FND_API.G_EXC_ERROR;
218:
219: END Pkg_End;

Line 216: -- PUT_LINE('Iam into exception' ||ad_ddl.error_buf);

212: when FND_API.G_EXC_ERROR then
213: raise FND_API.G_EXC_ERROR;
214: when others THEN
215: raise_application_error(-20000,SQLERRM||' '||ad_ddl.error_buf);
216: -- PUT_LINE('Iam into exception' ||ad_ddl.error_buf);
217: -- RAISE FND_API.G_EXC_ERROR;
218:
219: END Pkg_End;
220: