DBA Data[Home] [Help]

APPS.PJI_PA_DEL_MAIN dependencies on PJI_UTILS

Line 218: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||

214:
215: FND_MESSAGE.SET_NAME('PA', 'PA_PMC_WORKPLAN_VER');
216: l_wp_version := FND_MESSAGE.GET;
217:
218: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||
219: '-----------------------------------------------------------------------------------------------------------------------------------------' );
220:
221: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||
222: ' '||l_rpt_header);

Line 221: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||

217:
218: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||
219: '-----------------------------------------------------------------------------------------------------------------------------------------' );
220:
221: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||
222: ' '||l_rpt_header);
223: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||
224: '-----------------------------------------------------------------------------------------------------------------------------------------' );
225:

Line 223: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||

219: '-----------------------------------------------------------------------------------------------------------------------------------------' );
220:
221: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||
222: ' '||l_rpt_header);
223: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||
224: '-----------------------------------------------------------------------------------------------------------------------------------------' );
225:
226: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||
227: l_Proj_Number||' '||l_wp_version );

Line 226: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||

222: ' '||l_rpt_header);
223: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||
224: '-----------------------------------------------------------------------------------------------------------------------------------------' );
225:
226: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||
227: l_Proj_Number||' '||l_wp_version );
228: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||
229: '====================== =================' );
230:

Line 228: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||

224: '-----------------------------------------------------------------------------------------------------------------------------------------' );
225:
226: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||
227: l_Proj_Number||' '||l_wp_version );
228: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||
229: '====================== =================' );
230:
231: for rec in proj_wp(l_from_proj_num,l_to_proj_num) loop
232: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||rpad(rec.num,27,' ')||rec.wp_name);

Line 232: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||rpad(rec.num,27,' ')||rec.wp_name);

228: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||
229: '====================== =================' );
230:
231: for rec in proj_wp(l_from_proj_num,l_to_proj_num) loop
232: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||rpad(rec.num,27,' ')||rec.wp_name);
233: END LOOp;
234:
235: IF g_wp_option IS NOT NULL THEN
236: OPEN proj_wp(l_from_proj_num,l_to_proj_num);

Line 240: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||'No workplan version found eligible for deleting');

236: OPEN proj_wp(l_from_proj_num,l_to_proj_num);
237: FETCH proj_wp INTO l_temp_proj_num, l_temp_plan_name;
238: IF l_temp_proj_num IS NULL THEN
239:
240: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||'No workplan version found eligible for deleting');
241:
242: END IF;
243: CLOSE proj_wp;
244: END IF;

Line 249: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||

245: l_temp_proj_num := '';
246: l_temp_plan_name := '';
247:
248:
249: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||
250: '-----------------------------------------------------------------------------------------------------------------------------------------' );
251:
252: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||
253: l_Proj_Number||' '||l_version_name );

Line 252: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||

248:
249: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||
250: '-----------------------------------------------------------------------------------------------------------------------------------------' );
251:
252: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||
253: l_Proj_Number||' '||l_version_name );
254: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||
255: '====================== ======================' );
256:

Line 254: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||

250: '-----------------------------------------------------------------------------------------------------------------------------------------' );
251:
252: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||
253: l_Proj_Number||' '||l_version_name );
254: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||
255: '====================== ======================' );
256:
257: for rec in proj_fp(l_from_proj_num,l_to_proj_num) loop
258: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||rpad(rec.num,27,' ')||rec.fp_name);

Line 258: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||rpad(rec.num,27,' ')||rec.fp_name);

254: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||
255: '====================== ======================' );
256:
257: for rec in proj_fp(l_from_proj_num,l_to_proj_num) loop
258: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||rpad(rec.num,27,' ')||rec.fp_name);
259: END LOOp;
260:
261: IF g_fp_option IS NOT NULL THEN
262: OPEN proj_fp(l_from_proj_num,l_to_proj_num);

Line 266: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||'No financial plan found eligible for deleting');

262: OPEN proj_fp(l_from_proj_num,l_to_proj_num);
263: FETCH proj_fp INTO l_temp_proj_num, l_temp_plan_name;
264: IF l_temp_proj_num IS NULL THEN
265:
266: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||'No financial plan found eligible for deleting');
267:
268: END IF;
269: CLOSE proj_fp;
270: END IF;

Line 271: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||

267:
268: END IF;
269: CLOSE proj_fp;
270: END IF;
271: PJI_UTILS.WRITE2OUT(fnd_global.local_chr(10) ||
272: '----------------------------------------------------------'||l_rpt_footer||'----------------------------------------------------------');
273:
274: pa_debug.log_message('======= Print Output End ========== :', 1);
275: