Change Bitmap code to MovieClip code?

Hi
I'm working on an app for iOS where I want to load content dynamically from the library that contains text and graphics inside different MovieClip's.
However, I have a problem, the code I have is for bitmap!
How can I change it so it works for MovieClip instead?
I want to use the MovieClip instead of bitmap?
Also want to use the MovieClip class instead of Sprite class?
Please help me
Best Regards
Mikael (No. pro in AS3)
This is the code:
//var mc:MovieClip = new MovieClip();
//addChild(mc);
var sp:Sprite = new Sprite ();
addChild(sp);
for (var i:int=1; i<6; i++)
var ref:Class = getDefinitionByName("p"+i) as Class;
var bm:Bitmap = new Bitmap(new ref());
sp.addChild(bm);
bm.x = 768 * (i - 1);
var ind:int = 0;
var currX:Number = 0;
stage.addEventListener(Event.ENTER_FRAME, loop);
sp.addEventListener(TransformGestureEvent.GESTURE_SWIPE, onSwipe);
function onSwipe(e:TransformGestureEvent):void
if (e.offsetX == 1 && ind > 0)
  ind--;
if (e.offsetX == -1 && ind < 4)
  ind++;
function loop(e:Event):void
currX += (ind*768 - currX) * 0.120;
sp.scrollRect = new Rectangle(currX,0,768,1024);

//var mc:MovieClip = new MovieClip();
//addChild(mc);
var sp:Sprite = new Sprite ();
addChild(sp);
for (var i:int=1; i<6; i++)
var ref:Class = getDefinitionByName("p"+i) as Class;
var mc:MovieClip = MovieClip(new ref());
sp.addChild(mc);
mc.x = 768 * (i - 1);
var ind:int = 0;
var currX:Number = 0;
stage.addEventListener(Event.ENTER_FRAME, loop);
sp.addEventListener(TransformGestureEvent.GESTURE_SWIPE, onSwipe);
function onSwipe(e:TransformGestureEvent):void
if (e.offsetX == 1 && ind > 0)
  ind--;
if (e.offsetX == -1 && ind < 4)
  ind++;
function loop(e:Event):void
currX += (ind*768 - currX) * 0.120;
sp.scrollRect = new Rectangle(currX,0,768,1024);

Similar Messages

  • How to change the text Transport id code in sus

    Hi,
    How to change the text Transport id code in sus while creating ASN
    Please advise.
    Regards,
    manu

    SE80---> BSP APPLICATION with SRMSUS ---> views -->asn > detail_edit.inc.->
    On the right hand side in the details ---> search for
    BBP_SUS_UI/ASN_TRANSPORT_IDENTIFICATION
    replace the above with the following
    BBP_SUS_UI/INVOICE_DOCUMENT_NUMBER
    BBP_SUS_UI/INVOICE.
    there is no entry available for invoice number , only the above two are available.
    save the changes
    activate the changes
    REWARD POINTS IF USEFULL

  • [svn:bz-trunk] 20754: My latest EndpointPushNotifier change changed the style of the code quite a bit  (sorry for that, it was my IDE settings getting in the loop here) I only changed one char line 389.

    Revision: 20754
    Revision: 20754
    Author:   [email protected]
    Date:     2011-03-10 03:36:05 -0800 (Thu, 10 Mar 2011)
    Log Message:
    My latest EndpointPushNotifier change changed the style of the code quite a bit (sorry for that, it was my IDE settings getting in the loop here) I only changed one char line 389.
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/client/EndpointPushNotifier.java

    I seem to have fixed it by putting <div  class="clearfloat"></div> after the navigation bar?

  • Change report for FXTP t-code

    Hi All,
    Could you kindly help me in finding a standard report or any other way to retrive the chagnes made to transaction FTXP in a report format.

    Hi buddy,
    1) transaction SCU3: Check if desired tables are monitored for changes.
    Tax tables: Tax Code And Tax Rate in FTXP transaction
    2) If so, report RSSCD200 enables you to find those changes (field table name)
    Cheers
    -fm

  • Extend/Change the Standard Fiori App code

    Hi,
    We have implemented FIORI App in our SAP landscape.After implementation app is running fine.I want the change the standard FIORI App code for a specific app like change the label,change the Background Image,Change the Font style etc.I googled and made changes according to the article provided.
    Steps done to change the Standard app code.
    1)Downloaded the source code and uploaded in eclipse.
    2)Created a Extension Project and replaced the entire view with my new view.
    3)Shared the project and submitted the changes in gateway system.
    4)Created semantic object and other things required to show the custom app on launch pad.
    5)But when I click on custom app developed on the Launch pad it is navigating to a blank screen with no UI elements.But standard app is working fine.
    So please tell me the correct procedure to change the app and show it on Launch pad.
    Tags edited by: Michael Appleby

    Hi Ritesh,
    Following are the steps I followed in extending a Fiori App.
    I am trying to extend HCM_LR_APV(Approve Leave request ) app.
    So I downloaded HCM_LR_APV BSP Application.
    I uploaded in Eclipse IDE .I created an Extension Project(ZHCM_LR_APV) for this.
    For testing I tried to change the Icon in one of the view.
    So I replaced the S3 view by placing the Original Code same and changing the Icon only.
    In Component.js file I gave the path to the parent application in Load function.See the below code for your reference.
    jQuery.sap.declare("hcm.mgr.approve.leaverequests.CUST_HCM_LR_APV_EXT.Component");
    sap.ui.component.load({
      name: "hcm.mgr.approve.leaverequests",
      url:"/sap/bc/ui5_ui5/sap/hcm_lr_apv",
    hcm.mgr.approve.leaverequests.Component.extend("hcm.mgr.approve.leaverequests.CUST_HCM_LR_APV_EXT.Component", {
      metadata: {
      version : "1.0",
      config : {
      "sap.ca.i18Nconfigs": {
      "bundleName":"hcm.mgr.approve.leaverequests.CUST_HCM_LR_APV_EXT.i18n.i18n"
      customizing: {
      "sap.ui.viewReplacements": {
      "hcm.mgr.approve.leaverequests.view.S3": {
      viewName: "hcm.mgr.approve.leaverequests.CUST_HCM_LR_APV_EXT.view.S3Custom",
      type: "XML",
    Then I submitted the changes and tested the Custom BSP Application.But I am getting the error as below
    Error Message:
    Failed to load resource: the server responded with a status of 404 (NOT FOUND) http://sapfiorisrvr.domain.com:portno/sap/bc/ui5_ui5/sap/zhcm_lr_apv_ext/Component-preload.js
    Thanks&Regards,
    Akhil Das

  • Change country code keep getting code:5107 what's this and why cant I  change the country

    Change country code keep getting code:5107 what's this and why cant I  change the country

    Exit Code: 6, Exit Code: 7 Installation Errors - http://helpx.adobe.com/creative-suite/kb/errors-exit-code-6-exit.html
    Troubleshoot with install logs | CS5, CS5.5, CS6 - http://helpx.adobe.com/creative-suite/kb/troubleshoot-install-logs-cs5-cs5.html for information on how to review your installation logs

  • Now on Firefox 5, cannot change printer prefferences,get "exemption code 0xc0000005", then Firefox crashes!

    I've already allowed the tech at Lexmark have access to my computer, checked everything, deleted and re-loaded everything, still will not allow "properties" changing , just get that "exemption code" junk! They INSIST it's my browser. Doesn't surprise me at all. Had multiple printer problems after Firefox 4 "upgrade", took a bit, but was working again. Now, no method of previous "fixes" are fixing this problem!

    Trilby wrote:
    rxvt-unicode-256color is not a command.
    https://wiki.archlinux.org/index.php/Rxvt-unicode
    That wasn't what I meant, sorry if I didn't made myself clear. I used
    TERM=rxvt-unicode-256color command man -Pcat urxvt | sed -n '/depth: b/,/^BA/p'|sed '$d'|sed '/^ [a-z]/s/^ */^/g'|sed -e :a -e 'N;s/\n/@@/g;ta;P;D'|sed 's,\^\([^@]\+\)@*[\t ]*\([^\^]\+\),! \2\n! URxvt*\1\n\n,g'|sed 's,@@\( \+\),\n\1,g'|sed 's,@*$,,g'|sed '/^[^!]/d'|tr -d "'\`" >> ~/.Xresources
    to add some commented lines to my .Xresources, and it worked.

  • The system cannot find the path specified.---- Error code:-2147467259 Error code name:failed

    Friends,
                I'm facing below issue while accessing a crystal report. I heard it might be an access issue. But i'm able to access a report within a same folder.
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException : The system cannot find the path specified.---- Error code:-2147467259 Error code name:failed
    at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(Unknown Source)
    at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(Unknown Source)
    Any suggestions would be very helpful.
    Thanks in Advance,
    Bharath

    Apply trace on RAS and look for errors in the RAS logs at the same timestamp.
    These errors come for various errors and tracing RAS would give us a better idea.
    It might hapen that you observe these errors for reports which takes more than the RAS timeout to export the reports.
    Post getting the RAS logs you can try below steps if we see timeout errors in RAS logs.
    Copy clientSDKOptions.xml file from <BO install path>\SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0\java\lib to the machine where your app is running Open clientSDKOptions.xml and change CORBARequestTimeOut from 600000 to a value large enough to allow the report to render, for instance 1200000. Default value is 600000 (10 minutes)
    Specify the location of the clientSDKOptions.xml file at run-time. In your JSP or Java files, use the Java method setProperty from the System class. Set the system property indicated by the ras.config key to the specified directory as: system.setProperty("ras.config","c:\temp"). This function call specifies that the clientSDKOptions.xml file in c:\temp is to be used for locating RAS servers.
    Thanks,
    Prithvi

  • Please help me transform this C++ code to java code....

    guys...please help me transform this C++ code to java code....please try to explain the code..thanks
    [program]
    #include <stdio.h>
    #define ALIVE 1
    #define DEAD 0
    #define SZ 33
    int stschk (int ,int );
    main()
    int s[SZ][SZ], i, j;
    for (i=0; i<sz; i++ ) s[0] = DEAD;
    for (j=0; j<sz; j++ ) s[0][j] = DEAD;
    s[0][1] = ALIVE;
    for (i=0; i<sz-1; i++) {
    for ( j=1;j<sz;j++ ) {
    s[i][j] = stschk(s[i][j-1],s[i+1][j];
    if(s[i][j-1]==ALIVE) printf("*");
    else printf(" ");
    printf("\n");
    int stschk(int s1,int s2)
    if(((s1==DEAD)&&(s2==ALIVE))||
    ((s1==ALIVE)&&(s2==DEAD))) return ALIVE;
    else return DEAD;

    Being picky, that's not C++, that's C. Standard headers in C++ dont' have .h after them, loop variables are scoped with the for, you use constants rather than #defines, etc..
    C and C++ both don't initialise arrays by default; you'd have to write an initialiser to get it to zero out the array:
        int s[sz][sz] = {};gcc will insert a call to memset to zero the array.
    If the author was assuming that the array was zeroed out, there would be no point zeroing the first row and column.
    The code reads values which haven't been initialised. If you mark such values explicitly undefined, and change the program to report an error when undefined, then you get several cases where the program makes such report.
    So either it' s a primitive random number generator (some random number generators use uninitialised memory as a source of randomness), or it's buggy, or it's processing undefined data and throwing away the result. Either way, it cannot be directly be ported to Java if the undefined values (which are limited to a small area of the ouput) are significant.

  • Error Error code:-2147217395 Error code name:serverProgramingError

    Hi,
    i am using JRC application sample which bascially read the .RPT file and export it to .PDF filefrom this link, i have made the relative changes which point to the .rpt file. compilation went fine.. but i am facing the runtime error which mentioned below.
    i have not made any changes in CRconfig.xml expect the Keycode and not a single change ins lof4j.
    i came to know it should require the Swing lib too, presently i am not using that.
    kindly let me know if i missing some thing in this context.  the error log is
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: Unexpected error determining relative path---- Error code:-2147217395 Error code name:serverProgrammingError
            at com.businessobjects.reports.sdk.a.if(Unknown Source)
            at com.businessobjects.reports.sdk.a.do(Unknown Source)
            at com.businessobjects.reports.sdk.a.<init>(Unknown Source)
            at com.businessobjects.reports.sdk.a.<clinit>(Unknown Source)
            at com.businessobjects.reports.sdk.c.<clinit>(Unknown Source)
            at com.businessobjects.reports.sdk.JRCCommunicationAdapter.case(UnknownSource)
            at com.businessobjects.reports.sdk.JRCCommunicationAdapter.<clinit>(Unknown Source)
            at java.lang.Class.forName0(Native Method)
            at java.lang.Class.forName(Unknown Source)
            at com.crystaldecisions.proxy.remoteagent.z.a(Unknown Source)
            at com.crystaldecisions.sdk.occa.report.application.ReportAppSession.int(Unknown Source)
            at com.crystaldecisions.sdk.occa.report.application.ReportAppSession.initialize(Unknown Source)
            at com.crystaldecisions.sdk.occa.report.application.ClientDocument.for(Unknown Source)
            at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.for(Unknown Source)
            at com.crystaldecisions.sdk.occa.report.application.ClientDocument.open(Unknown Source)
            at com.crystaldecisions.reports.sdk.ReportClientDocument.open(Unknown Source)
            at JRCExportReport.main(JRCExportReport.java:33)
    Waiting for your response.
    Thanks!
    Prabhakar J.

    Hi,
    after removing the reportlocation tag i am getting the following error.
    - Requested node not found in configuration file
    -  received request: verifyLogon
    -  received request: createServerAgent
    - Creating JRCAgent1
    - JRCAgent1 received request: fetchDataDocumentRequest
    - Time to load report C:\DOCUME1\pjujare\LOCALS1\Temp\jrc_tmp_4664716485754572
    89.rpt took 391 ms
    Exception in thread "main" java.lang.NoClassDefFoundError: com/crystaldecisions/reports/dataengine/l
            at com.businessobjects.reports.sdk.JRCCommunicationAdapter.if(Unknown Source)
            at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(Unknown Source)
            at com.crystaldecisions.proxy.remoteagent.y.a(Unknown Source)
            at com.crystaldecisions.proxy.remoteagent.r.a(Unknown Source)
            at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.if(Unknown Source)
            at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.if(Unknown Source)
            at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.a(Unknown Source)
            at com.crystaldecisions.sdk.occa.report.application.ClientDocument.open(Unknown Source)
            at com.crystaldecisions.reports.sdk.ReportClientDocument.open(Unknown Source)
            at JRCExportReport.main(JRCExportReport.java:36)
    Caused by: java.lang.ClassNotFoundException: com.crystaldecisions.reports.dataengine.l

  • Error code:-2147217401 Error code name:agentTimeout

    Hi,
    We are getting the below error
    ReportSDKException Occurred com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException: Server agent has timed out.---- Error code:-2147217401 Error code name:agentTimeout
    while adding SQL to crystal report for few cases (more time consuming reports) . i.e.
    reportClientDocument.getDatabaseController().addTable(boNewCommandTable, null);
    what could be the reason for the same? Is there any maximum time limit for the addTable() method execution, If so how can we change that?
    Thanks & Regards
    Amitav

    Hi Adam,
    Actually we are trying to add an SQL query to the report and we know that the particular SQL supposed to take more time for execution. Our application logs indicate that the agentTimeout error comes approximately after 6 hrs. We are wondering if there is some maximum time limit then will it possible to change the same.
    Thanks & Regards
    Amitav

  • Error code:-2147217387 Error code name:connectServer

    Hi all,
    <br></br>
    I have standalone java file, and i am trying to connect with the Crystal Report server. I have Crystal Report Server 2008.
    Error code:-2147217387 Error code name:connectServer
    <br></br>
    The server is newly installed and i dint make any change. All the services are up and running.
    <br></br>
    I am getting the following exception
    I tried the following cases
    <br></br>
    clientDoc.setReportAppServer("01hw150564");
    clientDoc.setReportAppServer("172.20.224.123");
    clientDoc.setReportAppServer("172.20.224.123:6400");
    but no use.  Please hep me
    <br></br>
    Exception
    <br></br>
    Connecting to report server...
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException: Unable to connect to the server: . - Connection reset-- Error code:-2147217387 Error code name:connectServer
         at com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException.throwReportSDKServerException(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.TCPIPCommunicationAdapter.request(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.y.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportAppSession.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportAppSession.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportAppSession.initialize(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ClientDocument.new(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.new(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ClientDocument.open(Unknown Source)
         at SampleExport.method2(SampleExport.java:114)
         at SampleExport.main(SampleExport.java:24)
    Caused by: java.net.SocketException: Connection reset
         at java.net.SocketInputStream.read(SocketInputStream.java:168)
         at java.net.SocketInputStream.read(SocketInputStream.java:182)
         at java.io.DataInputStream.readInt(DataInputStream.java:354)
         ... 10 more
    <br></br>
    Caused by
    java.net.SocketException: Connection reset
         at java.net.SocketInputStream.read(SocketInputStream.java:168)
         at java.net.SocketInputStream.read(SocketInputStream.java:182)
         at java.io.DataInputStream.readInt(DataInputStream.java:354)
         at com.crystaldecisions.proxy.remoteagent.TCPIPCommunicationAdapter.request(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.y.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportAppSession.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportAppSession.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportAppSession.initialize(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ClientDocument.new(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.new(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ClientDocument.open(Unknown Source)
         at SampleExport.method2(SampleExport.java:114)
         at SampleExport.main(SampleExport.java:24)
    <br></br>
    Caused by:
    java.net.SocketException: Connection reset
         at java.net.SocketInputStream.read(SocketInputStream.java:168)
         at java.net.SocketInputStream.read(SocketInputStream.java:182)
         at java.io.DataInputStream.readInt(DataInputStream.java:354)
         at com.crystaldecisions.proxy.remoteagent.TCPIPCommunicationAdapter.request(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.y.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportAppSession.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportAppSession.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportAppSession.initialize(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ClientDocument.new(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.new(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ClientDocument.open(Unknown Source)
         at SampleExport.method2(SampleExport.java:114)
         at SampleExport.main(SampleExport.java:24)
    <br></br>
    Source
    <br></br>
    ReportClientDocument clientDoc = null;
                   System.out.println("Connecting to report server...");
                   clientDoc = new ReportClientDocument();
                   clientDoc.setReportAppServer("172.20.224.123"); // Getting error here
                   clientDoc.open(reportName, OpenReportOptions._openAsReadOnly);
                        clientDoc.getDataDefController().getParameterFieldController().modify(parameterField, newfld);
                   PrintOutputController poController = clientDoc.getPrintOutputController();
                   DatabaseController dbcontroller = clientDoc.getDatabaseController();
                   dbcontroller.logon("PDTCDEP","chennai1");
                   System.out.println("Creating file...");
                   ByteArrayInputStream byteIS = (ByteArrayInputStream) poController.export(ReportExportFormat.PDF);
                   FileOutputStream fos = new FileOutputStream(outputName);
    But, in Crystal Report Server XI Relese 2, the same code works and generated the pdf reports reports.
    Please help for this.
    If i need to do any change in administration or code ?
    Thanks,
    Anandraj
    Edited by: Aanduu on Sep 9, 2011 9:51 AM

    How to solve this problem. The problem is some time
    my web application can not connect to crystal report
    server. And App. log was receord as below.
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKServ
    erException: Unable to connect to the server:
    crp.RAS.rptappserver.---- Error code:-2147217387Does this give a hint of what to check? Maybe you need to check if the server is running and the server configuration is correct.
    I haven't ever used Crystal Reports, so I can't be very specific. A Google search might help.

  • Significance of EU Code in Tax Code - FTXP

    Hi All,
    When we give the Properties of the tax code in FTXP,there is a field EU CODE.I would like to know what is the significance of EU Code in tax code .We can maintain EU Code as 1 ,2 ,3 etc.Suppose, I change the EU Code from 2 to1 ,what will be the effect on the system.
    Please guide me.
    Thanks and Regards,
    Payal Saxena

    Hi Payal
    The EU Code / EC code is used for classifying the tax codes which are to be taken into consideration in the EC sales list.
    This is only possible for output tax.
    Furthermore, this code is used for carrying out checks when entering a document.
    If G/L account items are displayed in a document as delivery of goods or subcontracting within the EC using this code, you should also specify a VAT registration number (VAT reg.no.) in this document.
    This means that the VAT reg.no. of the reporting country is defined in the customer master record when posting. During document entry, you can only enter a VAT reg.no. for manual cash discount expense postings. You cannot enter the VAT reg.no. directly in customer postings. For these postings, the system always fetches the VAT reg.no. by using the reporting country from the master record (document entry and document change).
    I believe 1 is for Goods, 2 for Services & 3 for Subcontracting.
    So definitely there will be a difference in recording these tax codes.
    Rgds
    Zub

  • Case created without business partner, reason code and  result code

    In our CRM system, some cases was created without business partner, reason code and result code.
    We created some customer functions to make these fields as mandatory, it always work for our technique people and process expert, but it didn't work for some users occasionally. We cannot debug it.  
    Can anyone tell me why and how to solve it?
    Please help me !
    Regards,
    Shirley

    Hello Shirley,
    Well, then I would check the code, which calls your custom function modules.
    It may be possible, that you have an IF in the 'Main' program, which makes it possible to skip the custom FM for these users.
    The reason I am assuming this, is that normally you need just to change attributes for a field to make it mandatory, or customizing like SHD0 makes this possible. If you use custom FM, you have to call them somewhere and this is the point I would be looking for.
    Check the traces for the users and you should find, that the custom FM are not called for them.
    My opinion, of course
    Award points if this helps.
    Regards,
    Martin Kuma

  • HAL Error Log Error Code = 1033 Native Code = 1030201

    Hello,
    I am geting the following error message in HAL logs:
    05/19/2010|193212|PlanApp/Plan2|Error|Calculate|Error Code = 1033 Native Code = 1030201 Error Msg = [Wed May 19 19:32:12 2010]PRODVIS/PlanApp/Plan2/admin/Error(1030201) Cannot create object: admin.txt, App\PlanApp\Cube\Plan2\CS\RBefLdMt
    05/19/2010|193212|PlanApp/Plan2|Error|Calculate|Method Ended - Calculate completed with exceptions.
    What might be the problem?
    Regards

    This happened due to the login I was giving to HAL. This user was administrator of Essbase and Planning but when I logged in the EAS admin console with it, I could not see any application. I'm not sure why though, but changing the user to the one that made the initial Essbase install did the trick.

Maybe you are looking for

  • Adobe Exchange not loading in CS6

    I am attempting to install Adobe Exchange in Photoshop CS6. I am able to download the "AdobeExchange_cs6.zxp" installer and use the Extension Manager to "load" it, and it does show up in the extensions list for Photoshop. But it is not available unde

  • MAC Authentication does not work

    My MAC Authentication does not work. I have a ACS 3.0 server set. the MAC address is set in the user name field and in the password field. I can ping the ACS, I can ping my AP, I can ping my client. I don't want WEP and I don't want LEAP just MAC. So

  • Application to oracle application software development competition 2009

    dear sir, i am good in sql/plsql. After seeing the message of software development competition 2009, i downloaded oracle XE , apex and now I have successsfully created an application which can handle hotel administration. I have to prepare two/ three

  • Viewing JavaDoc HTML files inside a JFrame

    hi all, how can I display any of JavaDoc HTML files (as overview-summary.html or index.html) inside a JFrame? in addition, the user should be able to use hyperlinks. I used JEditorPane, but in it I can't use hyperlinks. thanks for your answers. :)

  • Macbook randomly wakes up from sleep!

    Hello, I have a macbook 13" (white) and I use 10.5.2. When I set my macbook to sleep it does what it is supposed to. But it randomly wakes up. It does that when I am using the power adapter or battery. It even does it when I have the lid closed. It i