AddEventListener is not working first time(initial request).

Hi All,
    It is behaving strangely; I’m having below code in ActionScript and .MXML file.
   Very first request it is not displaying inquiry_id in confirmation page but it is displaying this value in later requests. In first request also it is displaying value correctly in getNewInquiryResultHandler in controller but when it comes to newReportSucEventHandler it is displaying null value in BroadModel.inquiryConsumer.inquiry_id
-------------------- NewReportEvent.as(Begin) ---------------------------
package com.broad.events
  import flash.events.Event;
  import com.broad.beans.Inquiry;
  import com.broad.beans.InquiryConsumer;
  // 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,true,true); //bubble by default     
    override public function clone():Event{
            return new NewReportEvent(); // bubbling support inside
-------------------- NewReportEvent.as(End) ---------------------------
In my controller(action script) I added below code for dispatching this event
public function NewReportEvent():void
      ro = new RemoteObject();
      setUpAmfChannel();
      ro.destination = "manageInquiryService";
      ro.addEventListener("fault", faultHandler);     
      ro.createInquiry.addEventListener("result", getNewInquiryResultHandler);
      Alert.show("Before addNewInquiry");     
          ro.createInquiry(BroadModel.inquiryConsumer);
}//End of NewReportEvent
public function getNewInquiryResultHandler(event:ResultEvent):void
      BroadModel.inquiryConsumer.inquiry_id = event.result as String;     
      Alert.show("getNewInquiryResultHandler:"+BroadModel.inquiryConsumer.inquiry_id);
}//End of getNewInquiryResultHandler
In Report.mxml file is having following code
---------------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.broad.controller.BroadController;
      import com.broad.model.BroadModel;
      import com.broad.events.*;   
      [Bindable]
      public var mainLableText:String="NEW REPORT";
      [Bindable]
      public var titleText:String="Create A New Report";
    public function init():void{
      Alert.show("Inside newreport init mxml");
      myViewStack.selectedChild = newReport;
      Confirmation.visible=false;       
      broad.selectedItem.label = "Yes";
      // Reset the value too.
      first_name.text = "";       
      last_name.text = "";
      street_address.text = "";
      street_address2.text = "";
      city.text = "";
      state.text = "";
      zip.text = "";         
    private function initHandler():void
      Alert.show("Inside initHandler");
      addEventListener(NewReportEvent.REPORT,newReportSucEventHandler);
      private function newReportSucEventHandler(event:NewReportEvent):void{ 
            Alert.show("Inside newReportEventHandler mxml");
            myViewStack.selectedChild = Confirmation;
            newReport.visible=false;
            Alert.show("Inside newReportEventHandler inquiryId:"+BroadModel.inquiryConsumer.inquiry_id);
            inquiryIdVal.text = BroadModel.inquiryConsumer.inquiry_id;
            public function submitInquiry(evt:Event):void{
            BroadModel.inquiryConsumer.first_name = first_name.text;
            BroadModel.inquiryConsumer.last_name = last_name.text;
            BroadModel.inquiryConsumer.street_address = street_address.text;
            BroadModel.inquiryConsumer.street_address2 = street_address2.text;
            BroadModel.inquiryConsumer.city = city.text;
            BroadModel.inquiryConsumer.state = state.text;
            BroadModel.inquiryConsumer.zip = zip.text;
            Alert.show("Inside submitInquiry state:",currentStateVal);
            this.dispatchEvent(new NewReportEvent());     
      ]]>
</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="{mainLableText}" fontSize="18" fontWeight="bold" color="#F07012"/>
      <mx:LinkButton id="viewEditLink" right="10"  styleName="htmlLink" label="{pageMode}" click="setPageMode(event);"
            visible="{pageMode != null}" includeInLayout="{pageMode != null}" />
      <mx:TitleWindow width="100%" height="100%" layout="absolute" title="{titleText}" 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" editable="{pageModeStat}" />
                <mx:Label  width="25%

Previously, when I'm calling below line in Report.mxml file
this.dispatchEvent(new NewReportEvent());
In Controller, I'm having following line in init() method
private function init( event:Event ):void{
      systemManager.addEventListener(LoginEvent.LOGIN, login, true);
      systemManager.addEventListener(LoginSuccessEvent.LOGIN_SUCCESS, handleLogin, true);
      systemManager.addEventListener(LoginFailureEvent.LOGIN_FAILURE, handleLogin, true);
      systemManager.addEventListener(ValidateLoginEvent.LOGIN_VALIDATE, checkLogin, true);
      systemManager.addEventListener(HomeEvent.HOME, home, true);
      systemManager.addEventListener(SearchEvent.SEARCH, search, true);
      systemManager.addEventListener(NewReportEvent.REPORT, newInquiry, true);
      login(new LoginEvent(LoginEvent.LOGIN));
public function newInquiry(evt:NewReportEvent):void{
        Alert.show("Inside newInquiry", evt.type);
        addNewInquiry();  
    }//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(BroadModel.inquiryConsumer);
    }//End of addNewInquiry
public function getNewInquiryResultHandler(event:ResultEvent):void
       BroadModel.inquiryConsumer.inquiry_id = event.result as String;      
       Alert.show("getNewInquiryResultHandler:"+BroadModel.inquiryConsumer.inquiry_id);
    }//End of getNewInquiryResultHandler
Did following changes
In Controller:
    // systemManager.addEventListener(NewReportEvent.REPORT, newInquiry, true);  COMMENTED
Report.mxml:
     public function submitInquiry(evt:Event):void{
        var controller:BroadController = new BroadController();
        controller.addNewInquiry();
          this.dispatchEvent(new NewReportEvent(NewReportEvent.REPORT));
    Still I'm having same issue, it is calling this.addEventListener(NewReportEvent.REPORT,newReportSucEventHandler); before dispathEvent and it is showing null value in confirmation page.
    Can you please check this code and let me know what I'm doing wrong. Why addEventListerner is firing before dispatchEvent?
Thanks,
Sharath.

Similar Messages

  • Links not working first time

    When I click on a link the only thing that happens is the icon in the task bar jumps to the right and back. I have to click several times before the link works ?

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

  • Security Level Medium is not working for PO initial version

    Hi ,
        We have maintained security level as Medium in Purchaser user personalization. In order to restart the PO SAVED event workflow only there is a value changed while the PO is awaiting for approval..  Here is the scenario and how the start condition maintained for PO - WS 14000145 - SAVED event.
    Start condition maintained for event SAVED for WF template WS14000145 as below
    &_EVT_OBJECT.POTotalValue& GE 0.00
    Security level(BBP_WFL_SECURITY) maintained as Medium in personalization of SU01.
    my requirement is when the PO create first time ( Initial Version ) and route for approval. Three level approval is determined for the PO and first approval approved. while the PO is awainiting for second level of approval the purchaser changed the quantity. based on above start condition my expectation is , the PO has to restart and route from beginning. but that is not happening. when i see the approval preview the approval path shows the workitem is waiting in second level of approval.
    I tried the below start conditions also
    &_EVT_OBJECT.SimpleListOfChanges&CE TOTAL_VAL, but no result..
    What is the Medium functionality?
    here is the help i found from help.sap.com, but i am not clear about this..
    MEDIUM It is possible to change the document The system evaluates the workflow start conditions and starts the approval workflow again if the change necessitates a new approval If this is not the case, the approval workflow continues.
    Regards,
    John

    Hi John,
    The security level works differently for PO's.                                                                               
    In the function 'BBP_PDH_WFL_CHECK_RESTART is a desription how the    
    system should work:                                                                               
    The workflow will be RESTARTED in the following cases: 
    a) One has a standard workflow with the usual type of approval (not a 
       'back&forth' one). It will always be restarted independent on the  
       authorization levels of the user and whether the user is a PO      
       creator or not;               
    b) One has the 'back&forth' type of approval but the user reordering  
       the PO is not the PO creator (this could be another purchaser from 
       the same purchasing group);    
    c) It is the 'back&forth' type of approval and the user reordering the
       PO is the PO creator but he has the authorization levels that are  
       less then 2, i.e '0'(not defined') or '1' (no changes allowed);    
    That means the security level must be below '2' to force a restart.   
    I hope that this clarifies how the system is working.
    Kind regards,
    Siobhan

  • UploadedFile & https Only work first time upload ????

    I am using 10.1.3.4 Jdev. I use UploadedFile interface to upload files from local PC and ftp files to unix server. My "upload" web page works between my local PC and Unix server, but it only works first time upload file and ftp between
    https server (application server--weblogic 10.0) and Unix server. If I just use http without SSL and my codes work fine you can upload file as many times you want and ftp them to Unix server. I used FTP not sftp to transfer files from application server to unix server. Can anyone shed some lights on my head ???? Thx.

    Yes. I changed my code to SFT from ftp. it works. Thx. This URL for sftp: http://www.jcraft.com/jsch/ and is very good .
    Edited by: albertpi on Feb 11, 2010 8:05 AM
    Edited by: albertpi on Feb 11, 2010 8:05 AM

  • I have a problem with wifi in my iphone 4s, i already try everything and download latest version 7.1(11D167) but wifi switch is not working, its my humble request to Apple support team that pls resolve this problem as soon as possible because

    I have a problem with wifi in my iphone 4s, i already try everything and download latest version 7.1(11D167) but wifi switch is not working, its my humble request to Apple support team that pls resolve this problem as soon as possible because its a prestiage of Apple Company.
    Pls inform me how can i resolve the problem of wifi.

    You have to go to autherized iPhone agent.

  • Why is my adobe photoshop elements 12 not working. it says initializing and then it says there is an error and closes itself

    why is my adobe photoshop elements 12 not working. it says initializing then error and shuts itself down.

    Three things you can try:
    1. Clean the superdrive with a proprietory CD/DVD lens cleaner that uses tiny brushes.
    2. Perform an SMC reset:
    Resetting the SMC (System Management Controller) on Intel-based Macs:
    http://support.apple.com/kb/ht3964  and
    http://support.apple.com/kb/HT1237?viewlocale=en_US
    Resetting your Mac's PRAM and NVRAM:
    http://support.apple.com/kb/ht1379
    If you are using a Wireless Keyboard:
    http://support.apple.com/kb/TS3273
    3. Try the free DVD player VLC:
    http://www.videolan.org/vlc/
    which performs better than the built-in DVD Player.

  • How do i make a tab active and make it stay that way always. If i put a website in my home page in order for the tabs to open automatically in that same homepage , this setting is not working, every time I open a tab , a white window appears .

    How do i make a tab active and make it stay that way always. If i put a website in my home page in order for the tabs to open automatically in that same homepage , this setting is not working, every time I open a tab , the window appears white .

    By default Firefox opens a blank page for a new Tab, there is no setting to change that action without installing an add-on.
    New Tab Homepage extension: <br />
    https://addons.mozilla.org/en-US/firefox/addon/777

  • My macbook pro 15' sound is not working, every time i turn on the internal speakers they just turn back off, and i have already tried putting in my headphones 5 or 6 time

    my macbook pro 15' sound is not working, every time i turn on the internal speakers they just turn back off, and i have already tried putting in my headphones 5 or 6 time

    Hi eleni_georgia,
    Welcome to Apple Support Communities.
    The article linked below provides some additional tips that will help you resolve the audio issue that you described.
    Troubleshooting issues with no audio from built-in speakers on Macs
    http://support.apple.com/kb/TS1574
    Cheers!
    -Jason

  • TS1702 I had this Scrabble on my iPad2 and began to have connection problems, it would lock in the "connecting" position. This is not the first time Scrabble has had problems with interface. Typically customers delete the Ap then download it again to rein

    I have contacted EA about this and can find no help. I had this Scrabble on my iPad2 and began to have connection problems, it would lock in the "connecting" position. This is not the first time Scrabble has had problems with interface. Typically customers delete the Ap then download it again to reinstall it. During the process you sign in and approve the purchase KNOWING that another window will open saying that you have previously purchased it and that there is no charge. So what happened this time? It will not connect and all of my saved and current games are wiped out. I want my money back, this game interface is pretty junk and operates like some ancient DOS program,,bug,bug,buggy. I want my money back.

    Go here:
    http://www.apple.com/support/itunes/contact/
    and follow the instructions to report the issue to the iTunes Store.
    Regards.

  • In 5s, personal hot spot does not work from time to time. Not detected

    In 5s, personal hot spot does not work from time to time. Iphone does not get detected on Wi-fi or bluetooth. Restarting or rebooting does not help.  

    Settings, general, reset and reset network settings. Clear out your network settings and set personal hotspot again.
    also avoid special characters making a password. hashtags or open brackets for example doesn't work too good.

  • The most recent update erased all of my bookmarks. I tried the steps to find them and they are gone. This is not the first time this has happened and it extremely disuptive.

    the most recent update resulted in a loss of ALL of my bookmarks. This is not the first time this has happened and it is very disruptive. I tried the steps suggested to find the bookmarks but that failed.

    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    * http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox

  • Why is the "plug in" not working every time i try to stream?

    Why is the "plug in" not working every time i try to stream?

    If you own "Sausage Fattner" you'll find a update in your email that solves this problem.

  • Mac mini restart because of a problem. Not the first time!

    Hi everyone!
    This morning, while I was simply listening to iTunes, browsing with Safari and a Time Machine Backup was going on I had the Grey Screen Of Death!
    This is not the first time it happens, I'm really worried about a real hardware problem.
    Here are the infos about the restart, I really don't know how to read them.... Please if someone could help me I will really appreciate!
    Thanks in advance for your help.
    A.A.R.
    Fri Aug 29 09:45:28 2014
    panic(cpu 0 caller 0xffffff80248bc6bc): "complete() while dma active"@/SourceCache/xnu/xnu-2422.110.17/iokit/Kernel/IOMemoryDescriptor.cpp:26 20
    Backtrace (CPU 0), Frame : Return Address
    0xffffff820eccb970 : 0xffffff8024422f79
    0xffffff820eccb9f0 : 0xffffff80248bc6bc
    0xffffff820eccba30 : 0xffffff7fa49f9b06
    0xffffff820eccba70 : 0xffffff7fa49efab2
    0xffffff820eccbac0 : 0xffffff7fa509c2ca
    0xffffff820eccbb10 : 0xffffff7fa509fc3a
    0xffffff820eccbb60 : 0xffffff7fa4a870d4
    0xffffff820eccbbb0 : 0xffffff7fa4a8114e
    0xffffff820eccbc00 : 0xffffff7fa4a8121c
    0xffffff820eccbc30 : 0xffffff7fa4d6a7cd
    0xffffff820eccbd30 : 0xffffff7fa515d126
    0xffffff820eccbde0 : 0xffffff7fa515df11
    0xffffff820eccbe20 : 0xffffff7fa516b82e
    0xffffff820eccbed0 : 0xffffff7fa5173469
    0xffffff820eccbef0 : 0xffffff80248b07f0
    0xffffff820eccbf30 : 0xffffff80248af292
    0xffffff820eccbf80 : 0xffffff80248af367
    0xffffff820eccbfb0 : 0xffffff80244d7417
          Kernel Extensions in backtrace:
             com.apple.iokit.IOStorageFamily(1.9)[9B09B065-7F11-3241-B194-B72E5C23548B]@0xff ffff7fa49ec000->0xffffff7fa4a10fff
             com.apple.iokit.IOUSBFamily(683.4)[7595281D-D047-3715-9044-98F46B62F845]@0xffff ff7fa4d67000->0xffffff7fa4dc7fff
                dependency: com.apple.iokit.IOPCIFamily(2.9)[4662B11D-2ECA-315D-875C-618C97CDAB2A]@0xffffff 7fa4abe000
             com.apple.driver.AppleUSBXHCI(683.4)[4C9A2D47-0723-387A-9C4B-6199093960A9]@0xff ffff7fa515c000->0xffffff7fa5178fff
                dependency: com.apple.iokit.IOUSBFamily(683.4.0)[7595281D-D047-3715-9044-98F46B62F845]@0xff ffff7fa4d67000
                dependency: com.apple.iokit.IOPCIFamily(2.9)[4662B11D-2ECA-315D-875C-618C97CDAB2A]@0xffffff 7fa4abe000
             com.apple.iokit.IOSCSIArchitectureModelFamily(3.6.6)[C7B04E3E-37FF-3DC4-A0ED-92 DDCE6FCB98]@0xffffff7fa4a7c000->0xffffff7fa4aa6fff
             com.apple.iokit.IOSCSIBlockCommandsDevice(3.6.6)[160F02BC-97C1-3119-BD28-4B2ED1 21C501]@0xffffff7fa509b000->0xffffff7fa50affff
                dependency: com.apple.iokit.IOSCSIArchitectureModelFamily(3.6.6)[C7B04E3E-37FF-3DC4-A0ED-92 DDCE6FCB98]@0xffffff7fa4a7c000
                dependency: com.apple.iokit.IOStorageFamily(1.9)[9B09B065-7F11-3241-B194-B72E5C23548B]@0xff ffff7fa49ec000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    13E28
    Kernel version:
    Darwin Kernel Version 13.3.0: Tue Jun  3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64
    Kernel UUID:
    Kernel slide:     0x0000000024200000
    Kernel text base: 0xffffff8024400000
    System model name: Macmini6,2 (Mac-F65AE981FFA204ED)
    System uptime in nanoseconds: 1057344563610
    last loaded kext at 419151165914: com.apple.driver.AppleIntelMCEReporter 104 (addr 0xffffff7fa63b7000, size 49152)
    last unloaded kext at 542203040150: com.apple.driver.AppleIntelMCEReporter 104 (addr 0xffffff7fa63b7000, size 32768)
    loaded kexts:
    com.motu.driver.FireWireAudio 1.6 60625
    com.apple.filesystems.autofs 3.0
    com.apple.driver.AudioAUUC 1.60
    com.apple.iokit.IOBluetoothSerialManager 4.2.6f1
    com.apple.driver.AGPM 100.14.28
    com.apple.driver.ApplePlatformEnabler 2.0.9d6
    com.apple.driver.X86PlatformShim 1.0.0
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.AppleHDA 2.6.3f4
    com.apple.driver.AppleUpstreamUserClient 3.5.13
    com.apple.driver.AppleMCCSControl 1.2.5
    com.apple.driver.AppleMikeyDriver 2.6.3f4
    com.apple.iokit.IOUserEthernet 1.0.0d1
    com.apple.driver.AppleIntelHD4000Graphics 8.2.8
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleLPC 1.7.0
    com.apple.driver.AppleSMCPDRC 1.0.0
    com.apple.driver.AppleIntelFramebufferCapri 8.2.8
    com.apple.driver.AppleThunderboltIP 1.1.2
    com.apple.iokit.IOUSBAttachedSCSI 1.0.5
    com.apple.driver.AppleIRController 325.7
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.6.0
    com.apple.driver.AppleUSBHub 683.4.0
    com.apple.driver.AppleSDXC 1.5.2
    com.apple.iokit.AppleBCM5701Ethernet 3.8.1b2
    com.apple.driver.AirPort.Brcm4331 700.20.22
    com.apple.driver.AppleFWOHCI 5.0.2
    com.apple.driver.AppleAHCIPort 3.0.5
    com.apple.driver.AppleUSBEHCI 660.4.0
    com.apple.driver.AppleUSBXHCI 683.4.0
    com.apple.driver.AppleACPIButtons 2.0
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 2.0
    com.apple.driver.AppleAPIC 1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient 217.92.1
    com.apple.nke.applicationfirewall 153
    com.apple.security.quarantine 3
    com.apple.driver.AppleIntelCPUPowerManagement 217.92.1
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOSerialFamily 10.0.7
    com.apple.driver.DspFuncLib 2.6.3f4
    com.apple.vecLib.kext 1.0.0
    com.apple.iokit.IOAudioFamily 1.9.7fc2
    com.apple.kext.OSvKernDSPLib 1.14
    com.apple.iokit.IOBluetoothFamily 4.2.6f1
    com.apple.iokit.IOSurface 91.1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.driver.AppleSMBusController 1.0.12d1
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.driver.AppleHDAController 2.6.3f4
    com.apple.iokit.IOHDAFamily 2.6.3f4
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.iokit.IOFireWireIP 2.2.6
    com.apple.iokit.IOAcceleratorFamily2 98.22
    com.apple.AppleGraphicsDeviceControl 3.6.22
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.driver.X86PlatformPlugin 1.0.0
    com.apple.driver.AppleSMC 3.1.8
    com.apple.driver.IOPlatformPluginFamily 5.7.1d6
    com.apple.driver.AppleUSBHIDKeyboard 170.15
    com.apple.driver.AppleHIDKeyboard 170.15
    com.apple.iokit.IOSCSIBlockCommandsDevice 3.6.6
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.6.6
    com.apple.driver.AppleUSBMergeNub 650.4.0
    com.apple.driver.AppleThunderboltDPInAdapter 3.1.7
    com.apple.driver.AppleThunderboltDPAdapterFamily 3.1.7
    com.apple.driver.AppleThunderboltPCIDownAdapter 1.4.5
    com.apple.iokit.IOUSBHIDDriver 660.4.0
    com.apple.driver.AppleUSBComposite 656.4.1
    com.apple.driver.AppleThunderboltNHI 2.0.1
    com.apple.iokit.IOThunderboltFamily 3.3.1
    com.apple.iokit.IOEthernetAVBController 1.0.3b4
    com.apple.driver.mDNSOffloadUserClient 1.0.1b5
    com.apple.iokit.IO80211Family 640.36
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOUSBUserClient 660.4.2
    com.apple.iokit.IOFireWireFamily 4.5.5
    com.apple.iokit.IOAHCIFamily 2.6.5
    com.apple.iokit.IOUSBFamily 683.4.0
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 278.11.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 7
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.DiskImages 371.1
    com.apple.iokit.IOStorageFamily 1.9
    com.apple.iokit.IOReportFamily 23
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 2.0
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.corecrypto 1.0
    com.apple.kec.pthread 1
    Model: Macmini6,2, BootROM MM61.0106.B03, 4 processors, Intel Core i7, 2.6 GHz, 16 GB, SMC 2.8f0
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In
    Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x802C, 0x31364B544631473634485A2D314736453120
    Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x802C, 0x31364B544631473634485A2D314736453120
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x10E), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.6f1 14216, 3 services, 23 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: APPLE HDD HTS541010A9E662, 1 TB
    Serial ATA Device: KINGSTON SH103S3240G, 240,06 GB
    USB Device: Porsche Desktop
    USB Device: Hub
    USB Device: Keyboard Hub
    USB Device: USB Receiver
    USB Device: Apple Keyboard
    USB Device: Hub
    USB Device: Hub
    USB Device: IR Receiver
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    FireWire Device: Vendor 0x1F2 Device 0x106800, 0x1F2, Up to 400 Mb/sec
    Thunderbolt Bus: Mac mini, Apple Inc., 23.4

    I'll do... but it sounds strange to me... this LaCie is brand new (I've bought it a month ago) and it seems to be a good brand for drives, especially for Mac OS X, isn't it?
    All this problems started after a Mavericks fresh install...
    I hope to solve this problem quickly.

  • TableView : sort = "SERVER" ...does not work for "TIME"

    Hi,
    TableView sort = "Server" works automatically for "Date" Fields and "Text" Fields.
    But it does not work for "Time" field with data element "CDUZEIT". It shows the below error message:
    Note
    The following error text was processed in the system IFD : Invalid sort field type in "SORT ... AS TEXT".
    The error occurred on the application server ifdmain_IFD_01 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Form: IF_HTMLB_ELEMENT_DELEGATED~DO_AT_END of program CL_HTMLB_TABLEVIEW============CP
    Form: DELEGATED_END of program CL_HTMLB_ELEMENT==============CP
    Form: IF_BSP_ELEMENT~DO_AT_END of program CL_HTMLB_TABLEVIEW============CP
    Form: ONLAYOUT of program CLO27OLHO7EA9KVWPONPDC2NLTDFHCP
    Form: %_ONLAYOUT of program CL_O27OLHO7EA9KVWPONPDC2NLTDFHCP
    Form: DO_REQUEST of program CL_BSP_PAGE===================CP
    Form: CALL_VIEW of program CL_BSP_PAGE_BASE==============CP
    Form: CALL_VIEW of program CL_BSP_CONTROLLER=============CP
    Form: DO_REQUEST of program ZCL_ZPR_C_ACTION_LOG==========CP
    Form: DO_REQUEST of program CL_BSP_CTRL_ADAPTER===========CP
    Thanks and Regards,
    Bindiya

    Welcome to SDN.
    This problem and solution to it is exaplined in the following oss note number.
    <a href="https://service.sap.com/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=893210&_NLANG=E">893210</a>
    Regards
    Raja

  • My iphone5 carrier not working som time showing no service

    my iphone 5 carrier not working som time showing no service

    It isnt carrier problem. I had 3 months old iphone 5, no problems with network but had light leakage, got replacement 2 days ago and with same sim card there was always no service. Went back to apple store and they will give another replacement tommorow or monday.

Maybe you are looking for

  • Triple monitor Card for CS5.5?

    I am looking to expand my desktop from 2 monitors to three but still get the plusses of CUDA and hardware acceleration. Does anyone know what options I have? I have a Matrox MXO2 mini on the system for HDMI output to am HD flatscreen, but would dearl

  • Transferring iPhoto Library from 10.3 to 10.8

    My folks recently upgraded from an eMac running 10.3 / Whatever Cat to an iMac running 10.8 / Mountain Lion.  I have transferred the old iPhoto Library to the new computer, and renamed it slightly (but did not replace or throw away the new iPhoto Lib

  • Syncing with yahoo contacts

    In recent weeks i have been losing my contacts which are synced with yahoo. Is anyone elese having the same problem? How to fix it?

  • Help please old pc user, new mac user conver ipod ?

    ok i'm trying to use my ipod with my new macbookpro, but it used to be used with a pc. is there anyway to transfer music off of ipod onto macbook before i restore it back to factory settings? My pc crashed and there for cannot use that as a backup or

  • Freight costs in SRM

    Hi, We are implementing Extended Classic Scenario. We would like to capture the Base price and Freight cost separately. In SAP ECC system we would like to capture the freight cost separately. If I look at the help documentatation, it is mentioned tha