Data is cutting in export to PDF Data is not wrappiong in Export to PDF
#1
Posted 11 June 2012 - 06:05 AM
I have a serious doubt, when i do export to pdf and save pdf then data in the column is getting cut across column line. For example my data in the column is 'EMQLMZ129067553736436433236', this data is displaying properly on Report viewer in single line but problem is in exporting to PDF. I am using " 2.5.1.v20090710-7c957AFOKfquKtWRHVnZG1" this version.
Thanks & Regards
Bokya
#3
Posted 14 June 2012 - 11:17 AM
#4
Posted 17 June 2012 - 11:08 PM
Yes i want to wrap the text in to PDF output without cutting the data acroos columns. There is no way to wrap wrap in to single line. because if we try to wrap the the text like "7c957AFOKfquKtWRHVnZG1" in to single line then other Neighboring columns are affecting due to this and getting same problem with them also. So its better to take it in next line. But i dont know in export to PDF for dynamic text which is very big without having any space how to take it in next line. Becaus esame text is adjusting on GUI in single line but problem is with Export to pdf only.
Thanks & Regards
Bokya
#5
Posted 19 June 2012 - 07:43 AM
#7
Posted 16 July 2012 - 08:24 PM
temp = "";
i=0;
while (i<row["data1"].length){
if (row["data1"].length - 10 < i){
temp = temp + row["data1"].substring(i,row["data1"].length);
}
else{
temp = temp + row["data1"].substring(i,i+10) + "\n";
}
i += 10;
}
temp;
#8
Posted 03 August 2012 - 01:34 AM
Thanks for valuable reply. Can you please tell me how to apply same script for whole report. I mean to say if my report has 50 columns then i cant write same script every where. Is there any place where i can write same script for all the columns.
#9
Posted 06 August 2012 - 07:31 AM
#10
Posted 13 March 2013 - 07:54 AM
mwilliams, on 06 August 2012 - 07:31 AM, said:
Is there a way to apply this to QBR Reports as well?
#11
Posted 14 March 2013 - 05:26 AM
#12
Posted 14 March 2013 - 05:31 AM
mwilliams, on 14 March 2013 - 05:26 AM, said:
Sorry should have been more clear. This is for Maximo quick reports. They are ad hoc reports and unfortunately I don't have access to the rptdesign file until after the reports are saved. Ideally I would like to script something as you say before the report is generated.
I guess this is more of a Maximo Configuration issue than a BIRT one.
#13
Posted 15 March 2013 - 10:40 AM
#14
Posted 19 March 2013 - 09:21 AM
mwilliams, on 15 March 2013 - 10:40 AM, said:
Our users have the ability to use these quick reports and there doesn't seem to be a way to customize the date display (unless saved and updated). All of our other customized reports are fine. It's just these on-the-fly reports. thanks.
#15
Posted 19 March 2013 - 01:12 PM






MultiQuote






