Thank you for replying me, but tell is there any chance in near future for supporting arabic?
Mr Andreas Thank you for your support, i want to display arabic fonts, Would you help to achieve it
i use sql developer and toad
Hi, How to insert arial font at c:\windows\fonts directory into JRXML_FONTS-table ? and how i use it? should i add coding ? Kindly help me
Hi, How to insert arial font at c:\windows\fonts directory into JRXML_FONTS-table ? Kindly help me
i upload the apex app which i use, can you please check it, the prolem is in passing the parameter
i made a smple report to summrize my problem. the report runs fine at ireport (with/without parameter) and it also runs fine at apex page without passing parameter and when i add a parameter it gives ORA-22275: invalid LOB locator specified and the code i used DECLARE CURSOR crReport IS SELECT JRD_NAME FROM JRXML_REPORT_DEFINITIONS WHERE JRD_ID=1; vcName varchar2(200); rParam PK_JRXML2PDF_REPGEN.tParameter; lParams PK_JRXML2PDF_REPGEN.tParamList; bl BLOB; BEGIN OPEN crReport; fetch crReport into...
Firest of all thank you for replying, Second i made changes to the report which is one parameter (pEmp) and the code is: DECLARE CURSOR crReport IS SELECT JRD_NAME FROM JRXML_REPORT_DEFINITIONS WHERE JRD_ID=1; vcName varchar2(200); rParam PK_JRXML2PDF_REPGEN.tParameter; lParams PK_JRXML2PDF_REPGEN.tParamList; bl BLOB; BEGIN OPEN crReport; fetch crReport into vcName; close crReport; rParam.vcName:='pEmp'; rParam.vcValue:=:P1_emp; lParams(lParams.COUNT+1):=rParam; bl :=PK_JRXML2PDF_REPGEN.FK_RUN(i_vcName...