DBA Data[Home] [Help]

APPS.PAY_COSTING_DETAIL_REP_PKG dependencies on FND_FILE

Line 693: fnd_file.put_line(fnd_file.output, formated_header_string(

689: gv_title := hr_general.decode_fnd_comm_lookup
690: ('PAYROLL_REPORTS',
691: 'COSTING_REPORT_TITLE');
692:
693: fnd_file.put_line(fnd_file.output, formated_header_string(
694: gv_title
695: ,p_output_file_type
696: ));
697:

Line 705: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');

701: ** the body and table before printing the header info, otherwise
702: ** just print the header information.
703: ****************************************************************/
704: if p_output_file_type ='HTML' then
705: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
706: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
707: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
708: end if;
709:

Line 706: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '
');

702: ** just print the header information.
703: ****************************************************************/
704: if p_output_file_type ='HTML' then
705: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
706: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '

');
707: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
708: end if;
709:
710: fnd_file.put_line(fnd_file.output, lv_header_label);

Line 707: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '
');

703: ****************************************************************/
704: if p_output_file_type ='HTML' then
705: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
706: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '

');
707: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
708: end if;
709:
710: fnd_file.put_line(fnd_file.output, lv_header_label);
711:

Line 710: fnd_file.put_line(fnd_file.output, lv_header_label);

706: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '

');
707: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
708: end if;
709:
710: fnd_file.put_line(fnd_file.output, lv_header_label);
711:
712: if p_output_file_type ='HTML' then
713: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
714: end if;

Line 713: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');

709:
710: fnd_file.put_line(fnd_file.output, lv_header_label);
711:
712: if p_output_file_type ='HTML' then
713: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
714: end if;
715:
716: hr_utility.set_location(gv_package_name || '.costing_extract', 80);
717: /*****************************************************

Line 1355: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, lv_data_row);

1351: if p_output_file_type ='HTML' then
1352: lv_data_row := '

' || lv_data_row || '' ;
1353: end if;
1354:
1355: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, lv_data_row);
1356:
1357: -- end if; /********** End of Assignment Set ************************/
1358:
1359: /*****************************************************************

Line 1373: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '
');

1369: ** Close of the Data Section of the Report
1370: *****************************************************/
1371:
1372: if p_output_file_type ='HTML' then
1373: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
1374: end if;
1375: hr_utility.trace('Concurrent Request ID = ' || FND_GLOBAL.CONC_REQUEST_ID);
1376:
1377: END costing_extract;