Skip to Main Content

Developer Community

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

duplicate record found in excel convert report

Hi,

I convert rep file into excel using command

OUT_FILE TEXT_IO.FILE_TYPE;

begin

if :xlflag1='Y' then

OUT_FILE := TEXT_IO.FOPEN(:NUM||''||:NUM_1||''||'.CSV','A');

TEXT_IO.PUT_LINE(OUT_FILE,'PARTY NAME'||','||'ITEM NAME '||','||'LINE'||','||'TOTAL BALANCE QUANTITY '||','||'RATE '||','||'VALUE'||','||'J/W RATE'||','||'SALE VALUE');

TEXT_IO.FCLOSE(OUT_FILE);

END if;

return (TRUE);

end;

In Layout section main body - M1,

I got out put in excel but in page break last record is shown in next page which create duplicate record.

which shows in above

please give the solution to remove duplicate records

thanks

Comments
Post Details
Added on Aug 24 2025
0 comments
2,346 views