Flex 3 FB4 Migration Tip

Thanks to the help of several Adobe members I was able to successfully import a styled (.css) Flex 3 project into Flash Builder 4 and have it retain its aesthetic and functional attributes. I wanted to take a moment and share what I found with everyone, in case you may find yourself confronted with the same issues.
1.First, to bring in my Flex 3 project to Flash Builder 4 I needed to add a single line in my .css file:
@namespace "library://ns.adobe.com/flex/halo";
2. Next I had to add an Additional Compiler Argument. (Properties > Flex Compiler > Additional compiler arguments):
-theme=${flexlib}/themes/Halo/halo.swc
Basically there were a number of aesthetic breaks due to FB 4 (and newer SDKs) using the Spark component set. To ensure you Flex 3 application looks the same with the .css style, you'll need to specify that the application uses the Halo theme as the foundation.
I'm including a photo showing several aesthetic issues I had under Flash Builder 4 and the newer SDKs prior to this solution.
All of these have been fixed. Thanks again to all those at Adobe for the great support.
Jason Villmer
www.lucid.it
[email protected]

Glenn,
There is always the lure to immediately embrace the newest 
technologies. I'd been considerably eager to see what Flash Builder 
had to offer and it does, indeed, provide a broader landscape of 
possibilities. After everything has been said and done I believe the 
Flash Builder team should consider a Migration Assistant to help 
transition Flex 3 projects to the Flash Builder 4 code architecture. 
Upon importing a Flex 3 project the user could be asked if they would 
like to formally convert the entire codebase into a native FB 4 
project. It would then go through the document, possibly stopping 
occasionally asking for approval to do something, and update all 
relevant code so it becomes a true FB4 app. There could also be a list 
provided after this conversion that specifically outlines all changes 
made.
I've been working in Flex for a number of months now. Prior to this I 
was using the Flash IDE. Upon exploring Flex, the advantages were 
clear and substantial. Flex is absolutely outstanding for both 
designers and developers in my opinion. The issue, however, is that 
Flex users should be, above all, anxious to migrate to Flash Builder 
4, not worried. If a Flex 3 developer has finished a huge project 
(like you and I apparently) in Flex 3 we shouldn't have to go through 
all of our code trying to figure out what needs to be changed. There 
should be something that helps developers do that automatically.
Technology is relentlessly changing. Monthly, weekly, daily even. 
That's great but for something like Flex, new versions shouldn't have 
developers searching everywhere trying to find patchwork solutions.
The folks over at the Flash Builder 4 team have been great assisting 
both myself and the multitude of other users with their issues, so I'm 
pretty confident things will unfold well.
Jason Villmer
www.lucid.it
[email protected]

Similar Messages

  • Migration Tip - File Loading Issues solved by Disk Permission Repair

    Had a huge problem with Excel files after migrating old iMac to new iMac via migration assistant using time machine backup of old iMac (external drive). After migration, old excel version did not work but we had alread purchased a new 2011 home version.  Installed Excel 2011 after migrating and none of the Excel files would load on new iMac, from either machine - a pop up message said it could be a bunch of things, read only, etc...  Numbers would access the Excel files, and could export to xls file type, but still the Excel file would not load in Excel.
    From a thread suggestion, I ran the Disk Utility First Aid tab Verify Disk Permissions - holy cow, must have been two gazillion permission issues on a brand new machine - selected Repair Disk Permissions once the Verify list came up, and voila, all good on the Excel files now - they load fine.
    (I assume that some of you actually know what happens and can explain it - something maybe about "cloning" the account from the Time Machine backup of my old iMac and not using a new account on the new machine, or something.  Whatever, it seems that a new disk should not have two gazillion permission errors and that my migration from the Time Machine backup created them, and Disk Utility fixed them - all except two permissions that did not fix properly: itunes..../iPodUpdater and usr/lib/ruby - I assume those must be managed manually somehow if Disk Utility will not repair.)

    Nice tip/report thanks!
    Likely a different User UID owned those files, first user generally gets 501, second gets 502, etc., so as a rule, only one of them would have rights to the files.

  • Flex 3 to Flex 4 migration issue (Flex charting and Special char)

    Hi All,
    I have migrated Flex 3 to Flex 4 and in Flex charting axis label, I am not able to see less then sign ( < ). I tried to use &lt;  but it's not working, I have attached sample code.
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                    xmlns:s="library://ns.adobe.com/flex/spark"
                    xmlns:mx="library://ns.adobe.com/flex/mx"
                    minWidth="955" minHeight="600" initialize="init()">
         <fx:Declarations>
             <s:SolidColor id="s1" color="#738994"/>
             <mx:SeriesInterpolate id="seriesInterpolate" duration="800"/>
             <mx:SeriesSlide id="seriesSlide" duration="800" direction="up"/>
             <mx:SeriesZoom id="seriesZoom"
                            duration="1000"
                            minimumElementDuration="50"
                            elementOffset="50"
                            verticalFocus="top"
                            horizontalFocus="left"
                            relativeTo="chart"/>
         </fx:Declarations>
         <fx:Script>
            <![CDATA[
                 import mx.collections.ArrayCollection;
                 [Bindable]
                 public var student:ArrayCollection = new ArrayCollection([
                     {Stream: "Management", Girls:1000, Boys:1400, TotalStudent:2400},
                     {Stream: "&lt;Computer Science", Girls:800, Boys:1200, TotalStudent:2000},
                     {Stream: "< Mechanical", Girls:200, Boys:1500, TotalStudent:1700},
                     {Stream: "> Electical", Girls:800, Boys:850, TotalStudent:1650},
                     {Stream: "Electronics", Girls:500, Boys:1000, TotalStudent:1500},
                     {Stream: "Civil", Girls:300, Boys:900, TotalStudent:1200}
                 private function update():void {
                     var str:String = catfDP.selectedItem.data;
                     if(str == "Girls"){
                         cs1.yField = str;
                         cs1.displayName = str;
                         cs1.setStyle("fill" , "738994");
                     }else if(str == "Boys"){
                         cs1.yField = str;
                         cs1.displayName = str;
                         cs1.setStyle("fill" , "999990");
                     }else{
                         cs1.yField = str;
                         cs1.displayName = str;
                         cs1.setStyle("fill" , "406374");
                 private function init():void{
                     catfDP.selectedIndex= 0;
                     effectDP.selectedIndex= 0;
             ]]>
         </fx:Script>
         <s:Panel title="Chart Effect Example" width="627" height="565">
             <s:layout>
                 <s:VerticalLayout/>
             </s:layout>
             <mx:ApplicationControlBar dock="true" width="625" height="82">
                 <mx:Form>
                     <mx:FormItem label="Category Field:">
                         <s:DropDownList id="catfDP" change="update();" prompt="--Select--" width="136"
                                         height="19">
                             <s:dataProvider>
                                 <mx:ArrayList>
                                     <fx:Object data="Girls" label="Girls" />
                                     <fx:Object data="Boys" label="Boys" />
                                     <fx:Object data="TotalStudent" label="TotalStudent" />
                                 </mx:ArrayList>
                             </s:dataProvider>
                         </s:DropDownList>
                     </mx:FormItem>
                     <mx:FormItem label="Choose Chart Effect:">
                         <s:DropDownList id="effectDP" change="update();" width="136" prompt="--Select--">
                             <s:dataProvider>
                                 <mx:ArrayList>
                                     <fx:Object label="seriesInterpolate" data="{seriesInterpolate}" />
                                     <fx:Object label="seriesSlide" data="{seriesSlide}" />
                                     <fx:Object label="seriesZoom" data="{seriesZoom}" />
                                 </mx:ArrayList>
                             </s:dataProvider>
                         </s:DropDownList>
                     </mx:FormItem>
                 </mx:Form>
             </mx:ApplicationControlBar>
             <mx:ColumnChart id="cchart"
                             dataProvider="{student}"
                             showDataTips="true"
                             width="621"
                             fontFamily="verdana" height="402">
                 <mx:verticalAxis>
                     <mx:LinearAxis title="Number of Students" />
                 </mx:verticalAxis>
                 <mx:horizontalAxis>
                     <mx:CategoryAxis dataProvider="{student}"
                                      categoryField="Stream"
                                      title="Stream"/>
                 </mx:horizontalAxis>
                 <mx:series>
                     <mx:ColumnSeries id="cs1"
                                      xField="Stream"
                                      yField="Girls"
                                      displayName="Girls"
                                      fill="{s1}"
                                      showDataEffect="{effectDP.selectedItem.data}"/>
                 </mx:series>
             </mx:ColumnChart>
             <s:HGroup>
                 <mx:Legend dataProvider="{cchart}"
                            direction="horizontal"/>
                 <s:VGroup>
                 </s:VGroup>
             </s:HGroup>
         </s:Panel>
    </s:Application>

    Thank you very much for you answer.
    I have solved this problem using Itemrenderer.
    <?xml version="1.0" encoding="utf-8"?>
    <s:ItemRenderer xmlns:fx="http://ns.adobe.com/mxml/2009"
                    xmlns:s="library://ns.adobe.com/flex/spark"
                    xmlns:mx="library://ns.adobe.com/flex/mx"
                    autoDrawBackground="true">
        <mx:Label htmlText="{data.text}"/>
    </s:ItemRenderer>
    and in chart I have used labelRenderer. in label I have used  &lt; for ( < ) sign.
    <mx:horizontalAxis>
                    <mx:CategoryAxis
                        dataProvider="{expenses}"
                        categoryField="Month"
                        title="FY 2006"
                        id="a1"
                        />
                </mx:horizontalAxis>
                <mx:horizontalAxisRenderers>
                    <mx:AxisRenderer labelRotation="45" axis="{a1}" labelRenderer="chase.BarChartLabelRenderer"/>
                </mx:horizontalAxisRenderers>
                <mx:verticalAxisRenderers>
                    <mx:AxisRenderer labelRotation="45" axis="{a1}" labelRenderer="chase.BarChartLabelRenderer"/>
                </mx:verticalAxisRenderers>

  • Flex 4 Migration: skinning, and Actionscript

    Hello,
    I've been researching about this topic, but I wasn't able to find any  examples on "how to skin in flex4" using actionscript. I'm trying to  make a simple test, just load an image inside a container and set the  borderSides properties. This property, and many others, are missing from  flex 4 "by default", now I have to create/define a skin and code it  using Line graphics components, is that correct?
    anyways, my "real" (probably not the smartest but...) I've been struggling around  this problem for a couple days:
       - How do I migrate from Flex 3 (css styles and other stuff) to Flex 4 (skins), BUT I don't want to use mxml files, I'd like to keep everything written in actionscript in my application. It has to be feasible but I couldn't figure out how.
    Thanks in advance
    Renan

    Thanks for the help, we managed to do a skin in actionscript.
    Can you help me with two other issues, I'm still not comfortable with this Flex4 transition:
    Is it possible to load/add an image to a group from the container (in actionscritpt), or you can only do that using skins?
    Can I inherit skins like other classes? For instance: I have a skin to draw borders and another to draw an image, can I extend it to "merge" these two behaviors, border+image.
    Thanks
    renan

  • Flex 4 migration: how to resolve css warnings

    Hi,
    we are trying to migrate a our flex app to flex 4, and while compiling the app, we are seeing a lot of the following warnings. I was wondering how to resolve these warnings. We are not using flex 3 compatibility flag but are using Halo as the default theme via the compiler argument -theme=${flexlib}/themes/Halo/halo.swc.
    It seems that the warnings are coming from css packaged in datavisualization.swc and halo.swc
    Thanks in advance
         [java] C:\svn-work\flex4p3\ui\lib\flex\frameworks\libs\datavisualization.swc$defaults.css(22): Warning: Cannot resolve namespace qualified type 'AdvancedDataGrid' in
    CSS selector 'AdvancedDataGrid'
         [java]
         [java]
         [java]
         [java] C:\svn-work\flex4p3\ui\lib\flex\frameworks\libs\datavisualization.swc$defaults.css(56): Warning: Cannot resolve namespace qualified type 'AdvancedDataGridItem
    Renderer' in CSS selector 'AdvancedDataGridItemRenderer'
         [java]
         [java]
         [java]
         [java] C:\svn-work\flex4p3\ui\lib\flex\frameworks\libs\datavisualization.swc$defaults.css(66): Warning: Cannot resolve namespace qualified type 'AdvancedDataGridSort
    ItemRenderer' in CSS selector 'AdvancedDataGridSortItemRenderer'
         [java]
         [java]
         [java]
         [java] C:\svn-work\flex4p3\ui\lib\flex\frameworks\libs\datavisualization.swc$defaults.css(83): Warning: Cannot resolve namespace qualified type 'AdvancedDataGridHead
    erRenderer' in CSS selector 'AdvancedDataGridHeaderRenderer'
         [java]
         [java]
         [java]
         [java] C:\svn-work\flex4p3\ui\lib\flex\frameworks\libs\datavisualization.swc$defaults.css(115): Warning: Cannot resolve namespace qualified type 'AdvancedListBase' i
    n CSS selector 'AdvancedListBase'
         [java]
         [java]
         [java]
         [java] C:\svn-work\flex4p3\ui\lib\flex\frameworks\libs\datavisualization.swc$defaults.css(131): Warning: Cannot resolve namespace qualified type 'LegendItem' in CSS
    selector 'LegendItem'
         [java]
         [java]
         [java]
         [java] C:\svn-work\flex4p3\ui\lib\flex\frameworks\libs\datavisualization.swc$defaults.css(144): Warning: Cannot resolve namespace qualified type 'PrintAdvancedDataGr
    id' in CSS selector 'PrintAdvancedDataGrid'
         [java]
         [java]
         [java]
         [java] C:\svn-work\flex4p3\ui\lib\flex\frameworks\libs\datavisualization.swc$defaults.css(164): Warning: Cannot resolve namespace qualified type 'PrintOLAPDataGrid'
    in CSS selector 'PrintOLAPDataGrid'
         [java]
         [java]
         [java]
         [java] C:\svn-work\flex4p3\ui\lib\flex\frameworks\themes\Halo\halo.swc$defaults.css(911): Warning: Cannot resolve namespace qualified type 'HTML' in CSS selector 'HT
    ML'
         [java]
         [java]
         [java]
         [java] C:\svn-work\flex4p3\ui\lib\flex\frameworks\themes\Halo\halo.swc$defaults.css(1797): Warning: Cannot resolve namespace qualified type 'Window' in CSS selector
    'Window'
         [java]
         [java]
         [java]
         [java] C:\svn-work\flex4p3\ui\lib\flex\frameworks\themes\Halo\halo.swc$defaults.css(1808): Warning: Cannot resolve namespace qualified type 'WindowedApplication' in
    CSS selector 'WindowedApplication'

    I just saw that we are using xmlns:mx="http://www.adobe.com/2006/mxml" in all our custom components written in mxml, including our main application.
    In our custom css, I have the default namespace set to:
    @namespace "library://ns.adobe.com/flex/mx";
    could this result in these warnings ?

  • Flex 4 migration issue

    Hello,
    I am trying to migrate a project that was using Flex 3.2 to Flex 4.1, but I am getting the following error:
    Description : 1046: Type was not found or was not a compile-time constant: [mx.core]::IDeferredContentOwner.
    Line : -1.
    Please help

    I figured it out. It seems that when changing the sdk used in the project properties, not all the necessary libraries were imported, thus generating this error.
    After manually loading all libraries, the project compiles just fine.
    I mention that my IDE is Spring Source with the flex 4 plugin.

  • AppleWorks for the modern day, a migration tip

    Disclaimer: Apple does not necessarily endorse any suggestions, solutions, or third-party software products that may be mentioned in the topic below. Apple encourages you to first seek a solution at Apple Support. The following links are provided as is, with no guarantee of the effectiveness or reliability of the information. Apple does not guarantee that these links will be maintained or functional at any given time. Use the information below at your own discretion.
    Some questions people have about AppleWorks moving to modern Macs are answered here:
    1. Does AppleWorks work on Intel Macs? Yes.
    2. Does AppleWorks work with 10.5.4? Yes.
    3. Does AppleWorks come with Mac OS X retail? No.
    4. How to install AppleWorks if you erase and install Mac OS X? Use the restore CDs that came with your Mac if it is a PowerPC Mac Mini (with 2 USB ports as opposed to 4 in the rear), PowerMac G5, G4, or G3 iMac, eMac, or iBook, following these directions, or using an AppleWorks 6.2.9 retail installer CD. Note the license agreement restrictions on the CD used.
    Also, OS X support was added with AppleWorks 6.2 sometime in late 2001. Most install disks from then & later will install in OS X. For example, the separate AppleWorks installer included with a G3/600 Late 2001 iBook has an OS X-aware installer for AppleWorks 6.2 with an updater to 6.2.2.
    5. If I have Appleworks 6.0 through 6.2.7, how do I make it work with Mac OS X? Run the 6.2.9 updater. For some versions of Mac OS X, the recent items folder in your Users -> Documents -> AppleWorks data needs to be emptied to avoid unexpected quits.
    Note AppleWorks 6.2.4, 6.2.7 & 6.2.9 all work & are stable in OS X. Some recommend not using 6.2.7 as it was very buggy. But if you need to open any ClarisWorks 4 or earlier files, you need to use 6.2.4 or 6.2.7. AppleWorks 6.2.9 returns an I/O error with about half of those files.
    6. Are there Intel Mac native software titles that I can substitute for AppleWorks?
    iWork '08 - takes care of spreadsheet, presentation, and word processing functionality.
    EazyDraw - is able to replace drawing functionaity without some table features found in Appleworks Draw. Ask Eazydraw's author if you think such an object may not be able to be read.
    Color It, MacGimp, and GraphicConverter are all popular alternatives for Paint functionality.
    A database exported as tab-delimited text can be imported to Filemaker Bento or numerous other database programs. You may also want to check out Filemaker Pro.
    Do you want to provide feedback on this User Contributed Tip or contribute your own? If you have achieved Level 2 status, visit the User Tips Library Contributions forum for more information.

    I would suggest pointing to the Thread ID instead: http://discussions.apple.com/thread.jspa?threadID=122016
    Agreed.
    6. I couldn't get to the MacGimp site, even doing a Google search for it and trying both http://www.macgimp.org/ and http://www.macgimp.com/.
    It appears to have moved to:
    http://www.gimp.org/macintosh/
    Thanks for the suggestion about Bento. I just was hoping to skip a few steps to someplace that had helpful instructions about migrating between the two.

  • Flex 3 Migration Problems

    Hi -
    We are having significant problems after migrating between
    Beta 3 and the GA release. Differences in the accordion component,
    comboboxes, spacing, control focus, etc. Has anyone else had these
    problems?
    Is there a list of the things that changed between Beta 3 and
    the final release?
    HELP!!
    Thanks,
    Seth

    This application is somewhat unusual in that we dynamically
    create components in accordance with a user defined XML file. We
    switched from BETA 3 Milestone 4 to the new released GA version of
    Flex. The anomolies that we are seeing are in multiple areas. The
    most evident are in the initial creation of widgets. We use an
    Accordion component and programatically introduce child panels with
    textboxes, comboboxes, etc. The comboboxes are tied to
    ArrayCollections dynamically derived from web service calls.
    Everything worked fine in BETA but when we switched, all hell broke
    loose.
    1) The Headers for the 2nd Accordion panel (there are two
    total) is now off the screen
    2) There now appears a vertical scroll bar, where there was
    none in the BETA version
    3) When attempting to select the 2nd panel, via the header,
    it does not open the panel the first time. Disappears from view and
    we have to scroll down to it and click the header again, at which
    time it now selects the 2nd panel appopriately.
    4) There are items in the comboboxes, but when I click tje
    button to expose the dropdown the program starts behaving
    erraticly. It will select another item, but the response becomes
    extremely slow and eventually memory usage goes way up, the fan
    comes on and the screen will eventually lock up
    5) On the comboboxes which I have a typeahead programmed
    (after 3 characters the component automatically calls a web service
    to provide content via a database call). The content comes back,
    but the behavior is different than it was during BETA. It should
    display a dropdown list allowing the user to choose the corect
    content. It now selects the first item in the list and does not
    display the dropdown.
    The behavior that I am seeing is different across the board,
    from BETA to the new release version. It often ends up in some race
    condition where it eats up memory and eventually stops responding
    and needs to be force quit.

  • Flex 4 migration problem

    Hi All,
    I just made the migration to Flex 4 keeping the 3.5 SDK. I didn't change any code and still, when I try to start a debugging session, I get a security sandbox error (2060) which wasn't there before the migration.
    I remember having seen a report on this but I can't find it again.
    Any suggestions?
    Thx,
    Dany

    Hi Greg - There was a bug where the owner property of a SkinnableDataContainer/DataGroup was not getting set correctly, so the overridden itemToLabel() function was never getting called. This was fixed in a build post-Beta, so the example runs properly in the SDK trunk but the bug exists in the public beta builds. You can download a current SDK off the opensource Flex site and use FlashBuilder's multi-SDK feature to code against the newer SDK.
    Hope this helps!
    deepa

  • Re: AppleWorks for the modern day, a migration tip

    Hi a brody,
    Thanks for the tip.
    4. For some reason the link to "these directions" was not working, pointing to http://discussions.apple.com/thread.jspa?messageID=607635&#607635
    I would suggest pointing to the Thread ID instead: http://discussions.apple.com/thread.jspa?threadID=122016
    (note, to convert a Message ID to a Thread ID, click on the little green push pin at the left of the Thread Header, "-O Replies : 0" )
    6. I couldn't get to the MacGimp site, even doing a Google search for it and trying both http://www.macgimp.org/ and http://www.macgimp.com/.
    For the Filemaker Bento link, it might be better to link to the product page rather than a Forum page.
    http://filemaker.com/products/bento/overview.html?nav=products-bento
    Thanks again,
    Nubz

    I would suggest pointing to the Thread ID instead: http://discussions.apple.com/thread.jspa?threadID=122016
    Agreed.
    6. I couldn't get to the MacGimp site, even doing a Google search for it and trying both http://www.macgimp.org/ and http://www.macgimp.com/.
    It appears to have moved to:
    http://www.gimp.org/macintosh/
    Thanks for the suggestion about Bento. I just was hoping to skip a few steps to someplace that had helpful instructions about migrating between the two.

  • Migration Tips

    Hi everyone,
    Does anyone have any tips on migrating Sun Java System Identity Manager files etc? I am trying to define a migration process, detailing what files etc need to be migrated, and any other things that need to be considered in migration, in a step-by-step process. If anyone has any tips from previous experience, I would be interested in knowing.
    Thanks

    two things that immediately come to my mind are
    1) use lh command to export all your objects in to xml and use this to import.
    2) make sure to take back up of all your jsp pages...if you upgrade the changes done to jsps will be lost.
    hope this helps

  • Replacing server that has Opalis 4 - Still available to download or migration tips?

    I am replacing the application server on a legacy application that uses Opalis 4.08 on Windows 2000. We are moving to Windows server 2003 and I was looking for help or resources on how to approach this.
    If I could get a 4.0 installer then staying with 4.0 would be easiest, but if there is an easy migration to version 5 or 6 that could be explored.
    Cheers,
    Niall

    I know this is a very old post, but I am in need of the Opalis 4 installer as well.  I am married to told applications and an old OS, Windows XP.  Any chance you could send me the Opalis 4 installer?
    Thanks, Jim

  • IMac Migration Tip...Keep it simple!

    I just picked up a new 27" iMac......
    So I I had to migrate from my old 21" iMac.....
    I read everything and ordered a Apple Firewire to Thunderbold adapter.....
    Great, huh?
    Forget it.....
    I endeded spending over $100 chasing down cables....
    No good....
    In the end my wife comes in and looks over my shoulder....
    Honey what's a ehernet cable?
    Duh!...
    Used THAT and got the job done....
    Keep it simple !

    Keeping it simple is always a good idea when it comes to computers or troubleshooting but the Thunderbolt to FireWire adaptor should have worked to allow you to boot the old Mac into target disk mode.
    If it didn't it could indicate a problem with the Thunderbolt port on the new iMac or with the adaptor. You should get those looked at as soon as possible.
    Apple has a no questions asked 14 day return policy. If the port on the iMac has a problem, you should exchange the system.
    good luck
    regards

  • Flex 2 to Flex 3 Migration

    While running the application getting an error message send
    failed.(ie) not able to access the java class using the object
    defined in the remote config.

    I'm sorry to hear that you are having problems. A few APIs
    did change from B3 to final, but you should be getting compile
    errors for those. I can assure you that all of the areas you
    mentioned were tested and are working for many folks so if you can
    supply examples of what isnt working we can try to get you back up
    and running.

  • Any migration tips/steps from FMS 4.x to AMS

    Hello,
    I have a system which uses FMS4.5 and I am tasked to upgrade it to AMS 5.x.
    We have several scripts and prprietary code which relies on old nomen clature and directory structure.
    I was wondering whether there is any document which helps to do a smooth upgrade in such cases.
    Thanks,

    Resolved:
    Needed to assign all constraint to admin user also.
    I was assumed that admin must be having access to all objects, and wont require to assign constraints.
    Thanks and Regards,
    Sumant Chhunchha.

Maybe you are looking for

  • Populate f4 values of a field based on value of other field

    Hi, I have created select options using WDR_SELECT_OPTIONS.For one of the fields ,f4 values should be based on value of another field in the screen. How will i achceive this requirement. I got a link about the same but that is not using WDR_SELECT_OP

  • UWL system creation error?

    Hi, I'm trying to setup UWL configuration for ESS/MSS.  During minimal configuration of UWL setup, I'm assigning one of the system alias which is connecting to the R3 system using SAPLogonTicket method.  We got same uid maintained in portal and ECC6.

  • Apple rquires 1.2 or later of Apple application support, but.....

    I decided to upgrade to iTunes 9.1 today. Ugh. It seemed to install ok, but then flashed up a message saying "apple application support version 1.1.0 is required. iTunes requires 1.2 or later. Please uninstall iTunes, then install iTunes again" Well,

  • JSF Validation failure causes entered values to be lost

    I've created a JSP that has required="true" and a requiredMessage on several elements. If any one element on the page fails it's validation on submit(ie was left blank), when the screen is redrawn all the entered values have disappeared. This is obvi

  • Panel groups greyed out

    even after a computer reboot, problem persists in which some panel groups  (such as Design, Code etc - on the right side of the screen) are greyed out, meaning there is a grey area instead of the panel groups being visible. Each time a panel group is