DBA Data[Home] [Help]

APPS.PAY_US_PR_W2 dependencies on FND_FILE

Line 1135: fnd_file.put_line(fnd_file.output,

1131: end loop;
1132: */
1133:
1134: hr_utility.trace( 'B4 formated header string ');
1135: fnd_file.put_line(fnd_file.output,
1136: formated_header_string(gv_title,'HTML'));
1137: fnd_file.new_line(fnd_file.output,1);
1138: hr_utility.trace( 'A4 formated header string new line ');
1139: /****************************************************************

Line 1137: fnd_file.new_line(fnd_file.output,1);

1133:
1134: hr_utility.trace( 'B4 formated header string ');
1135: fnd_file.put_line(fnd_file.output,
1136: formated_header_string(gv_title,'HTML'));
1137: fnd_file.new_line(fnd_file.output,1);
1138: hr_utility.trace( 'A4 formated header string new line ');
1139: /****************************************************************
1140: ** Print the Header Information. If the format is HTML then open
1141: ** the body and table before printing the header info, otherwise

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

1142: ** just print the header information.
1143: ****************************************************************/
1144: if l_output_file_type ='HTML' then
1145:
1146: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
1147: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
1148:
1149: for i in total_rec_tab.first .. total_rec_tab.last loop
1150:

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

1143: ****************************************************************/
1144: if l_output_file_type ='HTML' then
1145:
1146: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
1147: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '

');
1148:
1149: for i in total_rec_tab.first .. total_rec_tab.last loop
1150:
1151:

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

1148:
1149: for i in total_rec_tab.first .. total_rec_tab.last loop
1150:
1151:
1152: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '

');
1153: fnd_file.put_line(fnd_file.output
1154: ,formated_data_string(p_input_string => total_rec_tab(i).r_label
1155: ,p_bold => 'Y'
1156: ,p_type => 'C'

Line 1153: fnd_file.put_line(fnd_file.output

1149: for i in total_rec_tab.first .. total_rec_tab.last loop
1150:
1151:
1152: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '

');
1153: fnd_file.put_line(fnd_file.output
1154: ,formated_data_string(p_input_string => total_rec_tab(i).r_label
1155: ,p_bold => 'Y'
1156: ,p_type => 'C'
1157: ,p_output_file_type => l_output_file_type));

Line 1159: fnd_file.put_line(fnd_file.output

1155: ,p_bold => 'Y'
1156: ,p_type => 'C'
1157: ,p_output_file_type => l_output_file_type));
1158:
1159: fnd_file.put_line(fnd_file.output
1160: ,formated_data_string(p_input_string => total_rec_tab(i).r_value
1161: ,p_bold => 'N'
1162: ,p_type => total_rec_tab(i).r_type
1163: ,p_output_file_type => l_output_file_type));

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

1161: ,p_bold => 'N'
1162: ,p_type => total_rec_tab(i).r_type
1163: ,p_output_file_type => l_output_file_type));
1164:
1165: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
1166: hr_utility.trace( 'label 0 = '||total_rec_tab(i).r_label);
1167: hr_utility.trace( 'value 0 = '||total_rec_tab(i).r_value);
1168: hr_utility.trace( 'value 0 = '||total_rec_tab(i).r_type);
1169: end loop ;

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

1167: hr_utility.trace( 'value 0 = '||total_rec_tab(i).r_value);
1168: hr_utility.trace( 'value 0 = '||total_rec_tab(i).r_type);
1169: end loop ;
1170:
1171: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
1172: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
1173: end if;
1174:
1175: /*

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

1168: hr_utility.trace( 'value 0 = '||total_rec_tab(i).r_type);
1169: end loop ;
1170:
1171: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
1172: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
1173: end if;
1174:
1175: /*
1176: select count(*)

Line 1303: fnd_file.put_line(fnd_file.output

1299: hr_utility.trace('Exception value found for '||ee_last_name);
1300:
1301: IF c_ee_exception%ROWCOUNT =1 THEN
1302:
1303: fnd_file.put_line(fnd_file.output
1304: ,employee_header('CSV','Header1',p_report_type));
1305:
1306: fnd_file.new_line(fnd_file.output,1);
1307:

Line 1306: fnd_file.new_line(fnd_file.output,1);

1302:
1303: fnd_file.put_line(fnd_file.output
1304: ,employee_header('CSV','Header1',p_report_type));
1305:
1306: fnd_file.new_line(fnd_file.output,1);
1307:
1308: fnd_file.put_line(fnd_file.output
1309: ,employee_header('CSV','Header2',p_report_type));
1310:

Line 1308: fnd_file.put_line(fnd_file.output

1304: ,employee_header('CSV','Header1',p_report_type));
1305:
1306: fnd_file.new_line(fnd_file.output,1);
1307:
1308: fnd_file.put_line(fnd_file.output
1309: ,employee_header('CSV','Header2',p_report_type));
1310:
1311: END IF;
1312:

Line 1313: fnd_file.put_line(fnd_file.output

1309: ,employee_header('CSV','Header2',p_report_type));
1310:
1311: END IF;
1312:
1313: fnd_file.put_line(fnd_file.output
1314: ,employee_data (
1315: er_name,
1316: er_ein,
1317: er_addr_line_1,