VI not updating DAQ readings correctly

I am using a usb-6009 to acquire a DC voltage from a pressure transducer. My vi runs a loop that averages N data points of the voltage per loop and then displays the average on the front panel. When it cycles through the next loop, it then averages the next N data points and displays the result. Here's my problem: if I change the DC voltage to a new lower value, even after some time, the front panel continues to report voltages on the order of the original voltage. I would like the front panel to update an accurate voltage reading in real time (well, after every N points). I've been stuck on this issue for some time and getting to the end of my rope. I suppose it is probably a simple vi programming issue as I still am pretty new to LabVIEW.  My vi is attached.  Any help would be greatly appreciated.
Attachments:
Velocity Scan (x,y) 3.vi ‏191 KB

Hello fattyskaty!
Thanks for your post back.
I
think the best way would be to use some kind of sequential error line
handling to make each case execute sequentially. This way you will not
have a conflict when writing to local variables.  It looks like you
have alot of local variables that could be written to at different or
the same time. I see that you have about 10 case structures that are in
the same programing loop. With out timing your computer will execute
this as it so choses.Take a look at the attached picture, this is NOT
at all a best case programing practice but it shows how to use error
lines and multiple case structures. The best way is to figure out what
you need to happen and when. You can also run the error line through
the false case of the structures so that way every case is executed one
after another. Let me know if this helps you to get your program at up
and running for the time being.
Cheers!
Corby_B
http://www.ni.com/support 
Attachments:
error lines.jpg ‏54 KB

Similar Messages

  • Org Structure not updating in CRM Correctly

    Hi Experts,
    We have an issue with their ALE transfer of the HR Org Structure (from the HR box) to the structure in the CRM box.
    It is (apparently) randomly not updating certain details. Org units and their relationships which are changed in ECC are not getting replicated into CRM. The relations with the parent node are not flowing to CRM in most of the cases.
    e.g. a position change won't come or new org assignment.
    Every time we are pulling using PFAL for missing relations and new assignments but client is not happy with the persistent issue.
    Can anyone give me any assistance on what else I should be looking at to troubleshoot random missing data in the ALE process?
    Many thanks in advance.
    Vijay

    Hi Maggi,
    We are using HRMD_ABA. .. is that what u r asking..?
    Please let me know if you need more details.
    Thank you..
    Vijay

  • SetItemAt Not Updating Tilelist Icons Correctly

    My app allows users to enter in a url a title and an image filename and then when they click a button a snapshot of this url is created and sent to the server as the filename they have entered and an item containing all this data is added to an array collection which displays all this within a tilelist, the item renderer is linked to the server which contains the images (via the i) so they are displayed within the tilelist. The thing is this I'm trying to allow my users to update these things using the setitemat method i.e. they click on an item and all it's data is displayed and they can edit it and then save it which will use the setitemat function to update this item in the array collection.
    My problem is this, if the user changes the url it takes a snapshot of this new url to overwrite the previous image on the server but if they keep the image filename the same it doesn't seem to refresh within the tilelist itself. I know the image on the server has been overwritten as the image on the server in question has been changed when I check it but for some reason the image in the tilelist isn't updating to the new image. It's as if flex has the old image stored in memory or something and won't switch to the new one. Is this common and is there anyway around this besides refreshing the whole array collection each time the user updates an item. Is there any way of refreshing only the item that has just been updated perhaps? The strange thing is if the user enters a different image filename.
    Here's the line of code which updates the selected item (with 'a' being the chosen item in the tilelist):-
    ArrayCollection(linkChoice.dataProvider).setItemAt({linkid:linkChoice.selectedItem.linkid, categoryid:updatedcategoryid, label:updatedlabelentry.text, icon:updatediconentry.text, url:updatedurlentry.text}, a);

    Yes but that's the thing. People can't enter a fake url because the process all takes place right in front of them and shows the site they are about to take a snapshot of. Plus I've tested it myself and looked on the server and the images are there and can be linked to elsewhere but it just seems that the tilelist images aren't updating to that new image when the user enters a filename which is the same as the current one. It's almost like having the same filename is confusing flex and making the tilelist still display an image that is now different and has been overwritten.
    All my data is dynamic and is loaded at startup into the tilelist array collection data provider and then the user can edit it. My tilelist has an item renderer containing an image the code for which is this:-
    <mx:Image source="{'http://www.mysitename.com/images/'+data.icon+'.jpg'}" height="100" width="100"/>
    And obviously the user can rename the icon property as the place on my site where the new image gets uploaded to but if they keep the name the same the image doesn't refresh. If they edit the name then it does change correctly once it's been added I've been racking my brains trying to figure it out.
    The strange thing is this. I have a filter function applied to my tilelist which changes the contenrt based on what category a user selects at the top of the app. If a user selects a category and selects a link and edits the image to  a different one but saves it as the same filename that it already was it doesn't show the new image in the tilelist BUT if they then click to another category that has other images in it and then go back to the category they edited the link in all of a sudden it has changed. I'm totally confused about this.

  • Desk top software v7 does not update to show correct version of playbook os

    Password problems caused the playbook the reset, I had backed up the playbook.
    I updated the playbook to os2 and when I connect to desk top v7 it shows that I do not have os2 on the playbook
    and wants to update it. The udate always gets an error at bundle 57 of 70. I had backed up the playbook but am
    unable to restore because the desktop still thinks I have os1 on the playbook.

    Hi..
    Use Lion Recovery  to reinstall the Mac OS X.

  • Events not updating the database correctly

    Hi All,
    We need to update the created date and time as well as changed date and time for a custom table.Please have a look at the below piece of code.But the date never gets commited as well as when there is any change made to the entries in the table they are not getting commited.Please help.
    Thanks,
    Sham.
    LOOP AT total.
        READ TABLE extract WITH KEY <vim_xtotal_key>.
        IF sy-subrc EQ 0.
          l_index = sy-tabix.
        ELSE.
          CLEAR l_index.
        ENDIF.
        MOVE total TO w_mat.
        IF status-action EQ 'A'.
          w_mat-created_on = sy-datum.
          w_mat-creation_time = sy-uzeit.
          w_mat-created_by = sy-uname.
          w_mat-changed_on = sy-datum.
          w_mat-changed_by = sy-uname.
          w_mat-changed_time = sy-uzeit.
        ELSE.
          w_mat-changed_on = sy-datum.
          w_mat-changed_by = sy-uname.
          w_mat-changed_time = sy-uzeit.
        ENDIF.
        OVERLAY total WITH w_mat.
        MODIFY total.
        CHECK l_index GT 0.
        extract = total.
        MODIFY extract INDEX l_index.
      ENDLOOP.
      sy-subrc = 0.
    ENDFORM.
    Added code tags
    Edited by: Rob Burbank on Feb 27, 2009 11:06 AM

    total-created_on  = sy-datum.  "w_mat-created_on = sy-datum.similarly for other values
    MODIFY total .
    "total is table with header line
    "other option: MODIFY total from wrk_mat TRANSPORTING created_on etc

  • Apps will not update even with correct password

    My Apps icon on my iPhone 4 currently says I have 37 updates available.  I am unable to update them individually OR all at once.  After pressing the UPDATE button it asks for my account password like normal.  I type it in correctly and it shifts back to the app icons, showing all of the apps with the update progess bar at the bottom of them.  Then a popup appears saying:
    Sign in the the iTunes Store.
    If you have an Apple ID sign in with it here, AOL members can sign in using their AOL username and password.
    Cancel   Buy
    If I cancel nothing happens.  If I hit BUY and type in my password again it just gives me the same error popup again.
    However, if I try to download a new app from the app store using the same password it lets me.  The new app downloads and installs just fine.
    What is with this error message and what do I need to do to fix this?  FYI I have no AOL account and have never had one in the past.
    Thank you,
    MaestroC

    Finally got this solved by taking it to the genius bar at the Apple store.  They too had never seen anything like it before, but managed to solve the problem by having me turn on iCloud backup there at the store.  The phone backed up my settings and information to iCloud and then the guy took it to the back room and did a restore on it using that same iCloud backup data.  Thus it saved my settings and app info but is downloading new, updated versions of all of the apps as it restores itself from iCloud.  It seeme to have fixed the AOL login popup problem.
    He seemed to think that somehow my backups here on my home PC are getting corrupted somehow but none of the techs had any idea what was going on.

  • R12 with 2 node 10g RAC is not updating with autoconfig correctly.

    Hi,
    we are on R12.0.6 with 2 node 10g RAC. Our collegue did the RAC setup, I was not there at that moment
    steps he followed is
    1. Installed 10g CRS,ASM 10.2.0.3 software and bring up the two nodes.
    2. Configured the RAC DB to Oracle Appplication and registered the Listener with CRS.
    Name Type Target State Host
    ora....D1.inst application ONLINE ONLINE erpdb1
    ora....D2.inst application ONLINE ONLINE erpdb2
    ora.ERPPROD.db application ONLINE ONLINE erpdb1
    ora....SM1.asm application ONLINE ONLINE erpdb1
    ora....B1.lsnr application ONLINE ONLINE erpdb1
    ora.erpdb1.gsd application ONLINE ONLINE erpdb1
    ora.erpdb1.ons application ONLINE ONLINE erpdb1
    ora.erpdb1.vip application ONLINE ONLINE erpdb1
    ora....SM2.asm application ONLINE ONLINE erpdb2
    ora....B2.lsnr application ONLINE ONLINE erpdb2
    ora.erpdb2.gsd application ONLINE ONLINE erpdb2
    ora.erpdb2.ons application ONLINE ONLINE erpdb2
    ora.erpdb2.vip application ONLINE ONLINE erpdb2
    oracle@erpdb1 $
    The issue is, in our tnsnames.ora in both the nodes.
    ===
    ERPPROD=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb1-vip.domain.com)(PORT=1521))
    (CONNECT_DATA=
    (SERVICE_NAME=ERPPROD)
    (INSTANCE_NAME=ERPPROD1)
    instead of
    ERPPROD=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb1-vip.domain.com)(PORT=1521))
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb2-vip.domain.com)(PORT=1521))
    (CONNECT_DATA=
    (SERVICE_NAME=ERPPROD)
    (INSTANCE_NAME=ERPPROD1)
    (INSTANCE_NAME=ERPPROD2)
    Node1 tnsnames.ora
    oracle@erpdb1 $ cat tnsnames.ora
    # This file is automatically generated by AutoConfig. It will be read and
    # overwritten. If you were instructed to edit this file, or if you are not
    # able to use the settings created by AutoConfig, refer to Metalink Note
    # 387859.1 for assistance.
    #$Header: NetServiceHandler.java 120.16.12000000.4 2008/04/28 06:39:48 schagant ship $
    ERPPROD=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb1-vip.domain.com)(PORT=1521))
    (CONNECT_DATA=
    (SERVICE_NAME=ERPPROD)
    (INSTANCE_NAME=ERPPROD1)
    ERPPROD1=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb1-vip.domain.com)(PORT=1521))
    (CONNECT_DATA=
    (SERVICE_NAME=ERPPROD)
    (INSTANCE_NAME=ERPPROD1)
    ERPPROD1_FO=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb1-vip.domain.com)(PORT=1521))
    (CONNECT_DATA=
    (SERVICE_NAME=ERPPROD)
    (INSTANCE_NAME=ERPPROD1)
    ERPPROD2=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb2-vip.domain.com)(PORT=1521))
    (CONNECT_DATA=
    (SERVICE_NAME=ERPPROD)
    (INSTANCE_NAME=ERPPROD2)
    ERPPROD2_FO=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb2-vip.domain.com)(PORT=1521))
    (CONNECT_DATA=
    (SERVICE_NAME=ERPPROD)
    (INSTANCE_NAME=ERPPROD2)
    ERPPROD_FO=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb1-vip.domain.com)(PORT=1521))
    (CONNECT_DATA=
    (SERVICE_NAME=ERPPROD)
    (INSTANCE_NAME=ERPPROD1)
    ERPPROD2_LOCAL=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb2-vip.domain.com)(PORT=1521))
    ERPPROD1_LOCAL=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb1-vip.domain.com)(PORT=1521))
    ERPPROD_BALANCE=
    (DESCRIPTION=
    (ADDRESS_LIST=
    (LOAD_BALANCE=YES)
    (FAILOVER=YES)
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb2-vip.domain.com)(PORT=1521))
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb1-vip.domain.com)(PORT=1521))
    (CONNECT_DATA=
    (SERVICE_NAME=ERPPROD)
    ERPPROD_REMOTE=
    (DESCRIPTION=
    (ADDRESS_LIST=
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb2-vip.domain.com)(PORT=1521))
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb1-vip.domain.com)(PORT=1521))
    LISTENER_ERPPROD1=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb1-vip.domain.com)(PORT=1521))
    LISTENERS_ERPPROD=
    (DESCRIPTION=
    (ADDRESS_LIST=
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb2-vip.domain.com)(PORT=1521))
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb1-vip.domain.com)(PORT=1521))
    extproc_connection_data =
    (DESCRIPTION=
    (ADDRESS_LIST =
    (ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROCERPPROD1))
    (CONNECT_DATA=
    (SID=PLSExtProc)
    (PRESENTATION = RO)
    IFILE=/u01/app/oracle/product/10/db/network/admin/ERPPROD1_erpdb1/ERPPROD1_erpdb1_ifile.oraoracle@erpdb1 $
    oracle@erpdb1 $
    =======
    Node2 tnsnames.ora
    =======
    oracle@erpdb2 $ cat tnsnames.ora
    # This file is automatically generated by AutoConfig. It will be read and
    # overwritten. If you were instructed to edit this file, or if you are not
    # able to use the settings created by AutoConfig, refer to Metalink Note
    # 387859.1 for assistance.
    #$Header: NetServiceHandler.java 120.16.12000000.4 2008/04/28 06:39:48 schagant ship $
    ERPPROD=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb1-vip.domain.com)(PORT=1521))
    (CONNECT_DATA=
    (SERVICE_NAME=ERPPROD)
    (INSTANCE_NAME=ERPPROD1)
    ERPPROD1=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb1-vip.domain.com)(PORT=1521))
    (CONNECT_DATA=
    (SERVICE_NAME=ERPPROD)
    (INSTANCE_NAME=ERPPROD1)
    ERPPROD1_FO=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb1-vip.domain.com)(PORT=1521))
    (CONNECT_DATA=
    (SERVICE_NAME=ERPPROD)
    (INSTANCE_NAME=ERPPROD1)
    ERPPROD2=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb2-vip.domain.com)(PORT=1521))
    (CONNECT_DATA=
    (SERVICE_NAME=ERPPROD)
    (INSTANCE_NAME=ERPPROD2)
    ERPPROD2_FO=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb2-vip.domain.com)(PORT=1521))
    (CONNECT_DATA=
    (SERVICE_NAME=ERPPROD)
    (INSTANCE_NAME=ERPPROD2)
    ERPPROD_FO=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb1-vip.domain.com)(PORT=1521))
    (CONNECT_DATA=
    (SERVICE_NAME=ERPPROD)
    (INSTANCE_NAME=ERPPROD1)
    ERPPROD2_LOCAL=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb2-vip.domain.com)(PORT=1521))
    ERPPROD1_LOCAL=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb1-vip.domain.com)(PORT=1521))
    ERPPROD_BALANCE=
    (DESCRIPTION=
    (ADDRESS_LIST=
    (LOAD_BALANCE=YES)
    (FAILOVER=YES)
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb2-vip.domain.com)(PORT=1521))
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb1-vip.domain.com)(PORT=1521))
    (CONNECT_DATA=
    (SERVICE_NAME=ERPPROD)
    ERPPROD_REMOTE=
    (DESCRIPTION=
    (ADDRESS_LIST=
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb2-vip.domain.com)(PORT=1521))
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb1-vip.domain.com)(PORT=1521))
    LISTENER_ERPPROD2=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb2-vip.domain.com)(PORT=1521))
    LISTENERS_ERPPROD=
    (DESCRIPTION=
    (ADDRESS_LIST=
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb2-vip.domain.com)(PORT=1521))
    (ADDRESS=(PROTOCOL=tcp)(HOST=erpdb1-vip.domain.com)(PORT=1521))
    extproc_connection_data =
    (DESCRIPTION=
    (ADDRESS_LIST =
    (ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROCERPPROD2))
    (CONNECT_DATA=
    (SID=PLSExtProc)
    (PRESENTATION = RO)
    IFILE=/u01/app/oracle/product/10/db/network/admin/ERPPROD2_erpdb2/ERPPROD2_erpdb2_ifile.oraoracle@erpdb2 $
    =====
    Pl let us know how we can achive through autoconfig.
    Regards
    Vasu

    Vasu,
    The issue is, in our tnsnames.ora in both the nodes.What is the issue?
    I believe the following documents should be helpful in configuring your tnsnames.ora (and other files) with RAC implemented.
    Note: 388577.1 - Using Oracle 10g Release 2 Real Application Clusters and Automatic Storage Management with Oracle E-Business Suite Release 12
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=388577.1
    Note: 756050.1 - Troubleshooting Autoconfig issues with Oracle Applications RAC Databases
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=756050.1
    Regards,
    Hussein

  • Ipad not updating to ios7 correctly

    the iPad I tried to update to ios7 stopped somewhere in the middle, and it's been a few hours now and it still hasn't moved. is this normal? or do I have to somehow start the update over?

    You can try resetting your iPad by simultaneously pressing and holding the Home and Sleep/Wake buttons until you see the Apple Logo. This can take up to 15 seconds so be patient and don't release the buttons until the logo appears.
    Try again to see if the problem persists.

  • Why does TS Operator Interface Resource file not update panel labels correctly?

    There seems to be a problem with TS1.0.2 with the retrieval of Resource strings. If there are other INI files in the Components\User\Language\English directory other than the "OperatorInterfaceStrings.ini" file, the default operator interface seems to randomly use other files when attempting to get the resource strings to update my panel labels. The problem occured when I created a copy of the original "copy*.ini" file and my OI kept using the text values from the old file even after closing the OI and restarting it. Would like to know why.

    Hi Todd,
    In the \User\Language\English directory should be a file called CustomStrings.ini.
    Put your additional Resource strings in this file and keep your default ini files unaltered in the \NI\.. folder.
    Follow the structure as per the default inis and as per the user manual.
    This should sort your problem out.
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • Time machine not updating all files correctly.

    I went to recover a file today from time machine, and upon recovering it found out that it hasn't been backed up for over 2 months. This is a little concerning since it appears that all is going well.
    Does anyone know how to fix this or a way to trouble shoot this.
    Thanks

    The only thing that I have in the excluded list is the external drive that the server is backing up to.
    KM

  • Lync 2013 Photos will not update from AD

    I recently joined a company who has Lync 2013, Exchange 2010 and AD is at a 2003 functional level. We are experiencing issues where Lync photos are not updating from AD correctly. I have checked the pre-reqs;  Replicate this attribute to the Global
    Catalog is set for the ThumbnailPhoto attribute. We are also forcing photos from AD only (or no photo) by setting the following:
    "Set-CsClientPolicy -Identity PhotosControl -DisplayPhoto PhotosFromADOnly"  
    and finally we are setting the photo in ad using:
    "Import-RecipientDataProperty -Identity "Test User" -Picture -FileData ([Byte[]]$(Get-Content -Path "C:\pictures\testuser.jpg" -Encoding Byte -ReadCount 0))"
    The pictures being uploaded are under 10KB and update within Outlook but never updates on Lync. I have also manually tried running the "Update-CsAddressBook" command from Lync and waiting 24hours + but the photo will not update in Lync. I have
    also tried a 3rd party utility that grabs the attribute directly from each DC individually and each node is displaying the correct photo. Any Ideas?
    EDIT: I did some more testing and can say with quite a bit of certainty there is something not quite right on the Lync side of things. I started with the company over a month ago and although users can see my original photo that was added to AD, I myself
    do not even see it loaded in my client yet. I've completly dumped my local Lync cache but no change. Is there a specific Lync Server service that handles retrieving/pushing photos to the Lync clients?

    Thank you so much for your reply, it was very helpful in understanding how the service is suppose to work however I have still not been able to correct the issue.
    What I have found by using your article may have narrowed down the scope of the problem. I was able to find that on our Lync file store, the cached contacts/photos are being updated daily (as expected) and actually contain the correct photos. I confirmed
    this be using abserver.exe on the .lsabs file and then locating the contactID for a few users I know are not updating properly. Once I have their contact ID I simply look for their .photo file in the cached files, copy it out to a different location and change
    it to a .jpeg. To my surprise the photos are actually the correctly updated ones, so why are these no getting to the users/clients? I have gone through and deleted my local cache folder as well as the registry key HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Lync
    but unfortunately no change on my Client. I still see these users original photos.
    Another piece of the puzzle; We are also working on letting mobile devices connect to our Lync infrasructure as well. This is not fully functional yet however during my testing I did get Lync client for android running for a little while and low and behold
    the pictures are actually correct on my mobile device!! Surely this must give some kind of clue?
    We are planning to upgrade Exchange from 2010 to 2013 and I hoping that leveraging the HiDef photo capabilities for Lync 2013 with Exchange 2013 may fix this issue. What do you guys think?
    More info on the environment:
    4 main sites + remote users
    ~7DC's - 2003 DFL (1 at each site + a few at HQ)
    3 Lync Front end servers (2013) (All located at central HQ)
    2 Lync edge server (2013) (All located at central HQ)
    1 - 2010 Exchange server (Located at central HQ)
    2013 Lync Client version 15.0.4675.1000 MSO 15.0.4675.1002 64bit
    About 100 HP 4110 Lync Edition Desk phones
    Users's workstations are either Windows 7 Enterprise or Windows 8.1 Enterprise

  • E52 Date Display does not update and reflect the c...

    Right from day 1 the display date of my E52 does not update and reflect correct the correct date. Got the phone replaced once still the same issue. Called the customer service and they say there is no such problem with E52. They asked me to go to the repair center...(isnt that ridiculous to ask a customer of a new phone to do so?). I went to the repair center with a hope that they will replace it for me but all in vain. They also gave me a ridiculous answer that Nokia does not have a replacement policy...and I was like so is it Nokia's policy to sell broken and faulty mobiles? I was utterly dejected. The electronic store where I bought also refuse to replace because they think there is a problem and no matter I get it changed it will recur. I still do not have a solution as all my ways of getting this problem resolved are exhausted. Anyone has a solution or came across this issue which can be solved without repairing?

    Ok let me state my problem. There is a date display and at midnight the date should automatically change to the next date. However that does not happen. The dealer makes the following changes Control Panel>Settings>General>Date and time> Automatic time update> On and this does not solve the problem. Then I get the mobile replaced and that too has the same problem. after going through all permutations and combinations the problem persists. To quote the email from the Contact center for Nokia in HK this was what was suggested
    Menu→Ctrl. panel→Settings→General→Date and time→Time zone→please select Hong Kong→Automatic time update→please select Off
    However, if the situation still occurred by following the above settings, please be advised to bring your Nokia E52 along with the valid sales invoice to one of our Hong Kong Nokia Care Centres for the handset checking since we do not have such arrangement of replacing a new phone to you.
    Please help!!!

  • Table record is not updated correctly after navigate back from detail page

    I have 2 jspx pages one (page A) has a table displaying the employee record, another one (page B) is used to update the selected employee record. On page A, when selecting a record and clicking the 'Details' button I can be navigaed to pag B on which I can modify the record information in a form component. I have one table column 'teamName' which is binding to a LOV at VO layer and on pageB I am using <af:inputComboboxListOfValues> to show a editable LOV list for this attribute, when I input a new value here and save it, I can go back to page A but the team name for this record shows empty, by querying the database I do find the record updated successfully with the changed value. And when I reloaded the page the record can show the new team name value. Why it is not updated in the employee table when immediately navigating back from page B? I have set the table iterator refresh attribut to "always" but still failed. Can anyone help on this issue? Thanks!!
    BTW, for other columns (not LOV) they are ok, the table can show the changed value correctly.
    Edited by: user774592 on Jul 14, 2011 7:56 PM
    Edited by: user774592 on Jul 14, 2011 9:59 PM

    Thanks for reply!
    I did exactly the same as what you said. I d&d the data control Commit operation on page B to generate a 'Save' commandToolbarButton with the action attribute set to 'save' which is the from outcome for navigating back to page A. Is there any business logic I need to write here? Currently I have no.
    Note: In this case I used an editable LOV, I have a requirment that besides selecting a existing value from the lov, user can also input a new value in the LOV. When going back to page A, I do find the LOV list is updated to contain the new vaule. Just the record in the table shows an empty value instead of the new value. Still do not know why.

  • VO with bind variable defined in SQL is not updated correctly

    Hi Experts,
    I have one simple question here, could you please help answer? Thanks a lot!
    I have 2 pages, the first page displays an employee table, the second page shows some details related to the selected employee. When select one employee and click on the detail button I can be naviaged to the second page and see the details for the selected employee. The vo used on the second page uses a bind variable called "empId" which is binding to a pageFlowScope value 'adf.context.pageFlowScope.empId', and this pageFlowScope value will be populated to the selected empId in detail button actionListener at runtime).
    The question here is, now the first navigating is ok, the detail page can show the correct information for the employee selected on the employee page, but when navigating back and choosing another employee, and then click on the detail button again, the detail page is NOT updated, it still shows the first selected employee information. I do debug the actionListener in the backing bean and the second selected empId does get passed to pageFlowScope.empId, the bind variable in the VO should get the new value, right? but why the second page does not get updated (query using the new bind variable value)?
    Thanks!
    Edited by: user774592 on Jul 20, 2011 11:13 PM
    Edited by: user774592 on Jul 20, 2011 11:15 PM
    Edited by: user774592 on Jul 20, 2011 11:15 PM

    Hi Timo,
    Thanks for you response! The JDev version I used is 11.1.2.0.0. Actually, they are different VOs, the 1st page is EmployeeVO, the second page is ResourceSummaryVO which binds the empId variable in SQL. The ActionListener code is as below.
    public void viewResSummary(ActionEvent actionEvent) {
    // Add event code here...
    DCBindingContainer bc = (DCBindingContainer)this.getBindings();
    DCIteratorBinding empIteBinding =
    bc.findIteratorBinding("SEmployeeView1Iterator");
    //Get employee id from the current selected employee record
    Row currentRow = empIteBinding.getRowSetIterator().getCurrentRow();
    Long employeeId = ((DBSequence)currentRow.getAttribute("EmployeeId")).getValue();
    //Set employeeId as a pageFlowScope object which will be used in ResourceSummaryPage
    AdfFacesContext.getCurrentInstance().getPageFlowScope().put("empId", employeeId);
    empId is defined using Bind Variable Dialog and is referenced in ResourceSummaryVO on the second page. I used the EL expression to defined its value to adf.context.pageFlowScope.empId which will be populated using above code at runtime.
    Again, thanks for your help!

  • Podcast episodes not updating correctly in iTunes

    Hello,
    I am having a problem with my podcast episodes not updating correctly in iTunes.  The last 5 episodes I published appeared in iTunes at the bottom of the episode list, as if they were old episodes--i.e., they appear as if they were the first 5 episodes published.  They also do not have a date assigned to them as the rest of the episodes do.  They were not distributed to podcast subscribers, possibly because iTunes is not recognizing them as new episodes.
    Here is my podcast feed: http://ic.instantcustomer.com/instantcasts/feed/podcast/5047174b90f14efe542431c2 674b1bd9
    And here is the link to my podcast in iTunes: https://itunes.apple.com/us/podcast/small-business-marketing-minute/id896451432
    The problem began with last Wednesday's episode, which was Episode 30, and has continued ever since.  I did not do anything differently when I published that episode than I did when I published the previous 29 episodes, and those updated just fine, or at least seemed to as far as I could tell (i.e., they appeared correctly on iTunes, and appeared as a new episode for me as a podcast subscriber).  Also, after examining the rss feed, I could not see any difference between episodes 1-29 and episodes 30--34, at least as far as the way the feed was formatted.  So, I have no idea what triggered the problem, and no idea how to fix it.  If I can't resolve the issue then I think I'll have to abandon the podcast, since there's no point in publishing a podcast that doesn't distribute new episodes to subscribers. 
    If anyone can shed light on this problem for me, it would be most appreciated.     Thanks!
    -Kevin

    As you say, in the Store the latest episodes don't show a publishing date. When subscribing in iTunes, none of the episodes show a publishing date, and they are listed in the order they appear in the feed.
    In the feed, none of your episodes has a 'pubDate' tag, which is where iTunes gets the date from. Since most of the episodes in the Store have a date, it looks as if originally your episodes had this tag, but that five episodes back you did something in whatever method you are using to create your feed which removed these tags: the Store is presumably getting the dates from its cache since the episodes haven't changed, but obviously doesn't have the dates for the last 5 episodes.

Maybe you are looking for

  • How do I create and send a zip file? I have Lion and I'm working in Word for mac

    To show you how little I know about any of this, I don't even know if this is the correct forum in which to ask this question. I'm a copywriter. I have a client in France. I have 15 word documents, 15 of the same documents in PDFs and a small Excel d

  • Burn Folder - What Is The Burn Folder's Proper Location?

    Good morning. This morning when I started up the computer, upon reaching the Desktop, the Burn Folder [ http://img161.imageshack.us/img161/7752/screencapturetb4.png ] was located on the Desktop. A family member who isn't here right now was using the

  • EJB Best Practives: Objects or Primitives?

    I'm trying to understand which is the better option when developing EJB's (CMP and BMP). It makes sense to keep the primary key an object, but will using primitives for other fields affect performance as such? Up until now I've been pretty much in a

  • Hide Report Column Conditionally

    Hi All, I have a report with 12 columns. I want to hide the particular report column if all the values in that particular column is 0 (Zero). Can you please help me in achieving the same? Thanks in advance. Thanks, SKJ

  • VPn Server issue

    Hello everybody. I have an issue making my VPN Server work. here is my situation: I have a router R1 with 2 ethernet interfaces interface N°1 : 192.168.1.1/24 interface N°2 : 192.168.2.1/24 the first interface is connected to the subnet to which some