.MXML files needed for WDR_TEST_FLASH_ISLAND

Hi All
Is there any place where we can get the .MXML files for SAP delivered WDR_TEST_FLASH_ISLAND demo WDA ?
Please share if possible
Thanks in advance

1.  You can data bind with any public attribute or via GET/SET methods. The latter I would imagine would be more compatible with Caingorm. Look at the Google Maps example.  We use GET methods for the data binding in there.
2. That seems like more a pure Flex design consideration. SAP really only provides information on how to work with the Islands. Nothing really Island specific about that. You would be better off searching other Adobe Flex resources.  Portal or ECC should be the same.  Set the FlashIsland UI element width and height based upon % to use up the allowed space.  Make sure the parent containers also use %.

Similar Messages

  • Minimum Files needed for bare bones XP Install?`

    Hello
    I'm new here having recently bought my first MBP. Does anyone know the minimum files needed for a custom (lite) XP Pro install using BootCamp?
    All I want to run is DV-Rack plus maybe 1 or 2 other programs but I don't want to waste space on my 200gb HD. I do't even want to install MS Office because I like iWorks better.
    Thanks
    Allen

    My recommendation is nothing short of 12GB. For your purposes, that you indicated in your post, 12GB should be fine. Please also consider any future uses that you may have for Windows XP. I have seen several times, on this forum, where a user sets the partition too low and then wishes to increase the size and it cannot be done unless Boot Camp and Windows is re-installed from scratch.
    If you can afford the disk space then I would even recommend 32GB and that would allow you to have some space left for future programs if any.
    Axel F.

  • Can synced photos on my iPad be sent back to my Mac? I lost pics in my iPhoto file needed for a presentation.

    Can synced photos on my iPad be sent back to my Mac? I lost pics in my iPhoto file needed for a presentation.

    And of course I forgot about the built in way to send them back to the Mac .... Email them. You can email up to 5 photos at at time.
    Launch the photos app, while looking at the photos in thumbnail view - tap the arrow icon in the upper right corner - tap on up to 5 photos at a time - Tap the Share button in the upper left corner - tap email from the resulting window.

  • Is Stack configuration XML file needed for EHP4 installaton on ERP 6.0 SR2

    Hello ALL,
    Is Stack configuration XML file needed for EHP4 installaton on ERP 6.0 SR2,THE GUIDE SAYS IT IS OPTONAL
    is it?
    Rohit

    The central installation note
    Note 1143022 - Installation of SAP Enhancement Package 4 on SAP ERP 6.0
    says, that the Solution Manager Maintenance Optimizer should be used to generate the stack file to avoid any problems.
    Markus

  • Driver files needed for the following Sony dvd/cd rom drive: "dvd-rom ddu 1615". windows xp

    Driver files needed for the following Sony dvd/cd rom drive:  "dvd-rom  ddu 1615". 
    The dvd-rom drive will not read any type of dvd or cd.
    desktop computer:  Dell Dimension E310 , windows xp, service pack 3.
    This Sony dvd rom was installed (by someone else) and replaced the dvd rom that initially came with the Dell E310.  
    Where can I find driver files for this dvd rom?
    Thanks,
    Denise

    Hello Denise,
    Welcome to the Sony Community.
    All of the Sony internal optical drives are plug & play with Windows so no drivers are required for detection in your PC. If you are having issues getting your drive detected then please try the following:
    • Ensure the Sony drive is set as a secondary master by itself. If you have another disc burner or a zip drive on the same IDE cable, please separate them.
    • Ensure you have the latest Service pack for your Windows operating system and any other updates for your system installed.
    service, storage support email
    • Please remove your secondary IDE channel from the Device Manager.
    If the issue is still not resolved, service may be required. You may contact the Sony Storage support team by e-mail at: [email protected] for further information.
    Thank you for your post.

  • What are the files needed for downloading the MSS -BusinessPackage

    Dear Gurus,
    Any body can give me a suggestion for downloading the MSS -BusinessPackage ,and also what are the files needed for the deployment -its in a urgent basis and reward points welcome!
    regards,
    S.Rajeshkumar

    Hi Rajesh,
    You have to download and deploy the following through SDM (for NW04s/EP7),
    1. Business Package for MSS (contains roles,worksets for your Business Package)
    2. PCUI_GP (WebDynpro Component)
    3. SAP_MSS (WebDynpro Coponent - your MSS application files)
    To use ESS and MSS in Conjunction, you also have to deploy Business Package for Common Parts.
    Backend SAP systems should have SAP HR and SAP FIN configured.
    <a href="http://help.sap.com/saphelp_erp2005/helpdata/en/29/d7844205625551e10000000a1550b0/frameset.htm">http://help.sap.com/saphelp_erp2005/helpdata/en/29/d7844205625551e10000000a1550b0/frameset.htm</a>
    Thanks,
    Vamshi

  • Mxml file listening for event.

    Hi All,
       I'm having following code in my project, here Report.mxml file displays to enter user details like (firstname,lastname,city,state,zip etc). After entering user information there is submit button. When user selects this button it needs to submit this data into database and return REPORT_ID back to confirmation state.
       My problem is that submitting data into database and getting REPORT_ID is taking some time because of that it is not displaying REPORT_ID in Confirmation viewStack. Rather than getting REPORT_ID from RemoteObject, hardcoding(given in red color) this value in my controller then it is displaying REPORT_ID.
      How to wait for event result for displaying confirmation viewStack. Can anyone please suggest me what changes I need to make so that confirmation page will be displayed only after getting REPORT_ID.
    ------------------------------- Report.mxml (begin) ----------------
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" width="100%" height="100%">
    <mx:Script>
        <![CDATA[
        import mx.controls.Alert;
        import com.westernstates.classes.controller.WesternStatesController;
        import com.westernstates.classes.model.WesternStatesModel;
        import com.westernstates.classes.events.*;
        private var _inquiryIdTxt:String;
        private var _inquiryIdTxtChanged:Boolean;
        public function set inquiryIdTxt(value:String):void
           _inquiryIdTxt = value;
           _inquiryIdTxtChanged = true;
           invalidateProperties();
           invalidateSize();
        override protected function commitProperties():void
          super.commitProperties();
          if (_inquiryIdTxtChanged)
              Alert.show("Inside commitProperties 1",_inquiryIdTxt);
             inquiryIdVal.text = _inquiryIdTxt;
             //inquiryIdVal.text = "1234"
             _inquiryIdTxtChanged = false;
        public function init():void{
            Alert.show("Inside newreport init mxml");
            myViewStack.selectedChild = newReport;
            Confirmation.visible=false;
            // Reset the value too.
            first_name.text = "";
            last_name.text = "";
            street_address.text = "";
            street_address2.text = "";
            city.text = "";
            state.text = "";
            zip.text = "";
            public function submitInquiry(evt:Event):void{
            var chk_speed_up:String = "";
            WesternStatesModel.inquiryConsumer.first_name = first_name.text;
              WesternStatesModel.inquiryConsumer.last_name = last_name.text;
              WesternStatesModel.inquiryConsumer.street_address = street_address.text;
              WesternStatesModel.inquiryConsumer.street_address2 = street_address2.text;
              WesternStatesModel.inquiryConsumer.city = city.text;
              WesternStatesModel.inquiryConsumer.state = state.text;
              WesternStatesModel.inquiryConsumer.zip = zip.text;
              myViewStack.selectedChild = Confirmation;
              newReport.visible=false;   
             this.dispatchEvent(new NewReportEvent());        
              //inquiryIdVal.text = _inquiryIdTxt;
              inquiryIdVal.text = WesternStatesModel.inquiryConsumer.inquiry_id;
        ]]>
    </mx:Script>
        <mx:ViewStack id="myViewStack" width="100%" height="100%" creationPolicy="all" >
        <mx:Canvas id="newReport" height="100%" width="100%" visible="true">
        <mx:Label x="10" y="10" text="NEW REPORT"  fontSize="18" fontWeight="bold" color="#F07012"/>
        <mx:TitleWindow width="100%" height="100%" layout="absolute" title="Create A New Report" fontWeight="normal" fontSize="13" y="38" x="0">
         <mx:Canvas height="100%" width="100%">
         <mx:VBox width="100%" height="100%">
             <mx:HBox>
                 <mx:Label text="Consumer Information: " fontSize="12" fontWeight="bold" color="#34B05D"/>
             </mx:HBox>
             <mx:HBox>
                 <mx:Label text="Report Type: " fontWeight="normal"/>
                 <mx:Label text="Phone" fontWeight="bold"/>
             </mx:HBox>
             <mx:HBox width="100%">
                 <mx:Label width="25%"  text="First Name:" fontWeight="normal"/>
                 <mx:TextInput width="25%" id="first_name"/>
                 <mx:Label  width="25%" text="Last Name:" fontWeight="normal"/>
                 <mx:TextInput width="25%" id="last_name"/>
             </mx:HBox>
             <mx:HBox width="100%">
                 <mx:Label  width="25%" text="Address1: " fontWeight="normal"/>
                 <mx:TextInput width="25%" id="street_address"/>
                 <mx:Label  width="25%" text="Address2:" fontWeight="normal"/>
                 <mx:TextInput width="25%" id="street_address2"/>
             </mx:HBox>
             <mx:HBox width="100%">
                 <mx:Label  width="25%" text="City: " fontWeight="normal"/>
                 <mx:TextInput width="25%" id="city"/>
                 <mx:Label  width="25%" text="State:" fontWeight="normal"/>
                 <mx:TextInput width="25%" id="state"/>
             </mx:HBox>
             <mx:HBox width="100%">
                 <mx:Label  width="25%" text="Zipcode: " fontWeight="normal"/>
                 <mx:TextInput width="25%" id="zip"/>
                 <mx:Label  width="25%" text="Phone"/>
                 <mx:TextInput width="25%" id="phone"/>
             </mx:HBox>
             <mx:HBox width="100%" horizontalAlign="center">
                 <mx:Button label="SUBMIT REPORT" id="submit_search" click="submitInquiry(event)" fillColors="#34B05D"/>
             </mx:HBox>        
            </mx:VBox>
        </mx:Canvas>
        </mx:TitleWindow>
        </mx:Canvas>
            <mx:Canvas id="Confirmation" width="100%" height="100%">
            <mx:Label x="10" y="10" text="NEW REPORT"  fontSize="18" fontWeight="bold" color="#F07012"/>
            <mx:TitleWindow width="100%" height="132" layout="absolute" title="Create A New Report" fontWeight="normal" fontSize="13" y="38" x="0">
            <mx:VBox width="100%" height="81">
                 <mx:HBox>
                     <mx:Label text="Submission Confirmation:" fontSize="12" fontWeight="bold" color="#34B05D"/>
                 </mx:HBox>
                 <mx:HBox>
                     <mx:Label text="Report has been created successfully with Report ID:"/>
                     <mx:Label id="inquiryIdVal" fontSize="12" fontWeight="bold" color="#34B05D"/>
                 </mx:HBox>
             </mx:VBox>
            </mx:TitleWindow>
            </mx:Canvas>
        </mx:ViewStack>
    </mx:Canvas>
    ------------------------------- Report.mxml (end)   -----------------
    ------------------------------- NewReportEvent.as( begin) ---------------
    package com.westernstates.classes.events
      import flash.events.Event;
      // This custom event should be dispatched if the user
      // successfully logs into the application.
      public class NewReportEvent extends Event{   
        public static const REPORT:String = "report"; 
        public function NewReportEvent(){
          super(NewReportEvent.REPORT);
    ------------------------------- NewReportEvent.as( end)   ----------------
    ------------------------------- WesternStatesController.as (begin) ------------
       public class WesternStatesController extends UIComponent{
        public function WesternStatesController(){
          addEventListener( FlexEvent.CREATION_COMPLETE, init);
        // Add event listeners to the system manager so it can handle events
        // of interest bubbling up from anywhere in the application.
        private function init( event:Event ):void{    
         systemManager.addEventListener(NewReportEvent.REPORT, newInquiry, true);
          login(new LoginEvent(LoginEvent.LOGIN));
            public function newInquiry(evt:NewReportEvent):void{
                 Alert.show("Inside newInquiry", evt.type);
                 addNewInquiry();
                 //getNewInquiryResult();
             }//End of newInquiry
             public function addNewInquiry():void
                 ro = new RemoteObject();
                 setUpAmfChannel();
                 ro.destination = "manageInquiryService";
                 ro.addEventListener("fault", faultHandler);      
                 ro.createInquiry.addEventListener("result", getNewInquiryResultHandler);
                 Alert.show("Before addNewInquiry");      
                 ro.createInquiry(WesternStatesModel.inquiry,WesternStatesModel.inquiryConsumer);
             }//End of addNewInquiry
             public function getNewInquiryResultHandler(event:ResultEvent):void
                     WesternStatesModel.inquiryConsumer.inquiry_id = event.result as String;
                    //WesternStatesModel.inquiryConsumer.inquiry_id = "09S-1234";  UNCOMMENT     
             }//End of getNewInquiryResultHandler
    ------------------------------- WesternStatesController.as (end) ---------------
    Thanks in advance.
    Regards,
    Sharath.

    Can someone please tell me how to add event handler to show REPORT_ID before displaying confirmation page. Confirmation page should be displayed once data saved successfully and getting REPORT_ID back from server.
    How to set variables for .mxml from action script(.as) file.
    Thanks,
    Sharath.

  • Text file needed for Defor01

    hi,,
         i need the text file for (Delfor01)Idoc type.
    whether its possible to see, if means say me the steps,
    Or Say the links to refer..
    Advance thaks.

    Hi Bala,
    It is possible to generate IDoc in XML format file.
    You need to maintain file port for XML (t/code WE21) and ensure the partner profile (t/code WE20) output pointed to XML file port.
    In this case, when IDoc generated SAP system will take care all conversion format.
    This could be applied for inbound process as well (SAP receives XML file from external system/SAP).
    Hope this will help.
    Regards,
    Ferry Lianto
    Please reward points if helpful.

  • Jar files need for Custom connector API app

    hi all,
    I am doing an application regarding "Custom connector API", for doing the application I need "jdom,rome-0.6" jar files. kindly send these jar files it will be helpful to me. To do such custom connector API application any plugins must be added to  it, if so please let me know???
    thanks in advance,
    Aravind.

    Hi,
    You can find the jdom.jar file from the plugins/com.sap.km.rfwirad_7.1.5/lib/jdom.jar.
    If you add classlocator to your studio you can find the required jar file for your imported classes very easily. To add the classlocator to your studio go to the below blog
    Using JAR Class Finder
    Regards
    Suresh

  • File Need for Oracle 10g AS from Oracle 10g Jdeveloper

    Dear All,
    I have completed my application for running on Oracle 10g AS.
    What files and the structure that I should maintenace/ keep
    without having all file and structure like what we have in oracle
    10g J developer on Mywork folder?
    Help me ..please...
    regards
    erie

    Erie,
    if you are deploying to Oracle Application Server 10g (9.0.4) or higher, then you don't need to deploy the ADF runtime libraries because they are already there.
    If you create a deployment profile for the application you want to deploy - e.g. a WAR file or EAR file deployment - then you can select the files you want to deploy. The default settings typically include all teh necessary files.
    Frank

  • What are the jar files needed for HTMMLB?

    Hi,
    I have imported a HTMLB comp par file into my NWDS.
    it is showing me some errors like com.sapportals.htmlb cannot be resolved...what may be the prob...do i need to import any jar files regarding this.
    Plz help..
    Thanks,
    Viswes

    Hi,
    Please see this helpful link
    New Reference for Portal APIs
    Ramganesan Karuppaiyah

  • How can I point the premiere to a blank folder and bring only the files needed for the project

    When I start premiere it loads all files from all my photo/video libraries (app 150 gb almost 20,000 photo).  I do not want to sort thru all these files for a project.  How can I point premiere Elements to a blank folder and get the appropriate media for a project as I
    need them.

    As Steve points out, there are really three programs in the Premiere and Photoshop Elements "suite," PrE, PSE and then Organizer, which links between the two, and is an Asset cataloging program. Because of the commonality of the GUI (Graphic User Interface), there can be confusion as to exactly which program one is in.
    If you launch just PrE, and not Organizer (can be launched from within either PrE, or PSE), the only Assets/media that you will see is that, which you have Imported into your Project.
    Also, having the Assets for a Project, in a separate folder, or folder structure, is a great way to set up the Project. This article goes into details on one set up method: http://forums.adobe.com/message/4491450#4491450
    Good luck, and hope that helps,
    Hunt

  • [URGENT] BIOS Update .ROM file needed for G580

    hii all
    i have a lenovo G580 (2689) laptop i5-3210 DOS based model
    Current Bios Version - 62CN39WW
    i want to update my BIOS version as am unable to file it on the drivers/download section for my model.
    if any one using the same Model of the laptop and using a updated version of BIOS then kindly extract/backup the BIOS using Universal BIOS Backup Utility http://forums.mydigitallife.info/threads/9856-Universal-BIOS-Backup-Toolkit
    and kindly upload it in some hosting and provide me the .ROM files created by the BIOS Backup Toolkit
    i need a later version for my present BIOS possibly 62CN41WW or any thing later than 62CN39WW
    any help would be highly appricated....waiting eagerly for somebody's help

    Hello
    Tecra A3 is pretty new unit and it will be interesting to know why you want to make BIOS update. Is there any problem with it?
    Which BIOS update doesnt run, windows or traditional one? If you have no serious problem, dont do it at all.
    The issue with your multidrive is a little bit confused for me. Which software you should install?

  • Netra X4270 .flash file needed for ilom recovery using preboot

    According documentation to recover corrupted ilom the preboot> can be used to load Ilom image file directly via tftp.
    Problem is that updating the SP firmware using the preboot menu requires a .flash file instead of the .pkg file used to update the SP from the ILOM.
    And I cannot find it anywhere on oracle.com or anywhere else.

    Dear User,
    you controlfile and the Systemtablespace (datafile) have different items concerning the SCN. It means, that the status quo of
    Systemtablespace is not the same as the controlfile
    Therefore the system needs a Media Recovery.
    The system tells you, that it needs the specified archivelog File
    (C:\oraclexe\app\oracle\flash_recovery_area\ARCHIVELOG\u_a.ARC) for Media Recovery
    (maybe a few Files more - the system will tell you later).
    Make sure that this File exists and recover like orant575 wrote.
    If you have define the destination of archivelog Files in your init.ora/spfile you can
    use return or auto
    The system will apply the File.
    If the system needs more Files for Recovery it will tell you.
    If you use auto, the system will apply automatically all files it needs (if there exists otherwise you get ORA-).
    If you use return, you have to approve with return (if there exists otherwise you get ORA-)
    or
    use the way orant575 wrote
    When all needed operations applied the item (SCN) of controlfile and the Datafile will be the same, the system will answer
    Media Recovery complete or something like that.
    If the database is not in archivelog, you have to recover a consistent earlier reincarnation of the database.
    best of luck
    Regards

  • Registry Key or File needed for login status

    Good afternoon,
    I'm looking for a registry key or file or even some string inside a file that would determine whether or not I'm logged into Novell(Not workstation only or disconnected), the reason is for a home grown app we have that needs to copy data off a UNC share but if they are not on the network I want it to fail instantly instead of timing out waiting for the network share to respond.
    Thanks in advance,
    Tim

    I found a variable that I believe will work. WINDOWS_LOGIN Thanks anyway. If anybody has other things to look at please post as I'm not 100% on this yet.

Maybe you are looking for

  • Can I sync two ipods with different ID on the same computer?

    can I sync two ipods with different ID on the same computer?

  • Adobe Reader X Problem signing online PDF

    This issue has started a couple of weeks ago. Users are running Windows 7 and Adobe Reader X.  When accessing a PDF online users are unable to digitally sign with certificates. When trying to sign it asks them to save the document. If they save the d

  • Exporting I-movie file to Quicktime

    Hi, when I try converting an i-movie file to quicktime on a external Hardrive or when trying to drag a quicktime file between external hardrives I get an error code -36 message. Can anyone share with me what this is about. I also get a message saying

  • JSP Rendering issue

    I am displaying around 20000 records in my jsp view.I fetch the value from DB and use ArrayList of model objects and send that ArrayList to the view where I iterate over the ArrayList and display the table values. I am facing some performance issues.

  • Reg: Where can i write pcr in tm04 for night allowence

    Hi all, I got one requirement for payment for night shift allowance.Where exactly i can write a pcr for allowance and how do i evaluates with payroll. Thanks Laxmi