Hallo Pavlov, what DB version do you use? In my case it is 19, and I found a solution in one of another threads. In AS_PDF_MOD package there is a function pdf_string, I changed following piece of code: dbms_lob.copy( t_rv , t_rv , dbms_lob.lobmaxsize , t_ind + 1 , t_ind ); dbms_lob.copy( t_rv , utl_raw.cast_to_raw( '\' ) , 1 , t_ind , 1 ); to this: lob_max:=dbms_lob.getlength(t_rv) - t_ind + 1 ; dbms_lob.copy( t_rv , t_rv , lob_max , t_ind + 1 , t_ind ); dbms_lob.copy( t_rv , utl_raw.cast_to_raw(...
Hi, I have following problem: in my report I've created a frame with 3 subreports in it (like in attachment). Top subreport is fixed relative to top, another two are float. My goal is that the frame is not stretched, even when the subreport would stretch beyond the frame - in this case, the subreport should be 'cut' somehow. Is it possible? That would be my main problem. And althought subreports are float, they are rendered one over another :( Another one, connected to frames, is when I put subreport...
Hi, I have following problem: in my report I've created a frame with 3 subreports in it (like in attachment). Top subreport is fixed relative to top, another two are float. My goal is that the frame is not stretched, even when the subreport would stretch beyond the frame - in this case, the subreport should be 'cut' somehow. Is it possible? That would be my main problem. Another one, connected to frames, is when I put subreport in a frame, it is stretched correctly but only in iReport - when I run...
Hallo Andreas, sorry for late answer - I managed to make a workaround in this particular case but came along again to this problem and must ask you for help. I just made a simple jrxml based on select 'Text with brackets ()' text from dual I found that it doesn't matter if both brackets are in the text, or only one of them, in all cases the reports generation hangs up without any error and I become and infinite loop. best regards Maciej
Hi, I am testing PL-jrxml2pdf project and I have observed very strange behaviour. My report is based on very simple query: there is ID, NAME and FAMILYNAME columns from sample table. When a column contains brackets, for example "Smith (president)", the generation of report hangs on this row without any error. This is what I see in LOG table as last entries (desc): | | | | No. of text parts 1 | | | | Alignment vertical/horizontal/nY top/left/153 | | | | Set font to courier-N-10 | | | | Render Text...