Unable to show data using FND_FILE.PUT_LINE (FND_FILE.OUTPUT,l_output) in Concurrent Program output
Hi,
Unable to show data using FND_FILE.PUT_LINE (FND_FILE.OUTPUT,l_output) in Concurrent Program output large amount of data.
Small amout of data is showing report output.
Code like this :
cursur cur1
select a,b,c
from table_name;
begin
for c1 in cur1
Loop
FND_FILE.PUT_LINE (FND_FILE.OUTPUT ,c1.a||'~'||c1.b||'~'||c1.c);
end loop;
end;
Please help me to resolve this issue.
Thanks and Regards,
Parijat Ghosh