DBA Data[Home] [Help]

APPS.PSA_BC_XML_REPORT_PUB dependencies on FND_FILE

Line 3130: FND_FILE.put_line(FND_FILE.output, l_para_meaning_list);

3126:
3127:
3128: -- Save the parameter list to output file
3129:
3130: FND_FILE.put_line(FND_FILE.output, l_para_meaning_list);
3131:
3132: psa_utils.debug_other_string(g_state_level,l_api_name,'xml_parameters' || ' = ' || l_para_meaning_list);
3133:
3134: -- Process the XML data source and save to output file

Line 3163: FND_FILE.put_line(FND_FILE.output, '');

3159: ELSIF x_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
3160: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
3161: END IF;
3162:
3163: FND_FILE.put_line(FND_FILE.output, '');
3164: psa_utils.debug_other_string(g_state_level,l_api_name,'end of procedure construct_bc_report_output');
3165:
3166: EXCEPTION
3167: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

Line 3238: FND_FILE.put(FND_FILE.output, l_buffer);

3234: /* commit; remove this */
3235: WHILE (l_pos <= l_length)
3236: LOOP
3237: DBMS_LOB.read(p_trxs, l_amount, l_pos, l_buffer);
3238: FND_FILE.put(FND_FILE.output, l_buffer);
3239: l_pos := l_pos + l_amount;
3240: END LOOP;
3241:
3242: END IF;