DBA Data[Home] [Help]

APPS.HZ_BES_BO_GEN_PKG dependencies on HZ_GEN_PLSQL

Line 228: HZ_GEN_PLSQL.add_line(str);

224: PROCEDURE l(
225: str IN VARCHAR2
226: ) IS
227: BEGIN
228: HZ_GEN_PLSQL.add_line(str);
229: END l;
230: --------------------------------------
231: -- This would write a line preceeded by an indent and line ends with
232: -- a new line char.

Line 237: HZ_GEN_PLSQL.add_line(g_indent||str);

233: PROCEDURE li(
234: str IN VARCHAR2
235: ) IS
236: BEGIN
237: HZ_GEN_PLSQL.add_line(g_indent||str);
238: END li;
239: --------------------------------------
240: -- This would write a line preceeded by two indentations and line ends with
241: -- a new line char.

Line 246: HZ_GEN_PLSQL.add_line(g_indent||g_indent||str);

242: PROCEDURE l2i(
243: str IN VARCHAR2
244: ) IS
245: BEGIN
246: HZ_GEN_PLSQL.add_line(g_indent||g_indent||str);
247: END l2i;
248: --------------------------------------
249:
250: -- This would write the line in the buffer WITHOUT NEW LINE CHAR at

Line 256: HZ_GEN_PLSQL.add_line(str, false);

252: PROCEDURE ll(
253: str IN VARCHAR2
254: ) IS
255: BEGIN
256: HZ_GEN_PLSQL.add_line(str, false);
257: END ll;
258: --------------------------------------
259: -- This would write a line by preceeding with an indent and NO NEW LINE char
260: -- at the end.

Line 265: HZ_GEN_PLSQL.add_line(g_indent||str, false);

261: PROCEDURE lli(
262: str IN VARCHAR2
263: ) IS
264: BEGIN
265: HZ_GEN_PLSQL.add_line(g_indent||str, false);
266: END lli;
267: --------------------------------------
268: -- This would write a line by preceeding with two indentations
269: -- and NO NEW LINE char at the end.

Line 274: HZ_GEN_PLSQL.add_line(g_indent||g_indent||str, false);

270: PROCEDURE ll2i(
271: str IN VARCHAR2
272: ) IS
273: BEGIN
274: HZ_GEN_PLSQL.add_line(g_indent||g_indent||str, false);
275: END ll2i;
276:
277: /*
278: Procedure name: genPkgBdyHdr()

Line 342: HZ_GEN_PLSQL.new(p_package_name, 'PACKAGE BODY');

338: p_prefix=>l_prefix,
339: p_msg_level=>fnd_log.level_procedure);
340: END IF ;
341: END;
342: HZ_GEN_PLSQL.new(p_package_name, 'PACKAGE BODY');
343: l('CREATE OR REPLACE PACKAGE BODY '||p_package_name||' AS');
344: l('');
345: l('/*=======================================================================+');
346: l(' | Copyright (c) 2006 Oracle Corporation Redwood Shores, California, USA|');

Line 385: HZ_GEN_PLSQL.new(p_package_name, 'PACKAGE');

381: p_prefix=>l_prefix,
382: p_msg_level=>fnd_log.level_procedure);
383: END IF ;
384:
385: HZ_GEN_PLSQL.new(p_package_name, 'PACKAGE');
386: l('CREATE OR REPLACE PACKAGE '||p_package_name||' AS');
387: l('');
388: l('/*=======================================================================+');
389: l(' | Copyright (c) 2006 Oracle Corporation Redwood Shores, California, USA|');

Line 441: HZ_GEN_PLSQL.compile_code;

437:
438:
439: l('END '||p_package_name||';');
440: -- compile the package.
441: HZ_GEN_PLSQL.compile_code;
442:
443: if fnd_log.level_procedure>=fnd_log.g_current_runtime_level then
444: hz_utility_v2pub.debug(p_message=>'genPkgBdyTail()-',
445: p_prefix=>l_debug_prefix,