DBA Data[Home] [Help]

APPS.PAY_COSTING_DETAIL_REP_PKG dependencies on FND_FILE

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

680: gv_title := hr_general.decode_fnd_comm_lookup
681: ('PAYROLL_REPORTS',
682: 'COSTING_REPORT_TITLE');
683:
684: fnd_file.put_line(fnd_file.output, formated_header_string(
685: gv_title
686: ,p_output_file_type
687: ));
688:

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

692: ** the body and table before printing the header info, otherwise
693: ** just print the header information.
694: ****************************************************************/
695: if p_output_file_type ='HTML' then
696: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
697: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
698: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
699: end if;
700:

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

693: ** just print the header information.
694: ****************************************************************/
695: if p_output_file_type ='HTML' then
696: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
697: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '

');
698: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
699: end if;
700:
701: fnd_file.put_line(fnd_file.output, lv_header_label);

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

694: ****************************************************************/
695: if p_output_file_type ='HTML' then
696: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
697: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '

');
698: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
699: end if;
700:
701: fnd_file.put_line(fnd_file.output, lv_header_label);
702:

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

697: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '

');
698: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
699: end if;
700:
701: fnd_file.put_line(fnd_file.output, lv_header_label);
702:
703: if p_output_file_type ='HTML' then
704: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
705: end if;

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

700:
701: fnd_file.put_line(fnd_file.output, lv_header_label);
702:
703: if p_output_file_type ='HTML' then
704: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
705: end if;
706:
707: hr_utility.set_location(gv_package_name || '.costing_extract', 80);
708: /*****************************************************

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

1286: if p_output_file_type ='HTML' then
1287: lv_data_row := '

' || lv_data_row || '' ;
1288: end if;
1289:
1290: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, lv_data_row);
1291:
1292: end if; /********** End of Assignment Set ************************/
1293:
1294: /*****************************************************************

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

1304: ** Close of the Data Section of the Report
1305: *****************************************************/
1306:
1307: if p_output_file_type ='HTML' then
1308: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
1309: end if;
1310: hr_utility.trace('Concurrent Request ID = ' || FND_GLOBAL.CONC_REQUEST_ID);
1311:
1312: END costing_extract;