Skip to Main Content

DevOps, CI/CD and Automation

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

XML Publisher Report Bursting Program Error

User_O8EFAJun 9 2020

Hi,

xml Bursting concurrent program  gets completed , with the following error :

XML/BI Publisher Version : 5.6.3

--Exception

null

java.lang.NullPointerException

at oracle.apps.xdo.oa.cp.JCP4XDOBurstingEngine.getSystemTempDirectory(JCP4XDOBurstingEngine.java:433)

at oracle.apps.xdo.oa.cp.JCP4XDOBurstingEngine.runProgram(JCP4XDOBurstingEngine.java:114)

at oracle.apps.fnd.cp.request.Run.main(Run.java:156)

Please suggest.

Regards,

Monojit

Comments

shakir.gusaroff
I am not 100% sure. But you can try this:
import javafx.scene.*;
import javafx.scene.shape.*;
import javafx.scene.paint.*;
import javafx.scene.effect.BoxBlur;
public class GameGroup  extends Group{
    
    GameGroup()
    {
        //Group circles = new Group();
        for (int i = 0; i < 30; i++) {
            Circle circle = new Circle(150, Color.web("white", 0.05));
            circle.setStrokeType(StrokeType.OUTSIDE);
            circle.setStroke(Color.web("white", 0.16));
            circle.setStrokeWidth(4);
           // circles.getChildren().add(circle);
            getChildren().add(circle);
        }
        
       // circles.setEffect(new BoxBlur(10, 10, 3));
        setEffect(new BoxBlur(10, 10, 3));
    }
}
865128
Thank you Shakir, that's it.
1 - 2

Post Details

Added on Jun 9 2020
3 comments
428 views