Exporting an Xcelsius 2008 draws a blank screen!

Hi!
This is happening to me right now. I usually export it to power point and never had a problem....Now, once I click on the slide show icon I get a blank page. Just in case I downloaded the latest version of Adobe FlashPlayer, to no avail. Th same occurs using a PC (Vista Ultimate) and a laptop (Windows 7 Business)..What is going on???
Many thanks for any advice.

You could follow the SAP Note:
1767433 - Opening a Dashboard files exported from Dashboard Design to SWF, PDF, PowerPoint, or html format stuck on "Initializing" phase when queries are used in the .XLF source file.
Symptom:
Unable to open a Dashboard file.
Opening a SWF, PDF, PowerPoint, or html Dashboard file stuck on "Initializing" phase.
Environment:
SAP BusinessObjects Dashboard Design 4.0
Reproducing the Issue
Create a blank Dashboard with Dashboard Design 4.0.x
Add query to the Dashboard using the query browser panel.
Save the model and export it to SWF, PDF, PowerPoint, or html format.
Cause:
The dashboard is trying to access external data
Resolution
To access external data, the file must be trusted.
For a PDF file, In Adobe Reader, click edit>preferences>security (enhanced).
For any other file type:
1. Open the Adobe Settings Manager in a web browser via the link available here.
2. Click Global Security Settings Panel.
3. On the Global Security Settings Panel:
         a.In the "Always trust files in these locations" drop down, select Add location.
         b.Click browse for files.
         c.Do one of the following:
For a PowerPoint file, navigate to the PowerPoint.exe location.
For all other file types, Navigate to the location of this file.
    d.  Click open
Close the Adobe Settings Manager and re-open this file.

Similar Messages

  • Xcelsius 2008 SP1 - Ignore Blank cells not working

    I have a ticker object that is showing the values from a QaaWs query just fine, but at the end of the list I keep getting the words NULL - NULL - NULL - .... This solution is working in the OEM release of Xcelsius 2008.
    The range is set longer than the expected number of rows returned to handle changes in the table its querying.
    I have Values selected and the Ignore Blank Cells In Values box is checked, so what am I missing?
    Is it time to log an issue within support?
    Tom Nather

    Hello Tom,
    This problem is known and documented.  It will be addressed in the next FixPack for Xcelsius 2008. 
    The problem is caused by binding the QaaWS/WS Output Values field to more rows than are actually returned.  The cells that are not filled with actual data are formatted with an "undefined" value, thus they are not ignored by "Ignore End Blanks".  This is expressed differently depending on the component. 
    For now, one workaround is to output the QaaWS/WS values to a range (A1:A10, for instance), then reference the range (=A1) in another (B1:B10, for example).  If the selector labels are bound to this 2nd range, they will Ignore End Blanks correctly.
    Javier Jimenez
    PG SDO QA
    Xcelsius 2008

  • ITunes Store - Drawing a Blank Screen ;; Troubleshooting No Help !

    A month or two ago, I couldn't get into iTunes store because it would show that it's loading, then just keep a blank screen.  I did a few troubleshooting, then reinstalled and it worked fine.  This is happening once again, and I've uninstalled and reinstalled twice now, along with following some problem-solving tips, and it still isn't work.  Attached are a few pictures to show you my problems.  I can get into my library on my iTunes, but that is all.  Not the store or ping.  I would like this solved soon, because I am in desperate need of new music. 
    Thank you for you support,
    Kylee

    i have same problem with you, after trying trouble shooting by lots of methods in trust sites as microsoft webpape.
    Finally, it still shows blank.
    anyone can help, please

  • Unable to export to PowerPoint from Xcelsius 2008

    Xcelsius 2008 does not export to Powerpoint, it doesn't do anything.  I have clicked on the button to export and tried going to the File - Export to - . . .  but nothing happens.
    Please assist.

    David,
    I've read the Xcelsius2008_release_notes_en.pdf on the installation disc.  (especially when going to Adobe's articles for Flash 8 & 9) A lot of reading, most of which I do not understand but get the jest of it.  I must say that I do not think that this is the 'problem' here. I do not get any 'warnings' of any kind that it cannot do that function.  
    At first when I tried to export from Xcelsius 2008 into Powerpoint it would not do anything as you may recall.  Then when I opened up the Task Manager it started working.  (NOTE:  when I hover my mouse icon over the export buttons in Xcelsius usually this pops up a bubble stating 'what' it would do if I click on the button.  There are only two buttons where something displays when I hover my mouse and those are  "Export to Outlook and Export to Business Objects Platform".  None of the other buttons seem to have this bubble.
    Now I am trying to export to Powerpoint again with another file and it opens Powerpoint but the screen is blank and there is no view slideshow option.  It will however let me export to just a plain 'swf' format.  Which is not acceptable for our purposes.  My boss said I should UNINSTALL Xcelsius 2008 and REinstall it again.
    Any solutions or ideas???????

  • Powerpoint and Xcelsius 2008

    Every time I create a PP from XCelsius 2008 (SP1,FP2) I get a message when closing PowerPoint;
    This Program requires a missing Windows content, check for ......."
    Even if I follow the instructions to check for the missing thing I can not figure out what it is that I miss.
    I also want to know why I get a blank screen when creating a PP file from xcelsius. When using presentation mode the flash file appears correctly.
    Please help[ me!!
    Hans

    Thanks Andy! This helps and it is not a big issue for me.
    Can you look at my other question I posted related to display text labels. I posted it last week. I can see that many other users must have the same issue. 
    Thanks again.
    Hans
    The issue:
    dashboards developed with XCelsius 2008 on a wide screen display hypertext correctly on a wide-screen display. However if the flash file is displayed on a regular (non-wide-screen) display the right most part of all hyper-text is displayed at the border line of a regular screen. This results in displaying the right data at a wrong position on a screen.
    It is easy to create this situation:
    Just display a dashboard in a reduced window and you will see that the label display changes positions on the right side of the screnn.

  • How to correctly load an external swf file into iosAir app? I'm getting blank screen.

    So this code works flawlesly on Air for Android, it even works fine when I test the movie in Flash, but once I export it, I'm getting a blank screen. I made an swf with a square and withotu any code, and flash still fails to load it. It's weird cause everything works fine when I use the interpreter debugging option, but when I switch to standard debugging the blank screen appears on my ipad. I've read somewhere that it's caused by the way flash saves the link to external files. Thus after the file is compiled Flash fails to find the prefiously added files, which results in a blank screen. There's clearly something wrong with how the process of compiling the application.
    Tried this:
    var Xpos:Number = 0;
    var Ypos:Number = 0;
    var loader:Loader = new Loader();
    var link:URLRequest = new URLRequest("Untitled-1.swf");
    loader.load(link);
    addChild(loader);
    And this:
    var ldr:Loader = new Loader();
    ldr.load(new URLRequest("Untitled-1.swf"));
    ldr.contentLoaderInfo.addEventListener(Event.COMPLETE, loaded, false, 0, true);
    function loaded(event:Event):void {
    addChild(event.target.content);
    But nothing works. I'm still getting a blank screen. Is there any way to add the swf file manually into the descriptor file cause flash most likely messes it up? I don't really want to use through command line.

    Read this article, especially the bit about loadercontext and currentdomain:
    http://blogs.adobe.com/airodynamics/2012/11/09/packaging-and-loading-multiple-swfs-in-air- apps-on-ios/

  • Export from Xcelsius to PowerPoint gives a blank screen

    I can no longer export from Xcelsius (Enterprise 5.5.0.0) to PowerPoint. I can preview my dashboard and export to Word, but PowerPoint launches and seems to have worked without an error message but gives me a blank white screen.
    Also, .xlf files that converted fine in the past no longer convert. Any ideas?
    Thanks!

    Hi Sarah,
    Please refer to the link: Dashboards issues with latest Adobe Flash Player 14.0
    Let me know if you are seeing different issues than what is mentioned in above link.
    Regards,
    Amit

  • Xcelsius 2008 5.4.0.0 - XLF file - All components missing/blank canvas

    xcelsius 2008 5.4.0.0  build 12,4,0,1166 --
    working on a xlf file - save it -- go to reopen it and get a blank canvas -- look in object browser and ALL objects are missing - none showing
    did the resedit thing removing the en file --
    rebooted windows and xcelsius several times
    tried to go into preview mode -- nothing there
    tried doing an export to html and viewing html -- nothing there
    other observations --indicating it may not be the "typical flash" issue
    #1 - other XLF files open and objects are there and act and behave normally
    #2 - other html files etc all operate fine
    somehow something is corrupted - had a wierd thing when i started up - it showed the split screen components were there etc -- but then the program seemed to crash - and then the sap window came up and it started up again - there might have been a warning that it was busy or retry or something --   that is the only thing i noticed
    using newer components -- bubble chart  - but nothing really out of the ordinary
    please help - would hate to rebuild -- DO have the underlying data in xlf and exported it to xls  so im safe there
    thanks

    With SP1 and FP3 this issue is resolved. Closing thread.

  • Updating data in Xcelsius 2008 Export from Excel Spreadsheet

    Xcelsius 2008 newbie question....
    I have created a Xcelsius export (.swf) that display my data. However it appears the data is static after exporting.
    I am at a loss as to how you force it to update/refresh using the connections used in the excel.
    Am I missing something? I cannot find a straight answer, do need LiveOffice?
    How do I have an (.swf) export file that refreshes data itself????

    The easiest way to get data to update in your swf is to create a connection in the Data Manager.  After the connection is setup you can add a connection refresh button to allow the swf viewer to trigger that connection.
    To get data to refresh automatically, you can setup the connection to trigger or update on interval.
    For more information you can check out the learning center:
    http://resources.businessobjects.com/support/cx/samples/learning/ondemand.asp

  • Windows Server 2008 Standard 32-bit gives Rundll32.exe error and blank screen on bootup

    Last week our file server installed automatic updates and then requested a reboot.  After rebooting it repeatedly gave a blue screen and rebooted.  After 5 hours on the phone with Microsoft support we all gave up on it with no solution.  Later
    we were able to get the machine to boot using an old mirrored hard drive of the system drive.  We can now access our data drive, however after login we get this error:
    Rundll32.exe : Windows cannot access the specified device, path, or file.You may not have the appropriate permission to access the
    item.
    and the console just shows a blank screen.  We are not able to do anything on the server.  I can Ctrl-Alt-Del and bring up Task
    Manager and I see that SQL Server is not running, so not all services are running normally.
    Any help would be appreciated.
    Thanks

    Hi,
    Based on my research, this issue occurs because the Rundll32.exe file is corrupted. You need to extract a new copy of Rundll32.exe in C:\Windows\System32.
    To do this, you can either copy it from another same version of Windows or perform an In-Place Upgrade.
    How to Perform an In-Place Upgrade on Windows Vista, Windows 7, Windows
    Server 2008 & Windows Server 2008 R2
    Best Regards
    Dale
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”

  • Xcelsius 2008 FP2 won't export to swf

    Hello,
    I can not get Xcelsius to preview or export to swf.  The progress bar labelled "Generating swft" displays for approximately 3-5 minutes until Xcelsius.exe finally crashes and the app closes.  I'm running Xcelsius 2008 SP1 with FP2, Live Office XI R2 and Flash 10 (lastest version).  I've also looked at the Flash security as described in other forum posts and that does not appear to be the issue.
    The .xlf I'm working with was successfully completed and published to Crystalreports.com and is working fine.  The problems began when two additional Live Office connections were added to allow for some additional data points in the next release of the dashboard.  The data model now contains a few hundred more rows and a few hundred forumlas causing the Excel file to increase to just under 1MB.  The total number of rows of data return in all Live Office connections combine are just over 1,000 rows.  The max # rows setting in Xcelsius is set to 2,000.  The formula cells added to the data model are fairly simple formulas that were successfully used in the data model previously (ISERROR, INDEX, MATCH).
    On occasion, Xcelsius will give the message box "Your range has been reduced to the maximum rows allowed" before crashing. 
    Acting on this message I have removed the new Live Office connections, but the message/crashing continues.  I have now scaled back the # of Live Office connections and # of formula cells way back to a very small number.  the data model is now very small and quickly imports into Xcelsius yet the same message/crashing continues.  I have verified that the data model currently in Xcelsius is the most recent, very small version of the data model, but Xcelsius still behaves like the large 1MB data model is present. 
    I don't know if this is even a # rows/data model size issue or a config/bug issue.  Any suggestions would be most appreciated. 
    I've read the PDF on FP3, but don't see this scenario listed.  Might FP3 help?  I need to be FP3 is compatible with publishing swf files to Crystalreports.com which is a BOE XI R2 platform.

    thanks for the quick advice.  so we can scale back the data to within 512 rows by splitting this into 2 dashboards.  Not ideal, but shouldl be acceptable. 
    The data is already pre-aggregated.  The data sources for this data model are crystal reports that are published in Crystalreports.com and refreshed nightly against a 3rd party API.  Virtually all of the formulas required in Excel are used to line up rows of data that are being pulled in from 2 seperate live office queries.  All of the required data points could not be included in a single crystal report so 2 are needed and the rows matched up in Excel using an INDEX(MATCH) formula.  We are not using any unsupported functions or VLOOKUP per the advice of an Xcelsius best practice document I located in this forum.  I'm open to any suggestions on better techniques to align related rows of data from two seperate ranges in Excel so they essentially appear as though they came from a single data source.
    I am starting to lean toward the # of formulas in the data model as being the issue and have added fitlers to the live office query to cut the # of rows to only 20% of what was originally being retrieved.  The # of formulas were also reduced by the same percentage.  However, when trying to preview or export to swf, Xcelsius still gives the same message that the range was reduced to the max allowed and then crashes.  It's as if Xcelsius is still seeing the old data model.  Perhaps something is being cached that isn't clearing out?  Even a full remove and re-install of Xcelsius SP1, Live Office and FP2 has had no affect.  Maybe we need to build a new .xlf from scratch?
    thanks

  • Xcelsius 2008-Combination Chart-Properties -Appearance Tab blank

    I built a dashboard using 2 components- List Selector box and a Combination Chart.
    I have completed selected the desired options and settings for the Combination Chart - under Properties: the General Tab, Drill Down Tab and the Behavior Tab. When I click on the Appearance tab, it is completely blank. There are no options to choose from. When I try to click on the previous tabs- General, Drill Down, Behavior, it is frozen. I get stuck in Appearance- with no options to select.
    I cannot click on any of the other tabs in Properties. I cannot find anything under the SAP site or Bus Obj Bob that will help me with this issue. Thanks.

    Hi Lisa,
    Which version of Xcelsius did you use? If you use Xcelsius 2008, did you update to the latest version?
    Did you try to create your model from scratch? Did this problem still occur?
    If this problem still exist, could you please give your detailed steps?

  • Xcelsius 2008 XLF to Export SWF to BO Enterprise

    Dear Folks,
    While Exporting from Xcelsius to BO Enterprise we need to select folder in which we want the file to be exported.
    We need to click on it using mouse to select it.
    Is there any way to provide path in which the file will be exported.
    I tried by putting / in folder structure but still it exports the file with that name instead of exporting the file inside those folders.
    Detailed Explanation:  I have a list of file and their location in my BO structure.
    I want to export it by giving the path instead of selecting the required folder by mouse.
    Please help me out.
    Regards,
    Deepak

    Hi Deepak,
    I doubt if this is possible. Probably because when you save doecument on BO, the document is saved under a folder or category. Also, there is no restriction of special characters like "\" in file name so even using slash in file names will not tell BO to save the document in desired folder. It would save the document with the "\" in its name.
    Regards,
    Dhanesh

  • Cannot generate AIR file when exporting from Xcelsius Engage 2008 SP1

    Hi,
    Xcelsius seems to go through the motions - "generating swf file" - but no AIR file actuallly lands in the specified folder in my c:\ drive. I have uninstalled and reinstalled SP! but the problem persists. I have the following already installed:
    1) Flex SDK  3.1 and  the file path to the root directory of the SDK is specified in the sdkPath.dat file.
    2) Java version 1.6
    3) Adobe AIR 1.1.
    Many thanks
    Michael

    Hi - I'm having the same issue with generating an AIR package from Xcelsius 2008 SP1.  My network environment is protected by a corporate firewall and proxy, so I suspect that there are internet resources that are not accessible.  I tried generating an AIR file while connected to my home network, and it worked OK (although, I couldn't access the data feeds on my corporate network). 
    Is there a list of internet resources that Xcelsius needs to access to produce the AIR files?
    Thanks

  • Blank screen

    hi when i run my application am geting empty/blank screen this is in jdeveloper 11g release 2 and page is jspx, my log file is
    *** Using HTTP port 7101 ***
    *** Using SSL port 7102 ***
    "C:\Documents and Settings\Desmond\Application Data\JDeveloper\system11.1.2.1.38.60.81\DefaultDomain\bin\startWebLogic.cmd"
    [waiting for the server to complete its initialization...]
    JAVA Memory arguments: -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=128m -XX:MaxPermSize=512m
    WLS Start Mode=Development
    CLASSPATH=C:\oracle\MIDDLE~1\ORACLE~1\modules\oracle.jdbc_11.1.1\ojdbc6dms.jar;C:\oracle\MIDDLE~1\patch_wls1035\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\oracle\MIDDLE~1\patch_jdev1112\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\oracle\MIDDLE~1\JDK160~1\lib\tools.jar;C:\oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic_sp.jar;C:\oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.jar;C:\oracle\MIDDLE~1\modules\features\weblogic.server.modules_10.3.5.0.jar;C:\oracle\MIDDLE~1\WLSERV~1.3\server\lib\webservices.jar;C:\oracle\MIDDLE~1\modules\ORGAPA~1.1/lib/ant-all.jar;C:\oracle\MIDDLE~1\modules\NETSFA~1.0_1/lib/ant-contrib.jar;C:\oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrf.jar;C:\oracle\MIDDLE~1\WLSERV~1.3\common\derby\lib\derbyclient.jar;C:\oracle\MIDDLE~1\WLSERV~1.3\server\lib\xqrl.jar
    PATH=C:\oracle\MIDDLE~1\patch_wls1035\profiles\default\native;C:\oracle\MIDDLE~1\patch_jdev1112\profiles\default\native;C:\oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32;C:\oracle\MIDDLE~1\WLSERV~1.3\server\bin;C:\oracle\MIDDLE~1\modules\ORGAPA~1.1\bin;C:\oracle\MIDDLE~1\JDK160~1\jre\bin;C:\oracle\MIDDLE~1\JDK160~1\bin;C:\forms;C:\product\11.2.0\dbhome_1\bin;C:\product\11.2.0\dbhome_1;C:\DevSuiteHome_1\BIN;C:\DevSuiteHome_1\jlib;C:\Program Files\PHP;C:\Program Files\PC Connectivity Solution\;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\Program Files\Common Files\Roxio Shared\DLLShared;C:\Program Files\Common Files\Roxio Shared\DLLShared;C:\Program Files\Common Files\Roxio Shared\9.0\DLLShared;C:\Program Files\Common Files\DivX Shared;c:\Program Files\Java\jdk1.6.0_21\bin;C:\product\11.2.0\dbhome_1\BIN;C:\DevSuiteHome_1;C:\Program Files\Common Files\Roxio Shared\10.0\DLLShared;C:\Program Files\Common Files\Roxio Shared\DLLShared;C:\Program Files\Common Files\Roxio Shared\10.0\DLLShared;C:\mywls;C:\mydomain\base_domain\bin;C:\Program Files\Java\jre6\bin\client;C:\Program Files\Java\jre6\bin;C:\Program Files\Java\jdk1.6.0_21\jre\bin;C:\Program Files\Java\jdk1.6.0_21\bin;C:\Program Files\Java\jdk1.6.0_21;C:\Program Files\Java\jre6;C:\DevSuiteHome_1\forms;C:\DevSuiteHome_1\cgenf61\admin;C:\DevSuiteHome_1\forms;C:\forms\sms_code.pll;C:\mywls\wlserver\bin;C:\Java\jdk1.6.0_21;C:\oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32\oci920_8
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http:\\hostname:port\console *
    starting weblogic with Java version:
    java version "1.6.0_24"
    Java(TM) SE Runtime Environment (build 1.6.0_24-b50)
    Java HotSpot(TM) Client VM (build 19.1-b02, mixed mode)
    Starting WLS with line:
    C:\oracle\MIDDLE~1\JDK160~1\bin\java -client -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=128m -XX:MaxPermSize=512m -Dweblogic.Name=DefaultServer -Djava.security.policy=C:\oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.policy -Djavax.net.ssl.trustStore=C:\DOCUME~1\Desmond\LOCALS~1\Temp\trustStore5345414217410371315.jks -Doracle.jdeveloper.adrs=true -Dweblogic.nodemanager.ServiceEnabled=true -Xverify:none -da -Dplatform.home=C:\oracle\MIDDLE~1\WLSERV~1.3 -Dwls.home=C:\oracle\MIDDLE~1\WLSERV~1.3\server -Dweblogic.home=C:\oracle\MIDDLE~1\WLSERV~1.3\server -Djps.app.credential.overwrite.allowed=true -Dcommon.components.home=C:\oracle\MIDDLE~1\ORACLE~1 -Djrf.version=11.1.1 -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Ddomain.home=C:\DOCUME~1\Desmond\APPLIC~1\JDEVEL~1\SYSTEM~1.81\DEFAUL~1 -Djrockit.optfile=C:\oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrocket_optfile.txt -Doracle.server.config.dir=C:\DOCUME~1\Desmond\APPLIC~1\JDEVEL~1\SYSTEM~1.81\DEFAUL~1\config\FMWCON~1\servers\DefaultServer -Doracle.domain.config.dir=C:\DOCUME~1\Desmond\APPLIC~1\JDEVEL~1\SYSTEM~1.81\DEFAUL~1\config\FMWCON~1 -Digf.arisidbeans.carmlloc=C:\DOCUME~1\Desmond\APPLIC~1\JDEVEL~1\SYSTEM~1.81\DEFAUL~1\config\FMWCON~1\carml -Digf.arisidstack.home=C:\DOCUME~1\Desmond\APPLIC~1\JDEVEL~1\SYSTEM~1.81\DEFAUL~1\config\FMWCON~1\arisidprovider -Doracle.security.jps.config=C:\DOCUME~1\Desmond\APPLIC~1\JDEVEL~1\SYSTEM~1.81\DEFAUL~1\config\fmwconfig\jps-config.xml -Doracle.deployed.app.dir=C:\DOCUME~1\Desmond\APPLIC~1\JDEVEL~1\SYSTEM~1.81\DEFAUL~1\servers\DefaultServer\tmp\_WL_user -Doracle.deployed.app.ext=\- -Dweblogic.alternateTypesDirectory=C:\oracle\MIDDLE~1\ORACLE~1\modules\oracle.ossoiap_11.1.1,C:\oracle\MIDDLE~1\ORACLE~1\modules\oracle.oamprovider_11.1.1 -Djava.protocol.handler.pkgs=oracle.mds.net.protocol -Dweblogic.jdbc.remoteEnabled=false -Dwsm.repository.path=C:\DOCUME~1\Desmond\APPLIC~1\JDEVEL~1\SYSTEM~1.81\DEFAUL~1\oracle\store\gmds -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=C:\oracle\MIDDLE~1\patch_wls1035\profiles\default\sysext_manifest_classpath;C:\oracle\MIDDLE~1\patch_jdev1112\profiles\default\sysext_manifest_classpath weblogic.Server
    <13 Dec 2011 2:28:04 AM> <Info> <Security> <BEA-090905> <Disabling CryptoJ JCE Provider self-integrity check for better startup performance. To enable this check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true>
    <13 Dec 2011 2:28:04 AM> <Info> <Security> <BEA-090906> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    <13 Dec 2011 2:28:04 AM> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Client VM Version 19.1-b02 from Sun Microsystems Inc.>
    <13 Dec 2011 2:28:05 AM> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.5.0 Fri Apr 1 20:20:06 PDT 2011 1398638 >
    <13 Dec 2011 2:28:06 AM> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <13 Dec 2011 2:28:06 AM> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <13 Dec 2011 2:28:07 AM> <Notice> <LoggingService> <BEA-320400> <The log file C:\Documents and Settings\Desmond\Application Data\JDeveloper\system11.1.2.1.38.60.81\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <13 Dec 2011 2:28:07 AM> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Documents and Settings\Desmond\Application Data\JDeveloper\system11.1.2.1.38.60.81\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log00146. Log messages will continue to be logged in C:\Documents and Settings\Desmond\Application Data\JDeveloper\system11.1.2.1.38.60.81\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log.>
    <13 Dec 2011 2:28:07 AM> <Notice> <Log Management> <BEA-170019> <The server log file C:\Documents and Settings\Desmond\Application Data\JDeveloper\system11.1.2.1.38.60.81\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log is opened. All server side log events will be written to this file.>
    <13 Dec 2011 2:28:14 AM> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <13 Dec 2011 2:28:16 AM> <Notice> <LoggingService> <BEA-320400> <The log file C:\Documents and Settings\Desmond\Application Data\JDeveloper\system11.1.2.1.38.60.81\DefaultDomain\servers\DefaultServer\logs\access.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <13 Dec 2011 2:28:16 AM> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Documents and Settings\Desmond\Application Data\JDeveloper\system11.1.2.1.38.60.81\DefaultDomain\servers\DefaultServer\logs\access.log00080. Log messages will continue to be logged in C:\Documents and Settings\Desmond\Application Data\JDeveloper\system11.1.2.1.38.60.81\DefaultDomain\servers\DefaultServer\logs\access.log.>
    <13 Dec 2011 2:28:24 AM> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <13 Dec 2011 2:28:24 AM> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <MessageLocalizationHelper> <getLocalizedMessage> The resource for bundle "oracle.jrf.i18n.MBeanMessageBundle" with key "oracle.jrf.JRFServiceMBean.checkIfJRFAppliedOnMutipleTargets" cannot be found.
    <13 Dec 2011 2:28:40 AM> <Notice> <LoggingService> <BEA-320400> <The log file C:\Documents and Settings\Desmond\Application Data\JDeveloper\system11.1.2.1.38.60.81\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <13 Dec 2011 2:28:40 AM> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Documents and Settings\Desmond\Application Data\JDeveloper\system11.1.2.1.38.60.81\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log00144. Log messages will continue to be logged in C:\Documents and Settings\Desmond\Application Data\JDeveloper\system11.1.2.1.38.60.81\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log.>
    <13 Dec 2011 2:28:40 AM> <Notice> <Log Management> <BEA-170027> <The Server has established connection with the Domain level Diagnostic Service successfully.>
    <13 Dec 2011 2:28:40 AM> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <13 Dec 2011 2:28:40 AM> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING>
    <13 Dec 2011 2:28:40 AM> <Notice> <Security> <BEA-090171> <Loading the identity certificate and private key stored under the alias DemoIdentity from the jks keystore file C:\oracle\MIDDLE~1\WLSERV~1.3\server\lib\DemoIdentity.jks.>
    <13 Dec 2011 2:28:41 AM> <Notice> <Security> <BEA-090169> <Loading trusted certificates from the jks keystore file C:\oracle\MIDDLE~1\WLSERV~1.3\server\lib\DemoTrust.jks.>
    <13 Dec 2011 2:28:41 AM> <Notice> <Security> <BEA-090169> <Loading trusted certificates from the jks keystore file C:\oracle\MIDDLE~1\JDK160~1\jre\lib\security\cacerts.>
    <13 Dec 2011 2:28:41 AM> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=Entrust Root Certification Authority - G2,OU=(c) 2009 Entrust\, Inc. - for authorized use only,OU=See www.entrust.net/legal-terms,O=Entrust\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <13 Dec 2011 2:28:41 AM> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=thawte Primary Root CA - G3,OU=(c) 2008 thawte\, Inc. - For authorized use only,OU=Certification Services Division,O=thawte\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <13 Dec 2011 2:28:41 AM> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=T-TeleSec GlobalRoot Class 3,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <13 Dec 2011 2:28:41 AM> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=T-TeleSec GlobalRoot Class 2,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <13 Dec 2011 2:28:41 AM> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=GlobalSign,O=GlobalSign,OU=GlobalSign Root CA - R3". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <13 Dec 2011 2:28:41 AM> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "OU=Security Communication RootCA2,O=SECOM Trust Systems CO.\,LTD.,C=JP". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <13 Dec 2011 2:28:41 AM> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=VeriSign Universal Root Certification Authority,OU=(c) 2008 VeriSign\, Inc. - For authorized use only,OU=VeriSign Trust Network,O=VeriSign\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <13 Dec 2011 2:28:41 AM> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=KEYNECTIS ROOT CA,OU=ROOT,O=KEYNECTIS,C=FR". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <13 Dec 2011 2:28:41 AM> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=GeoTrust Primary Certification Authority - G3,OU=(c) 2008 GeoTrust Inc. - For authorized use only,O=GeoTrust Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <13 Dec 2011 2:28:41 AM> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure" is now listening on 127.0.0.1:7102 for protocols iiops, t3s, ldaps, https.>
    <13 Dec 2011 2:28:41 AM> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 127.0.0.1:7101 for protocols iiop, t3, ldap, snmp, http.>
    <13 Dec 2011 2:28:41 AM> <Notice> <WebLogicServer> <BEA-000331> <Started WebLogic Admin Server "DefaultServer" for domain "DefaultDomain" running in Development Mode>
    <13 Dec 2011 2:28:41 AM> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <13 Dec 2011 2:28:41 AM> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    IntegratedWebLogicServer startup time: 42078 ms.
    IntegratedWebLogicServer started.
    [Running application HrSystem on Server Instance IntegratedWebLogicServer...]
    [02:28:44 AM] Web Module HrSystemWebApp.war recognized in project HrSystem.jpr
    [02:28:44 AM] ---- Deployment started. ----
    [02:28:44 AM] Target platform is (Weblogic 10.3).
    [02:28:44 AM] Retrieving existing application information
    [02:28:44 AM] Running dependency analysis...
    [02:28:44 AM] Deploying 2 profiles...
    [02:28:45 AM] Wrote Web Application Module to C:\Documents and Settings\Desmond\Application Data\JDeveloper\system11.1.2.1.38.60.81\o.j2ee\drs\HrSystem\HrSystemWebApp.war
    [02:28:45 AM] Wrote Enterprise Application Module to C:\Documents and Settings\Desmond\Application Data\JDeveloper\system11.1.2.1.38.60.81\o.j2ee\drs\HrSystem
    [02:28:45 AM] Deploying Application...
    [02:29:31 AM] Application Deployed Successfully.
    [02:29:31 AM] The following URL context root(s) were defined and can be used as a starting point to test your application:
    [02:29:31 AM] http://127.0.0.1:7101/HrSystem-HrSystem-context-root
    [02:29:32 AM] Elapsed time for deployment: 48 seconds
    [02:29:32 AM] ---- Deployment finished. ----
    Run startup time: 48265 ms.
    [Application HrSystem deployed to Server Instance IntegratedWebLogicServer]
    Target URL -- http://127.0.0.1:7101/HrSystem-HrSystem-context-root/faces/DeptEmpPage
    <ViewHandlerImpl> <_checkTimestamp> Apache Trinidad is running with time-stamp checking enabled. This should not be used in a production environment. See the org.apache.myfaces.trinidad.CHECK_FILE_MODIFICATION property in WEB-INF/web.xml
    <UIXEditableValue> <_isBeanValidationAvailable> A Bean Validation provider is not present, therefore bean validation is disabled
    this what i have done
    1.In the DeptEmpPage.jsf file click inside the menus facet in the panel collection surrounding the Employees table. Right-click and from the context menu choose Insert Inside Facet menus > Menu.
    1.     In the Property Inspector set the Text property to My Options.
    2.     In the Property Inspector expand the Behavior node and set the Detachable property to true.
    3.     In the Structure window right-click the menu component and choose Insert inside af:menu - My Options > Menu Item.
    4.     In the Property Inspector set the Text property of the new menu item to Export to Excel.
    5.     With the new Export to Excel menu item still selected in the Structure window, expand the Listeners section of the Operations node of the the ADF Faces components in the Component Palette.
    Locate the Export Collection Action Listener component and drag it onto the Export to Excel menu option in the Structure window.
    6.     In the Insert Export Collection Action Listener dialog click the down arrow next to ExportedId field and choose Edit.
    7.     In the Edit Property dialog navigate through the page structure to locate the table - t1 component and select it. Click OK.
    8.     From the Type drop down list select excelHTML and click OK.
    9.     Add another menu option to the menu. In the Structure window right-click the Export to Excel menu component and from the context menu choose Insert After af:commandMenuItem - Export to Excel > Menu Item.
    10.     Set the Text property of this new menu option to Printable Page.
    11.     In the Behavior section under the Operations node of the Component Palette select the Show Printable Page Behavior operation to add it to the new menu item. Drag and drop it onto the new menu option you created.
    12.     Click the Save All icon on the JDeveloper menu bar to save your work, and then choose Run
    Edited by: user603350 on 2011/12/14 3:30 AM

    Switch to the source editor for your JSPX and see if the file margin indicates there are any errors in your JSPX code (red color in the right margin).

Maybe you are looking for