Error in compiling swf for Flex 2 application

Hello experts!
After applying SPS 7 for EHP1 7.0 I am receiving the following error when deploying my model.
Error in compiling swf for Flex 2 application. The log is appended below.
I realized the error only occurs when I use value help.
Can anybody advise please.
Thanks,
Ibrahim
Error in compiling Flex application: /usr/sap/QJB/JC01/j2ee/cluster/server0/GUIMachine_Business_Packages/[xxx]MyModels.QM.Tab_test/FLEX_COMPILATION_FOLDER/AAD3KX_P.mxml(17): col: 145 Error: Element type "vc:LabeledDropDown" must be followed by either attribute specifications, ">" or "/>".
                  <vc:LabeledDropDown comboHeight="16" width="200" labelField="text" selectedIndex="{VC.getEnumIndex(AXCWV1, AAA3L21.Current.SELOP_TYPE || "BT", 'value')}" valueProperty="SELOP_TYPE" valueObject="{(AAA3L21.Current)}" id="ACA3L21_DropDown1" dataProvider="" comboComponent_y="40" prompt="" label="{(Languser1.BhlfcdeBHckjkGcInkHE)}" comboY="40" visible="{DE.NOT(false)}" creationComplete="AXCWV1.addEventListener(InfosetEvent.DATA_REFILLED, selectDefaultACA3L21_DropDown1)" component_x="88" x="8"/>
Edited by: Ibrahim Ibrahim on Apr 15, 2011 1:19 PM

We have solved this by applying note: 1510453 - Certain default values in list-based controls causes error

Similar Messages

  • 32 K error while compiling and deploying flex application

    Hi SAP Team,
    This is regarding the modelling of complex and huge models in VC and
    errors when modelling the same.
    I have a huge and complex model containing more than 100 queries from
    BI 7.0 system which iam using for modelling a VC application.I have 5
    layers to display the queries data.
    Iam getting deployment error when iam deploying the application which
    is a 32 K flex deployment error.
    I have modelled the application with multiple nested iviews and
    multiple layers.
    I have the following questions regarding the above VC model:
    1)is there a upper limit of number of queries or services ( i have used
    around 100 queries in the above model)that can be used in VC Model
    2)is there any performance issue of using this many number of queries
    in a single model and running all the queries on a single submit button
    click.
    3)How to deal with adobe flex compilation error when deploying large or
    complex models
    4)I have used all the best modelling practices in my model as per note
    936390 .But still iam getting the error.
    Thanks
    P.Navakanth
    +919985555065

    Can anyone pelase tell me what is the significance of the component:
    com.sap.visualcomposer.vcflex.default
    iam asking the above question because, theversion of above component is different from my actual v ersion of portal i.e EP is at Version 7.0 and SP 16 but the above component is at version7.0 and SP 10.
    the SAP note 936390 says that The fix for 32k flex deployment problem was introduced with the release of flex2.0 runtime in SP14 patch 2.
    I want to check whether the above component ( com.sap.visualcomposer.vcflex.default ) is actually causing the issue.
    To see the component versions of your sap EP please navigate to
    http://host:Port/sap/monitoring/ComponentInfo
    Thanks
    P.Navakanth

  • Where can I find a complete set of compiled swfs for 2.0?

    Where can I find a complete set of compiled swfs for 2.0?
    I want to place these directly on my website.
    Thanks,
    Ken

    So basically Apple is hiding which networks allow rentals vs. purchase until you buy an ATV2,
    and then find out you can't watch "The Closer", "Men of a Certain Age", "In Plain Sight", etc., etc.
    Or until you spend a bunch of time digging through iTunes show by show...
    Sad...Guess I'm sticking with Cable for a while longer....

  • Error 1009 / Using swf in Flex

    Hi all.
    I am creating a small Flex Application which will include a swf.
    The application consists of two panels, with the left being a Flash app. As the user moves the mouse over the Flash, it should trigger different messages on the right panel.
    A screenshot is attached to get an idea of what I'm aiming for.
    This is the error I'm getting:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at flash_component_fla::MainTimeline/frame1()
    Additionally, I'm struggling with two things:
    How do I get the output panel to display in the Rockwell font
    How do I get the Flash part to send the mouse position to the Flex?
    So this is what I have:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application
         xmlns:mx="http://www.adobe.com/2006/mxml"
         layout="absolute"
         height="610" width="750"
         creationComplete="showCursor()" backgroundColor="white" cornerRadius="10" borderStyle="solid">
         <mx:Style>
         .boxClass {
            fontFamily: Rockwell, Trebuchet MS, Helvetica, "_sans";
            color: Red;
            fontSize: 12;
            fontWeight: bold;
        </mx:Style>
        <mx:Script>
        <![CDATA[
        [Bindable] public var clickText:XMLList;
        private var panelText:XML =
                     <textDetails>
                          <bodyPart>
                                  <partName>throat</partName>
                                  <partNo>You cannot donate when you have a sore throat or a throat infection</partNo>
                                  <partYes>Once the sore throat has cleared, or a week after any antibiotics have finished, you can donate.</partYes>
                             </bodyPart>
                             <bodyPart>
                                  <partName>pregnancy</partName>
                                  <partNo>You cannot donate wwhile you are pregnant</partNo>
                                  <partYes>You can donate when the expected baby iis nine months old</partYes>
                             </bodyPart>
                             <bodyPart>
                                  <partName>hayfever</partName>
                                  <partNo>Only restricted iif you are feeling unwell</partNo>
                                  <partYes>You can donate iif you are feeling well, even iif you are taking medication</partYes>
                             </bodyPart>
                             <bodyPart>
                                  <partName>dentist</partName>
                                  <partNo>Wait seven days after complicated dental work, such aas tooth extractions</partNo>
                                  <partYes>You can donate after simple inspections, or after 24hrs after fillings.</partYes>
                             </bodyPart>
                             <bodyPart>
                                  <partName>asthma</partName>
                                  <partNo>If you having the effects of the asthma</partNo>
                                  <partYes>You can donate iif you are feeling well, even iif you uuse a preventative inhaler</partYes>
                             </bodyPart>
                             <bodyPart>
                                  <partName>Surgery</partName>
                                  <partNo>Major Surgery: Please call the helpline</partNo>
                                  <partYes>Minor Surgery: As long aas there were no complications and the donor has recovered.</partYes>
                             </bodyPart>
                        </textDetails>
              import mx.managers.CursorManagerPriority;
               import mx.managers.CursorManager;
               import flash.events.Event;
               private function functions():void     {
                             throat.addEventListener(MouseEvent.CLICK, changeText);
              private function changeText(event:Event):void {
                             clickText = panelText.bodyPart[0].partYes;
                             output.text= clickText;
         [Embed("nbs1.gif")]
          private var customCursor:Class;
         private function showCursor():void
            CursorManager.setCursor(
              customCursor,
              CursorManagerPriority.HIGH,
              -1,
              -1);
         ]]>
           </mx:Script>
         <mx:Panel x="481" y="69" width="250" height="516" layout="absolute" id="rt">
              <mx:Text x="10" y="10" text="Other Considerations..."/>
              <mx:Accordion x="8" y="36" width="212" height="277">
                   <mx:Canvas label="Blood Transfusions" width="100%" height="100%" dropShadowEnabled="true" dropShadowColor="#F50B0B">
                        <mx:Text x="10" y="10" width="190">
                             <mx:htmlText>If you have recieved a blood transfusion since the beginning of 1980, you cannot currently donate.</mx:htmlText>
                        </mx:Text>
                   </mx:Canvas>
                   <mx:Canvas label="Travel" width="100%" height="100%">
                   <mx:Text x="10" y="10" width="190">
                             <mx:htmlText>Travellers to malarial areas and countries with West Nile Virus should contact the helpline for more details.</mx:htmlText>
                        </mx:Text>
                   </mx:Canvas>
                   <mx:Canvas label="Weight" width="100%" height="100%">
                   <mx:Text x="10" y="10" width="190">
                             <mx:htmlText>You need to weigh 50kg, or 7st 12lb to donate.</mx:htmlText>
                        </mx:Text>
                   </mx:Canvas>
                   <mx:Canvas label="Tattoos and piercings" width="100%" height="100%">
                        <mx:Text x="10" y="10" width="190">
                             <mx:htmlText>Any new piercings or tattoos, or acupuncture? You now have to wait just four months before being eligible to donate.</mx:htmlText>
                        </mx:Text>
                   </mx:Canvas>
                   <mx:Canvas label="Age Limits" width="100%" height="100%">
                        <mx:Text x="10" y="10" width="190">
                             <mx:htmlText>
                                  Under 16: Too young. Sorry!
                                  16 - 17: You can register, but not donate 17 - 65: Please register! 66 - 70: If you have ever donated, you can donate 70+: Only if you have donated in the last two years.
                             </mx:htmlText>
                        </mx:Text>
                   </mx:Canvas>
                   <mx:Canvas label="Antibiotics" width="100%" height="100%">
                        <mx:Text x="10" y="10" width="190">
                             <mx:htmlText>
                                  You can donate seven days after the antibiotics have finished, as long as the infection has cleared.
                             </mx:htmlText>
                        </mx:Text>
                   </mx:Canvas>
                   <mx:Canvas label="Common Cold" width="100%" height="100%">
                        <mx:Text x="10" y="10" width="190">
                             <mx:htmlText>
                                  You can donate when the cold has cleared and you are feeling well.
                             </mx:htmlText>
                        </mx:Text>
                   </mx:Canvas>
              </mx:Accordion>
              <mx:TextArea
                   id="output"
                   x="10" y="321"
                   text="Move the cursor over the bodies to find out more about how your health affects blood donation!"
                   width="210" color="#F21212" styleName="boxClass" height="68"/>
         </mx:Panel>
         <mx:Image x="667" y="35" source="NHS.jpg" width="65" height="26"/>
         <mx:Image x="10" y="22" source="headline.gif"/>
         <mx:SWFLoader x="10" y="69" source="flash_component.swf" id="throat"/>
    </mx:Application>

    Hmm, thanks Flex HarUI... IU I kinda think the boffins at Adobe are less likely than me to have the problems.
    I'm going to attach the swf and it's associated .fla if that is any more help.
    For the record this is the Error Message:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at flash_component_fla::MainTimeline/frame1()
    Any help would be hugely appreciated...

  • What to look for in a web hosting company for Flex applications

    Hello,
    I am trying to figure out what I need to look for in a web
    hosting company if I want to deploy my own Flex applications? I
    don't anticipate having any special requirements other than the
    ability to interact with databases and XML files. Can someone help
    me figure out what the server-side requirements are?
    Thanks in advance!
    Matt

    then almost 99.9% hosting will work.
    if you want a Flexx app with compiler then oo thats different
    but as you say "I don't anticipate having any special requirements
    other than the ability to interact with databases and XML files"
    then you can go with pretty much any hosting, as long as they have
    apache, Database serve and I think thats it.

  • 500 Internal Server Error on IBM AIX for Oracle Application Server 10g

    Hi all,
    I have installed Oracle AS 10g on IBM AIX 5.3.After installation everything was working fine.After some time when i was trying to access the emd console for deploying the application it gives me following error:w/o asking for user name(ias_admin) and password.
    500 Internal Server Error
    java.lang.NoClassDefFoundError: oracle/sysman/eml/app/Console     at java.lang.Class.forName0(Native Method)     at java.lang.Class.forName(Class.java(Compiled Code))     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpApplication.loadServlet(HttpApplication.java:2283)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpApplication.findServlet(HttpApplication.java:4795)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpApplication.getRequestDispatcher(HttpApplication.java:2821)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java(Compiled Code))     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.run(HttpRequestHandler.java(Compiled Code))     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:126)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)     at java.lang.Thread.run(Thread.java:568)
    Please help me out...
    Thanks in advance

    Hi,
    I am facing the same problem as well. Below is part
    of error captured from em-application.log:
    08/07/22 17:02:59 Started
    08/07/22 17:03:00 default: jsp: init
    08/07/22 17:03:00 default: Started
    08/07/22 17:03:04 emd: jsp: init
    08/07/22 17:03:04 emd: dynamicImage: init
    08/07/22 17:03:11 emd: Error initializing servlet
    java.lang.InternalError: Can't connect to X11 window
    server using '172.28.8.106:0.0' as the value of the
    DISPLAY variable.
    at
    sun.awt.X11GraphicsEnvironment.initDisplay(Native
    Method)
    at
    sun.awt.X11GraphicsEnvironment.<clinit>(X11GraphicsEnv
    ironment.java:175)
    at java.lang.Class.forName1(Native Method)
    at java.lang.Class.forName(Class.java:180)
    at
    java.awt.GraphicsEnvironment.getLocalGraphicsEnvironme
    nt(GraphicsEnvironment.java:91)
    at
    java.awt.Font.initializeFont(Font.java:333)
    at java.awt.Font.<init>(Font.java:368)
    at
    oracle.sysman.eml.app.Console.<clinit>(Console.java:57
    9)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java(Compiled
    Code))
    at
    com.evermind.server.http.HttpApplication.loadServlet(H
    ttpApplication.java:2283)
    at
    com.evermind.server.http.HttpApplication.findServlet(H
    ttpApplication.java:4795)
    at
    com.evermind.server.http.HttpApplication.initPreloadSe
    rvlets(HttpApplication.java:4889)
    at
    com.evermind.server.http.HttpApplication.initDynamic(H
    ttpApplication.java:1015)
    at
    com.evermind.server.http.HttpApplication.<init>(HttpAp
    plication.java:549)
    at
    com.evermind.server.Application.getHttpApplication(App
    lication.java:890)
    at
    com.evermind.server.http.HttpServer.getHttpApplication
    (HttpServer.java:707)
    at
    com.evermind.server.http.HttpSite.initApplications(Htt
    pSite.java:625)
    at
    com.evermind.server.http.HttpSite.setConfig(HttpSite.j
    ava:278)
    at
    com.evermind.server.http.HttpServer.setSites(HttpServe
    r.java:278)
    at
    com.evermind.server.http.HttpServer.setConfig(HttpServ
    er.java:179)
    at
    com.evermind.server.ApplicationServer.initializeHttp(A
    pplicationServer.java:2394)
    at
    com.evermind.server.ApplicationServer.setConfig(Applic
    ationServer.java:1551)
    at
    com.evermind.server.ApplicationServerLauncher.run(Appl
    icationServerLauncher.java:92)
    at java.lang.Thread.run(Thread.java:568)
    17:03:11 emd: Error preloading servlet
    avax.servlet.ServletException: Error initializing
    servlet
    at
    com.evermind.server.http.HttpApplication.findServlet(H
    ttpApplication.java:4846)
    at
    com.evermind.server.http.HttpApplication.initPreloadSe
    rvlets(HttpApplication.java:4889)
    at
    com.evermind.server.http.HttpApplication.initDynamic(H
    ttpApplication.java:1015)
    at
    com.evermind.server.http.HttpApplication.<init>(HttpAp
    plication.java:549)
    at
    com.evermind.server.Application.getHttpApplication(App
    lication.java:890)
    at
    com.evermind.server.http.HttpServer.getHttpApplication
    (HttpServer.java:707)
    at
    com.evermind.server.http.HttpSite.initApplications(Htt
    pSite.java:625)
    at
    com.evermind.server.http.HttpSite.setConfig(HttpSite.j
    ava:278)
    at
    com.evermind.server.http.HttpServer.setSites(HttpServe
    r.java:278)
    at
    com.evermind.server.http.HttpServer.setConfig(HttpServ
    er.java:179)
    at
    com.evermind.server.ApplicationServer.initializeHttp(A
    pplicationServer.java:2394)
    at
    com.evermind.server.ApplicationServer.setConfig(Applic
    ationServer.java:1551)
    at
    com.evermind.server.ApplicationServerLauncher.run(Appl
    icationServerLauncher.java:92)
    at java.lang.Thread.run(Thread.java:568)
    17:03:11 emd: redirect: init
    8/07/22 17:03:11 emd: Started
    08/07/22 17:03:11 cabo: jsp: init
    08/07/22 17:03:11 cabo: Started
    08/07/22 17:05:28 emd: Error initializing servlet
    java.lang.NoClassDefFoundError:
    oracle/sysman/eml/app/Console
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java(Compiled
    Code))
    at com.evermind[Oracle Application Server
    Containers for J2EE 10g
    (10.1.2.0.2)].server.http.HttpApplication.loadServlet
    Http
    Application.java:2283)
    at com.evermind[Oracle Application Server
    Containers for J2EE 10g
    (10.1.2.0.2)].server.http.HttpApplication.findServlet
    Http
    Application.java:4795)
    at com.evermind[Oracle Application Server
    Containers for J2EE 10g
    (10.1.2.0.2)].server.http.HttpApplication.getRequestD
    spat
    cher(HttpApplication.java:2821)
    at com.evermind[Oracle Application Server
    Containers for J2EE 10g
    (10.1.2.0.2)].server.http.HttpRequestHandler.processR
    ques
    t(HttpRequestHandler.java:680)
    at com.evermind[Oracle Application Server
    Containers for J2EE 10g
    (10.1.2.0.2)].server.http.HttpRequestHandler.run(Http
    eque
    stHandler.java:285)
    at com.evermind[Oracle Application Server
    Containers for J2EE 10g
    (10.1.2.0.2)].server.http.HttpRequestHandler.run(Http
    eque
    stHandler.java:126)
    at com.evermind[Oracle Application Server
    Containers for J2EE 10g
    (10.1.2.0.2)].util.ReleasableResourcePooledExecutor$M
    Work
    er.run(ReleasableResourcePooledExecutor.java:186)
    at java.lang.Thread.run(Thread.java:568)
    17:05:28 emd: Servlet error
    /b]
    Could someone please help me take a look on this?
    Thank you.
    Regards,
    HT
    Hi,
    I have got the solution........
    go through the url:
    http://docs.tpu.ru/docs/oracle/en/oas/10.1.2.0.2/aix.1012/relnotes.1012/relnotes/install.htm
    Read these points:
    Class Not Found Execption: 2.1.25
    After doing all these four steps,restart your application server control.
    Cause of this problem:
    X Virtual Frame Buffer: 2.4.14
    Cheers,

  • What are the better load/performance testing tools available for Flex Application with BlazeDS RO?

    In my application is designed with Flex3, ActionScript3, BlazeDS Remote Objects.
    Just i tried with OPENSTA but i cant do the dynamic parameterization in their generated scripts because the response of the calls is binary values and also we cant get the response using with SCL language.
    While testing with OPENSTA with HttpService, i can do the dynamic parameterization and got the response.
    can give the information about the below questions
    whether we can do dynamic parameterization with OPENSTA for Flex Remote objects?
    and  what are the better load/performance tools available for Flex Remote Objects?

    Your approach is fine, depending on how many and what type of CFCs you are talking about. If they are "singletons" - that is, only one instance of each CFC is needed to be in memory and can be reused/shared from multiple parts of your application - caching them in the application scope is common.  Just make sure they are thread safe ("var" or local.* all your method variables).
    You might consider taking advantage of a dependency injection framework, such as DI/1 (part of the FW/1 MVC framework), ColdSpring, or WireBox (a module of the ColdBox platform that can be used independently).  They have mechanisms for handling and caching singletons.  Then you wouldn't have to go to the application scope to get your CFC instances.
    -Carl V.

  • Unexpected behaviour for flex application running on Mac 10.8 with Flash player 12 on Safari

    I have scenario here : I am running my flex application in my Mac 10.8 machine with Flash player 12 on Safari browser . I have a registration form and it is validating various fields in it and when I hit Continue button it is not navigating to the next screen even if all the fields are validated. This registration form is a Popup. Can any body help me with this?

    No, the problem still occurs.
    It's weird there are no plug-in errors or something.
    With fp installed:
    with fp uninstalled:
    as a side note: a few weeks ago, I made a new clean Mac OS installation because of a harddrive replacement. So, the whole system is actually very tidy...  

  • Error Accessing internet from the flex application.

    Hi
    I am getting the following error while runningm my flex
    application deployed on the OC4J server. The error did not come
    when I was running the application directly from the flex builder.
    However , after deploying it on the application server my
    flex application cannot access the internet and in turn
    throws this error. Does this have anything to do with the
    'crossdomain.xml' file, which most probably does not exist on my
    server. If that is the case, please can somone let me know as to
    where exactly do I put the 'crossdomain' file.
    [RPC Fault faultString="Security error accessing url"
    faultCode="Channel.Security.Error" faultDetail="Destination:
    DefaultHTTP"]
    at mx.rpc::AbstractInvoker/
    http://www.adobe.com/2006/flex/mx/internal::faultHandler()
    at mx.rpc::Responder/fault()
    at mx.rpc::AsyncRequest/fault()
    at ::DirectHTTPMessageResponder/securityErrorHandler()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/flash.net:URLLoader::redirectEvent()
    TIA
    ~Shishir

    This file goes in the"root of the web server". Now tis is not
    very helpful so here are some examples:
    IIS default:
    C:\Inetpub\wwwroot
    Flex 1.5 "integrated Jrun" default installation
    C:\Program Files\Macromedia\Flex\jrun4\servers\default
    Tomcat:
    C:\Program Files\Apache Software Foundation\Tomcat
    5.0\webapps
    If in doubt, put one everywhere until it works, then take
    them out until it breaks.
    Use the universal permission until you get it working:
    <allow-access-from domain="*" to-ports="*" secure="true"
    />
    Tracy

  • Automatic Update for Flex applications

    Hi All..!!
    Is there any way for flex extension to have the functionality of automatically updating itself? For eg, I have a Flex panel installed for use in Photoshop, how do I add the automatic update feature in my panel? I searched the internet and came across the Updater Framework of Adobe AIR? Can we use it in a Flex extension as well, in a panel designed for Photoshop..??
    Thanks!

    Hii..!! Please reply folks..!! I need a reply... Guide me, whether a Flex extension can be automatically updated..??
    Thanks!

  • Error when compiling AppleScript for CS2, need help

    I've recently started learning AppleScript, and while I'm no stranger to programming I'm a little lost when it comes to errors like this one. I have both InDesign CS2 and InDesign CS3 installed so I'm not sure if my problem is caused by that, they were installed before I started working on this mac. I've also been recently upgraded from Tiger to Leopard, in case that might be a probable cause.
    Basically, my problem stems from this:
    tell application "Adobe InDesign CS2"
        get active document
    end tell
    When I try to compile this I get a Syntax Error that says "Expected end of line but found class name." and highlights "document". I've also had problems trying to use things like "page 1" or "view preferences" with similar errors. With the case of things like "page 1" I've had to replace it with "item 1 of pages" to get it to compile.
    If I change it to "Adobe InDesign CS3" it works fine, but I need to compile for CS2 for backwards compatability. Strangely, this method works:
    set indesign to application "Adobe InDesign CS2"
    tell indesign
        using terms from application "Adobe InDesign CS3"
            get active document
        end using terms from
    end tell
    Does this mean my CS2 dictionary is broken? I can view it fine from the Script Editor, and I've seen things like "active document" used in example scripts, so this syntax error is confusing me.

    I'm not sure why you're getting that error, but a couple of things:
    Using "document 1" instead of "active document" is not a bad habit,
    because there are cases where active document doesn't work.
    When you compile the scripts, the version is somewhat irrelevant -- when
    you go to run them, they look for a running application of the same creator
    code, and use that. It's a bit like when you double-click on a document in
    the Finder -- it doesn't matter what version of ID you made it in, it will
    try to open in whatever version is running first.
    Shane Stanley <[email protected]>
    AppleScript Pro Sessions <http://scriptingmatters.com/aspro

  • Error running ssodatax script for partner applications

    I am running the ssodatax script after creating a partner
    application using the user interface in the portal. I get the following
    error after the script starts running:
    SP2-0310: unable to open file "sso/ssoseedp.sql"
    Any thoughts will be appreciated.
    Thanks,
    Suzanne

    It appears that ssodatax in your environment is unable to find the script ssoseedp.sql. This script should be available in plsql/sso directory under the ORACLE_HOME. Please find the script ssodatax and look for the sso subdirectory within the directory that contains ssodatax. If you find ssoseedp.sql in sso, then you can try running ssodatax from the directory that contains it.

  • Error while configuring Debugging for WebDynpro Application

    Hi Experts,
    I am trying to configure Portal server for debugging a WebDynpro application.
    In NWDS , in Debug configuration
    When i tried to add my Webdynpro Project and application under Debug tab , No problem.
    But when i checked J2EE Engine tab : it showed the following error.
    <b>[J2EE Engine]: the selected server node does not run  in restricted load balancing mode, please configure it correctly so that the URL extention can be used</b>
    And ignoring it when i started debugging the application , the URL was formed like this :
    http://<host>:50000/@@@DEBUG@@@7672950/webdynpro/dispatcher
    /local/WDtest/WDtest?SAPtestId=1
    with the error :   The requested resource does not exist.
    Details: Go to main page of this application!
    Can anybody help me to fix the configuration.
    Regards,
    Ashish Shah

    Hi,
    To configure to the debugging mode... follow the steps:
    1. Select "SDM" from J2EE engine (To get this view navigate thru Window--> Show View --> J2EE Engine)
    2. Make a right click on "SDM" and choose "Enabling Debugging of Process"
    3. Now, Navigate to Run --> Debug --> Select your Project as "Webdynpro Application" and click "new" button
    4. Now give some name and Click BROWSE to select ur project and then click APPLY and DEBUG
    Or if u use 2004s, then u can do the settings in Portal itself...which gives u more clear information...  follow the link
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d0cb32c5-36a7-2910-2c9b-ba4a5bbdbb56">WebDynpro Java Debug Configurator</a>
    Hope it helps...
    Regards / Guru

  • Error when compiling code for crio 9068 using LV 2014 SP1

    I have a project that was mostly developed in LV 2013 SP1.  I recently upgraded to LV 2014 SP1, and I can no longer compile the FPGA VI.  At first, I received an error stating that the Xilinx Vivado 2013.4 compilation tool was not installed.  I found this tool on your site, downloaded it, and installed it on my computer.  When I try to compile now, the compilation advances to a certain point, seems to hang there for a while, and then returns an error stating that toplevel_gen_propImpl.xds cannot be accessed "because it is being used by another process."  I have repeated this exact same scenario on both by desktop and my laptop.  I've attached a PDF of the error I windows I have received.
    Attachments:
    compile_error.pdf ‏114 KB

    Hi scg,
    I took a look at your file and researched a little bit about your issue, I have not been so lucky with the research since most of the doceuments are related to previous versions of the software, nevertheless it is also what makes me think that the file might be corrupted or some issue related to it so and I have found some tests that you could try:
    1. Create a new FPGA file with your code on it and compile it again.
    2. Turn off the firewall and compile again 
    3. Restart the compiler Services
    Hope you might find this information helpful!
    Regards,
    S.Jimenez

  • Error in Session ID for Web application

    Hi,
    I have a question about the Error Message "Error in Session Id".
    This error shows up in the browser window when I try to run a
    form on the Web. I have checked the web server name and port in
    the html files, but everything seems to be correct. I can
    connect to the database as well. So I don4t know what this error
    reflect!
    Any suggestions are welcomed!

    hi,
    i am getting the same problem as i had made changes and put it like
    IE50=native
    so with that the same error i am getting
    but for IE50=JInitiator
    i got my application working but
    i want my application not to use JInitiator. so, IE50=native is must in the file formsweb.cfg
    if u get any help abt running forms 6i without Jinitiator plz reply
    waiting for reply.
    Ravi Suthar
    Jyoti Ltd.
    India.

Maybe you are looking for

  • How to call a business graphics from a SAPGUI program?

    Dear experts, I'm new to WebDynpro for ABAP. I was able to create a working WebDynpro application that shows a simple bar-chart. Nice. What I would like to realize is a bar chart as a pop-up when I click a button on an ALV table element. This ALV tab

  • I need to buy some new hard drives for my Mac Pro

    I had an extra internal hard drive in my Mac Pro, a Seagate one, that suddenly stopped working and I needed to send it to a data recovery company, so... Now I'd like to - Install a new internal HD - Install a NAS with two/three disks. (Hitachi if pos

  • Why does the password of Apple Id not paste from the clipboard at the Ipad?

    Why does the password of apple id not paste from the clipboad at The ipad 2 ?

  • GUI status problem

    Hi, I have two screens 1000 & 2000. I have given execute button ('STRT') in screen 1000. Once exectued, it is going to screen 2000. When iam coming back to 2000 to 1000 & execute again(in 1000 screen)...it is not working(not going to screen 2000).Tha

  • NEED TO MAKE STANDBY DATABASE

    Hello Experts, We are making an standby database. Our version of oracle : ORACLE 10 G 10.2 OS : WINDOWS 2003 SERVER. We are making export weekly 3 times from the production database. To ensure the avilabiliy , We are making a standy by database with