Upgraded Flex app from SDK 3.0 to 4.5, QuickTest (QTP) 11 no longer identify columns in FlexDataGrid

Using:
QuickTest Professional 11.0
Adobe's Flex Automation Plug-in for QuickTest Professional 4.5
IE 9.0
Windows 7
Flex Application was using Flex SDK 3.0
Flex Application now using Flex SDK 4.5
We were testing a Flex application that was compiled using Flex SDK 3.0. When QTP spied on the column header contained in a FlexDataGrid, the column header was identified as a FlexListLabel object and the automationname property contained a string made up of the column names.
Example: automationname="[Exception Date] | [*Securities*]"
where 'Exception Date' and 'Securities' are the column names in the grid.
FLEX SDK 3.0:
We have another build of the same Flex application, in our test environment, that is using SDK 4.5.
In this build, the automationname of the column header no longer contains the column names, instead it contains the data in the first row of the grid. I have made sure, that I am spying on a column name.
FLEX SDK 4.5:
No changes were made to the code of the Flex application, we only moved from SDK 3 to SDK 4.5
We have custom functions that verify and input data into FlexDataGrids based on the columns. These functions made use of the fact that column names were contained in the automationname property of the first FlexListLabel within the FlexDataGrid.
Sample QTP Script Used in Function:
'Retrieve column headers
ColHeaders = objGrid.FlexListLabel("micclass:=FlexListLabel", "index:=0").GetROProperty ("automationname")
arryColNames = Split(ColHeaders, "|")
Has anyone else come across this issue?  Any suggestions on what to try on the QTP side or on our Develeoper's side to allow for the column header to be identified again by QTP?

Hi,
I got a similar Error and I realy don't know how to solve it...
Here is my error:
ReferenceError: Error #1065: Variable _class_embed_css_assets_CalendarIcon_png_1299410737_2127374076 ist nicht definiert.
at flash.display::MovieClip/nextFrame()
at mx.core::FlexModuleFactory/deferredNextFrame()[E:\dev\4.5.1\frameworks\projects\framework \src\mx\core\FlexModuleFactory.as:730]
at mx.core::FlexModuleFactory/update()[E:\dev\4.5.1\frameworks\projects\framework\src\mx\cor e\FlexModuleFactory.as:503]
at mx.core::FlexModuleFactory/moduleCompleteHandler()[E:\dev\4.5.1\frameworks\projects\frame work\src\mx\core\FlexModuleFactory.as:828]
This error appears if I start my applikation and navigate to a certain module. I think this error appears since I swaped to flex 4.
I realy don't know if this is a maven / pom - error or just a .css error, because it's a flex style...
Someone have a idea?

Similar Messages

  • How to call Flex app from Javascript in portal question

    I've setup my flex 4 app with a callback function. The flex app is embedded in a Java portlet on a WebLogic Portal 10.3.2. How can I call the Flex app from the portlets javascript function? Code below shows how the flex app is embedded in the wrapper jsp.
    <script language="JavaScript" type="text/javascript">
            AC_FL_RunContent(
                        "src", "<%= srcPath %>",
                        "id", "<%= (String)request.getAttribute("portlet_name") %>",
                        "name", "<%= (String)request.getAttribute("portlet_name") %>", 
                        "width", "<%= request.getAttribute("width") %>",
                        "height", "<%= request.getAttribute("height") %>",
                        "align", "middle",
                        "quality", "high",
                        "FlashVars", "PORTLET_WS=<%= request.getAttribute("window_state")%><%= wsrpEncodedChannel %>",
                        "allowScriptAccess","sameDomain",
                        "type", "application/x-shockwave-flash",
                        "pluginspage", "http://www.adobe.com/go/getflashplayer");         
    </script>

    Thanks for the response. I followed the instructions in the link, but it does not appear to work within a Weblogic 10.3.2 portal. My Flex app is wrapped in a Java JSR 286 portlet. Should this approach work or is there a different approach for the portlets wrapper JavaScript to call a Flex callback function?
    thanks
    Dan

  • Upgrading Oracle Apps from 10.6 to 11i

    Hi all,
    Could you please help me to find out the docmentation for upgrading Oracle Apps from 10.6 to 11i.
    Thanks
    Leo.

    Did you ever get a response?
    Please email me at [email protected]
    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by Leorajan:
    Hi all,
    Could you please help me to find out the docmentation for upgrading Oracle Apps from 10.6 to 11i.
    Thanks
    Leo.<HR></BLOCKQUOTE>
    null

  • I have upgraded all apps from CS5 to CC - but keep getting U43M1D207 error when trying to upgrade Illustrator. Tried twice. Help!

    I have upgraded all apps from CS5 to CC - but keep getting U43M1D207 error when trying to upgrade Illustrator. Tried twice. Help!

    You can also use Download New Adobe CC Trials: Direct Links (no Assistant/Manager) | ProDesignTools
    Direct Download Links for Adobe Software
    Are you on a managed network. If yes please refer the Knowledge base article: http://helpx.adobe.com/creative-cloud/help/cc-desktop-download-error.html.
    You may even try the direct download: http://prodesigntools.com/adobe-cc-direct-download-links.html.
    Kindly follow the very important instructions before download.
    It might help you.
    Regards
    Rajshree

  • How to migrate a flex app from Flex Builder 3 to Flash Builder 4.7

    Hello,
    I have written an extensive application using Flex Builder 3. I have maintained the app for several years using FB3. In the mean time I have created several mobile apps using Flash Builder 4.7. So I am very familiar with the the new framework. However, my client has requested some big changes to the app. I figured this would be a great opportunity to migrate the app to FB4.7. I would like to keep the mx structure for the time being. So, are there any good documents concerning this migration path? What SDK should I use. Should I start using the Apache Flex SDK?
    Thanks,
    --randu

    Hello Raja,
    Thanks. Your reply has been very helpful.
    For deploying the Flex app, as a web on NW 04S, I did the following:
    - Created a web project and included the following files as web-content. These files were created using the Flex builder or in the Flex development perspective of NWDI - CE, you can find them in the "bin" folder of your Flex project.
       - AC_OETags.js
       - your-app.html
       - your-app.swf
       - history.htm
       - history.js
       - history.swf
       - playerProductInstall.swf
       - crossdomain.xml - This file is important, if our Flex app wants data from the server.
        ( I made the simplest possible crossdomain.xml containing
           <allow-access-from domain="*" secure = "false"/>
      -  Declare "your-app.htm" as the welcome file in web.xml
      -  Package, this .war after building this web project in an Enterprise application project and build it.
      Now, you have the .ear made, which is deployable on your NW Web AS.
    Apart from this, another thing which is important to be included in your Flex mxml code is the following:
    ( Thanks to Abesh for this........ )
    - You have to tell the Flex app, in the action script, as to from where should the Flash engine pick the crossdomain.xml ( in case you are accessing the server for data from your app)
    You might have noticed, we packaged the crossdomain.xml along with our other web content in the .war.
    So mention, something like this in your action script.
    Security.loadPolicyFile("http://<hostname>:<http-port>/<context-root fo your web app>/crossdomain.xml");
    The code will work like a charm.
    Hope this helps everyone.
    Thanks guys.
    Best Regards, Gagan.

  • I cannot download or upgrade any apps from AppStore on my iphone 4 after upgrading to ios 5.1.1

    I upgraded my iphone 4 to ios 5.1.1 using itunes.
    After which I started using my phone as usual.
    I was not able to upgrade or download apps from AppStore using wi-fi or 3G.
    When I select any app for upgradation or downloading it starts, But It stops at 'waiting' stage , And never goes to 'loading' stage.
    Please help resolve this issue.
    Thanks!

    Have you tried buying or upgrading on your mac or pc via itunes?  You may have bad wifi/3G connections.  And, for 3G, most carriers place a file size limit on tranmissions.  I think that affects app downloads, if they're big.

  • Calling a function in a flex app from a loaded SWF

    How can I call a function in a flex application from a loaded
    swf file?

    Two ways:
    Application.application returns a reference to the top-level
    application scope. You can access any public member, var, function,
    component, etc through that reference.
    Dispatch an event event form the loaded swf and use a event
    handler in the main app. All the gurus advise this as best
    practice, to ensure "loose coupling" It is also pretty easy,
    especially if you use a bubbling event.
    Tracy

  • Anyone having issues upgrading RFC apps from ECC 5.0 to ECC 6.0 ?

    We are having issues upgrading our simple RFC app from ECC 5 to ECC 6.
    we are using the librfc32u.dll ( 710_Rel) to make a simple call to return MARD table entries.
    Runs great in our 5.0 system.
    When we run against our 6.0 environment with the same dll, we get garbage back in the table results... (escape characters ).
    We have tried downloading the latest 7.0 librffc*  ( standard an u ) . We recompiled to embrace both unicode and non-unicode.  ( fyi our 6.0 environment is unicode ) .  All attempts have failed to date.
    Has anyone else experienced issues trying to upgrade their rfc applications?

    david, were you able to fix this issue? i have a similar issue. we are upgrading from 4.6c to ecc 6.0. we use a c# program that connects thru sap connector for .net v2.0. it calls a rfc function module, it connects and passes some data, but not all data to the rfc.
    any help would be appreciated.
    thanks.

  • Port flex app from tomcat to oracle oas

    any direction given will be appreciated. i have a flex 3 app up and running on my localhost. i'm using a local install of tomcat(6.0.18) and i'm also using blazeds(3.2.0.3978). this combined java/flex app is using remote objects connecting to a back end oracle db on a diff host. as i mentioned... this app runs fine on my local tomcat server. i'm looking for docs or direction to port this over to an oracle app server(10.1.3.4). i have exported my project as a war file... deployed it error free on my OAS 10.1..3.4 server. the app loads but fails to do any remoting with [RPC Fault faultString="Send failed" faultCode="Client.Error.MessageSend" faultDetail="Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: Status 404: url: 'http:/*****/messagebroker/amf'"]. i'm not sure if there are config changes i need to make before export or after deployment on oracle app server.
    thanks
    -doug-

    All jars are inside war so no need to conf, look inside oracle all server logs for error 
    -- Sent from my Palm Pre
    On Apr 5, 2010 4:18 PM, msdawgs &lt;[email protected]&gt; wrote:
    thanks for the reply...
    url returns...404 Not FoundServlet error: An exception occurred. The current application deployment descriptors do not allow for including it in this response. Please consult the application log for details.
    let me take a step back... i have not done any initial config of this oracle app server for this particular application. do i need to get blazeds.jar and ojdbc14.jar over there first? then deploy?
    thanks
    -doug-

  • Upgraded HFM apps from 9.3.1 to 9.3.3 and now I cannot open the app.

    I've upgraded 9.3.1 to 9.3.3 and when opening upgraded app (both from Workspace and thick client) I'm getting following error message:
    'An unexpected database error occurred. Check event log for details. (-2147220900)
    Looking at the HsvEventLog:
    <?xml version="1.0" ?>
    <EStr>
    <Ref>{98CDC197-A9C9-4730-A4CB-2A5A7BE721CB}</Ref>
    <User>ORA-14457: disallowed VARRAY and Nested Table column in a Temporary table</User>
    <DBUpdate>13232944</DBUpdate>
    <ESec>
    <Num HEX=0x80040E14>-2147217900</Num>
    <Description Src=ADO>One or more errors occurred during processing of command.</Description>
    <Type>1</Type>
    <DTime>20/10/2010 6:22:03 PM</DTime>
    <Svr>ADELN195</Svr>
    <File>CHsvDSICM.cpp</File>
    <Line>6789</Line>
    <Ver>9.3.3.0.2853</Ver>
    <DStr>CREATE GLOBAL TEMPORARY TABLE TEMP_VARRAY_TABLE (DIMID NUMBER, DIMARRAY TYPE_NUMVARRAY) ON COMMIT PRESERVE ROWS</DStr>
    <ExErr></ExErr>
    </ESec>
    </EStr>
    Has anyone seen this issue before?
    Database is: Oracle 9.2.0.8 (validated with support matrix as a supported version)
    Cheers,
    Edited by: user8640150 on 20/10/2010 15:42

    This issue is now resolved and I would like to share with others.
    This issue occurs when HFM application is upgraded to 9.3.3 on Oracle 9i database. There is a patch 9.3.3.0.03 to resolved the issue.
    Cheers, Louis

  • While upgrade the Apps from the appstore it shows upgrade for another apple id?

    While I saw apps update I tried to update it but it says "the update is for another apple id"
    I use mountain lion in my macbook pro 13" and it's genuine means I bought it from the appstore under my apple id. It's not a crack version.
    can anybody help me about it.
    Every software I can upgrade except imovie and iphotos.
    thanks in advance

    Sorry for late reply, but I had no internet last few days. Anyway, first of all thank you for reply. As your questions reply the Macbook I bought is second hand.
    another stranger's apple id appear only for updating iphoto and imovie, nothing else. (when I bought the Macbook it had OS Lion but I installed OS Mountain lion and which I bought through my Apple id, I bought that Mountain Lion for my iMac though.)
    But I didn't register my ilife apps anywhere what you mentioned. Should I have to do it? if I have to then how?
    your mentioned app i life do not show up in my purchases. (But if I search for imovie or iphoto in my purchase list it shows installed)
    when you get time please answer me.

  • I have updated to windows 8.1 from windows 8.  My ipod nano (6th gen) is no longer identified properly in itunes.  I have tried all steps in the troubleshooting guide but it has not resolved the issue.  What can I do?

    My ipod nano (6th gen) is no longer identied properly in itunes.  I have followed all steps in the troubleshooting guide (uninstall and reinstall itunes several times, Apple Mobile Device running ok, verified USB port runs) but the issue is still not resolved.  What can I do?

    Universal Serial Bus controllers
         Intel(R) ICH9 Family USB Universal Host Controller - 2934
         Intel(R) ICH9 Family USB Universal Host Controller - 2935
         Intel(R) ICH9 Family USB Universal Host Controller - 2936
         Intel(R) ICH9 Family USB Universal Host Controller - 2937
         Intel(R) ICH9 Family USB Universal Host Controller - 2938
         Intel(R) ICH9 Family USB Universal Host Controller - 2939
         Intel(R) ICH9 Family USB Universal Host Controller - 293A
         Intel(R) ICH9 Family USB Universal Host Controller - 293C
         USB Composite Device
         USB Root Hub
         USB Root Hub
         USB Root Hub
         USB Root Hub
         USB Root Hub
         USB Root Hub
         USB Root Hub
         USB Root Hub
    I'm not sure if it charged when I hooked it up to my roommate's computer, but it definately didn't register either. If I put it on the dock it plays so the port is fine, but that still doesn't help me sync it to my computer.

  • Error in custom apps when upgrading Oracle Apps to 11.5.10

    Hi,
    We're upgrading Oracle Apps from 11.5.5 to 11.5.10. We have a custom application that's registered in Oracle Applications and the modules that I've tried to run so far all produce this error:
    FRM-47023: No such parameter named G_QUERY_FIND exists in form <form_name>.
    When I press OK:
    FRM-40105: Unable to resolve reference to item PARAMETER.G_QUERY_FIND.
    When I press OK:
    FRM-40039: Cannot attach library fis_libs while opening from <form_name>.
    I've recompiled the library and the form but I'm still getting these errors.
    Any help would be appreciated.
    Thanks,
    Lorena

    Hi,
    We were able to resolve this by putting the library in the $AU_TOP/resource directory. It was previously residing in a custom directory.
    Thanks,
    Lorena

  • Problem porting app from FMS2 to FMS3

    Hi all,
    I've been trying to port a flex app from FMS2 to FMS3 and I'm
    having a huge issue. It is a video conferencing app and it works
    just fine in FMS2, but once in FMS3, whenever more than 3 people
    try to login, I get a "NetStream.Publish.BadName" error. The stream
    names are definitely different. That said, when I open up FMS3, I
    see a whole bunch of "extra" streams with garbage names, that are
    clients of the streams I created. I believe these garbage names
    start to conflict after the third user. What do I do to fix this?
    While I can't post code due to company policy, this sample on
    the web also exhibits the same issues, and does the connections
    very similar to me.
    http://www.mydattoli.com/test/DCCVideoConference/main.html#
    Also, I am using Flex 3, with AMF3 turned on. If someone
    could point me in the right direction, it would be greatly
    appreciated.
    Thanks,
    Jason

    Hi,
    thanks for your reply. I have another query. Think there are some problems with backward compatibility issues with JDK. I mean code running in JDK 1.2 don't run in JDK 1.4. Also JRUN4 has some problems running with JDK 1.4 and when downgraded to JDK 1.3, it works. Is TOMCAT server compatible with all versions of JDK, so that if JRUN is replaced with TOMACAT and IIS, the application wud run fine with all versions of JDK? Thanks in advance. Please reply.. This is an urgent requirement for me.

  • Design Mode Preloading alert when upgrading from SDK 3.6 to 4.5.1

    I am getting an alert in Flash Builder while I am in the process of upgrading my application from 3.6 to 4.5.1.  The alert is titled "Design Mode Preloading" and includes the following text:
    "Preparing the design mode for this MXML is taking longer than usual, likely due to the complexity of the layout..."  Then I am asked whether I want to continue the preloading.
    I did not get this alert in the same Flash Builder instance when building my application with SDK 3.6.  As such, I am uncertain if this issue is a product of Flash Builder or the SDK.
    Has anyone faced this same issue?  If so, were you able to resolve it, and how?
    Thanks as always!
    Lee
    **Origininally posted in FlashBuilder AForum**

    I continue to get this error.  Could an employee please comment?
    My application is data-centric and contains over 100 DataGrids.  I do not know if this matters.  In Flex 3.6 this error does not occur.  Only once the app is converted to 4.5.1.
    Thanks,
    Lee

Maybe you are looking for