Saturday, May 26, 2012

Presenting at ODTUG KScope in June

This year from the 24th to the 28th of June I will be attending the ODTUG KScope conference in San Antonio, Texas.

Here is what ODTUG says about the conference:
ODTUG Kscope12 is the place to be for the Oracle technical community in 2012. If you are a developer, architect, technical lead, or database administrator who works with Application Express, Business Intelligence, Oracle EPM; including Hyperion products, Essbase, Planning; Database Development or Fusion Middleware, Kscope12 is where you should be. It’s hard to find a conference that’s big enough to attract world renowned speakers and small enough to get the chance to share knowledge. Kscope12 is that conference.
I could not agree more. It is really fun to meet up with all my friends from the Oracle APEX community, learn about the new features of the upcoming Oracle APEX release firsthand from the developers and get in touch with sooo many excellent developers from around the world. This is definitely the most important conference for any Oracle developer to attend.

This year I will have two presentations:
Cheers and looking forward to seeing you there,
~Dietmar.

2 comments:

Unknown said...

Hi,
I made ireport(with subreport) which have two parameters (pEmp'bigDicimal' and pSalMonth'Date' and worked fine, my problem is when calling it in oracle apex using the Following Code:
declare
vcName varchar2(200);
lParams PK_JRXML2PDF_REPGEN.tParamList;
bl BLOB;
BEGIN
vcName := 'C:\Program Files\Apache Software Foundation\Tomcat 9.0\webapps\JasperReportsIntegration\reports\MyReports\salary_subreport2';
lParams(1).vcName:='pEmp';
lParams(1).vcValue:=26;--:P1_EMP
lParams(2).vcName:='pSalMonth';--'pSalMonth'
lParams(2).vcValue:=to_date('01-jan-17','dd-mon-yy');--to_date(:p1_date,'dd-mon-yy')
bl :=PK_JRXML2PDF_REPGEN.FK_RUN(i_vcName =>vcName,i_lParams=>lParams);
PK_JRXML2PDF_REPGEN.PR_SHOW_REPORT(bl);
APEX_APPLICATION.STOP_APEX_ENGINE;
END;
it gives ORA-01403: no data found
Can You Help

Unknown said...

Hi, I think you are better off here: https://sourceforge.net/p/pljrxml2pdf/discussion/general/

It is a different tool.

Cheers,
~Dietmar.