DBA Data[Home] [Help]

APPS.PSA_BC_XML_REPORT_PUB dependencies on FND_FILE

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

3213:
3214:
3215: -- Save the parameter list to output file
3216:
3217: FND_FILE.put_line(FND_FILE.output, l_para_meaning_list);
3218:
3219: psa_utils.debug_other_string(g_state_level,l_api_name,'xml_parameters' || ' = ' || l_para_meaning_list);
3220:
3221: -- Process the XML data source and save to output file

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

3246: ELSIF x_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
3247: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
3248: END IF;
3249:
3250: FND_FILE.put_line(FND_FILE.output, '');
3251: psa_utils.debug_other_string(g_state_level,l_api_name,'end of procedure construct_bc_report_output');
3252:
3253: EXCEPTION
3254: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

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

3321: /* commit; remove this */
3322: WHILE (l_pos <= l_length)
3323: LOOP
3324: DBMS_LOB.read(p_trxs, l_amount, l_pos, l_buffer);
3325: FND_FILE.put(FND_FILE.output, l_buffer);
3326: l_pos := l_pos + l_amount;
3327: END LOOP;
3328:
3329: END IF;