- Check if your bursting XML definition and concurrent program belongs to same application.
- Bursting XML definition name (CODE) should match the concurrent program short name for which it's deing called. No exception.
- Follow other checks from here.
Wednesday, September 18, 2013
java.lang.NullPointerException - XML Bursting Error
Perform the following check to resolve the error java.lang.NullPointerException in XML Bursting.
Monday, September 9, 2013
Dynamic Images in XML Publisher
Image path used in XML publisher can be constructed dynamically from values rather than hard coding. Below image provides the example.
CF_IMAGE_NAME in the report generates image name value for each row of data. And the images with those names reside in the path "$OA_MEDIA/custom/". Let's say a value of CF_IMAGE_NAME is image1.jpg during run time the follow value will be rendered to "$OA_MEDIA/custom/image1.jpg" and the corresponding image will be displayed on the output.
Format picture is a property of a dummy image used in the report to print the images in specific dimension. Due to white background its not visible. You can check more from other post.
And use the elements in the image properties ALT TEXT. Below word properties are from Office 2013.
Note that data structure has elements in root hence the construction of the concat is
To bring up and use the XML elements at a different level use ../ or // in the concat
CF_IMAGE_NAME in the report generates image name value for each row of data. And the images with those names reside in the path "$OA_MEDIA/custom/". Let's say a value of CF_IMAGE_NAME is image1.jpg during run time the follow value will be rendered to "$OA_MEDIA/custom/image1.jpg" and the corresponding image will be displayed on the output.
Format picture is a property of a dummy image used in the report to print the images in specific dimension. Due to white background its not visible. You can check more from other post.
And use the elements in the image properties ALT TEXT. Below word properties are from Office 2013.
Note that data structure has elements in root hence the construction of the concat is
url:{concat(IMAGE_PATH,'/',IMAGE_NAME)}
To bring up and use the XML elements at a different level use ../ or // in the concat
url:{concat(../IMAGE_PATH,'/',../IMAGE_NAME)}
Subscribe to:
Posts (Atom)