Safari 5.1.7 local storage not always clearing upon reset

There are several threads through out this forum regarding cookies being accepted regardless of settings, but much of those seem to be fixed by one of the recent security updates (seperate from an actual Safari update), including fixed for me. But, have noticed that "local storage" items do not always clear out upon a reset of safari (all boxes checked). In fact, sometimes, it takes two or three resets to completely clear them out.  I have verified this behavior on several mac's running SL each yeilding the same.  I just wondered if anyone else has seen this, or has found a solution (or if this is expected behavoiur). Does this indicate a security threat within the browser?  I have used the feedback to Apple to report this.
I did find this explanation, however:
https://developer.apple.com/library/safari/#documentation/iphone/conceptual/safa rijsdatabaseguide/Name-ValueStorage/Name-ValueStorage.html

BDAqua,
Nope. It's very erratic. For example, just now I cycled several times between the inbox and the smart mailbox and even closed and re-opened. The inbox showed messages. Then I quit mail and re-opened, the inbox was empty. It took a couple more cycles of quit and re-open to get an inbox display. But as soon as I got it back on, and then closed or changed mailboxes, it disappeared when I went back to the inbox.
Hellofa way to run a railroad.
And just for reference, when I first had this issue last week under 10.6.8, I read several posts on this forum wherein other users had problems with the inbox display. Other than the smart mailbox "fix", I never did find a definitive solution or explanation as to why it is occuring.
John

Similar Messages

  • "error: thread-local storage not supported for this target"

    I have a program that uses the __thread specifier, to be run on a Solaris 9/UltraSprac.
    I am not able to compile it using gcc 3.4.4 or 4.0.4, it emits the msg "error: thread-local storage not supported for this target".
    xz@gamera% gcc -v -Wall -D_REENTRANT -c -o func_stack.o func_stack.c
    Reading specs from /opt/gcc/3.4.4/lib/gcc/sparc-sun-solaris2.8/3.4.4/specs
    Configured with: ../srcdir/configure --prefix=/opt/gcc/3.4.4 --disable-nls
    Thread model: posix
    gcc version 3.4.4
    /opt/gcc/3.4.4/libexec/gcc/sparc-sun-solaris2.8/3.4.4/cc1 -quiet -v -D_REENTRANT -DMESS func_stack.c -quiet -dumpbase func_stack.c -mcpu=v7 -auxbase-strip func_stack.o -Wall -version -o /var/tmp//cc0poHSN.s
    ignoring nonexistent directory "/usr/local/include"
    ignoring nonexistent directory "/opt/gcc/3.4.4/lib/gcc/sparc-sun-solaris2.8/3.4.4/../../../../sparc-sun-solaris2.8/include"
    #include "..." search starts here:
    #include <...> search starts here:
    /opt/gcc/3.4.4/include
    /opt/gcc/3.4.4/lib/gcc/sparc-sun-solaris2.8/3.4.4/include
    /usr/include
    End of search list.
    GNU C version 3.4.4 (sparc-sun-solaris2.8)
            compiled by GNU C version 3.4.4.
    GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
    func_stack.c:16: error: thread-local storage not supported for this target
    func_stack.c:17: error: thread-local storage not supported for this target
    func_stack.c:19: error: thread-local storage not supported for this target
    xs@gamera% gcc -v -D_REENTRANT  -c -o func_stack.o func_stack.c
    Using built-in specs.
    Target: sparc-sun-solaris2.9
    Configured with: /net/clpt-v490-0/export/data/bldmstr/20070711_mars_gcc/src/configure --prefix=/usr/sfw --enable-shared --with-system-zlib --enable-checking=release --disable-libmudflap --enable-languages=c,c++ --enable-version-specific-runtime-libs --with-cpu=v9 --with-ld=/usr/ccs/bin/ld --without-gnu-ld
    Thread model: posix
    gcc version 4.0.4 (gccfss)
    /pkg/gcc/4.0.4/bin/../libexec/gcc/sparc-sun-solaris2.9/4.0.4/cc1 -quiet -v -I. -iprefix /pkg/gcc/4.0.4/bin/../lib/gcc/sparc-sun-solaris2.9/4.0.4/ -D__sparcv8 -D_REENTRANT -DMESS func_stack.c -quiet -dumpbase func_stack.c -mcpu=v9 -auxbase-strip func_stack.o -version -m32 -o /tmp/ccjsdswh.s -r /tmp/cc2w4ZRo.ir
    ignoring nonexistent directory "/pkg/gcc/4.0.4/bin/../lib/gcc/sparc-sun-solaris2.9/4.0.4/../../../../sparc-sun-solaris2.9/include"
    ignoring nonexistent directory "/usr/local/include"
    ignoring nonexistent directory "/usr/sfw/lib/gcc/sparc-sun-solaris2.9/4.0.4/include"
    ignoring nonexistent directory "/usr/sfw/lib/../sparc-sun-solaris2.9/include"
    #include "..." search starts here:
    #include <...> search starts here:
    /pkg/gcc/4.0.4/bin/../lib/gcc/sparc-sun-solaris2.9/4.0.4/include
    /usr/sfw/include
    /usr/include
    End of search list.
    GNU C version 4.0.4 (gccfss) (sparc-sun-solaris2.9)
            compiled by GNU C version 4.0.4 (gccfss).
    GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
    func_stack.c:16: error: thread-local storage not supported for this target
    func_stack.c:17: error: thread-local storage not supported for this target
    func_stack.c:19: error: thread-local storage not supported for this targetJust as comparison, the corresponding output of compiling another file which does not have __thread declaration is as follows:
    xz@gamera% gcc -v -Wall -D_REENTRANT -c -o common.o common.c
    Reading specs from /opt/gcc/3.4.4/lib/gcc/sparc-sun-solaris2.8/3.4.4/specs
    Configured with: ../srcdir/configure --prefix=/opt/gcc/3.4.4 --disable-nls
    Thread model: posix
    gcc version 3.4.4
    /opt/gcc/3.4.4/libexec/gcc/sparc-sun-solaris2.8/3.4.4/cc1 -quiet -v -D_REENTRANT -DMESS common.c -quiet -dumpbase common.c -mcpu=v7 -auxbase-strip common.o -Wall -version -o /var/tmp//cc4VxrLz.s
    ignoring nonexistent directory "/usr/local/include"
    ignoring nonexistent directory "/opt/gcc/3.4.4/lib/gcc/sparc-sun-solaris2.8/3.4.4/../../../../sparc-sun-solaris2.8/include"
    #include "..." search starts here:
    #include <...> search starts here:
    /opt/gcc/3.4.4/include
    /opt/gcc/3.4.4/lib/gcc/sparc-sun-solaris2.8/3.4.4/include
    /usr/include
    End of search list.
    GNU C version 3.4.4 (sparc-sun-solaris2.8)
            compiled by GNU C version 3.4.4.
    GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
    /usr/ccs/bin/as -V -Qy -s -xarch=v8 -o common.o /var/tmp//cc4VxrLz.s
    /usr/ccs/bin/as: Sun WorkShop 6 update 2 Compiler Common 6.2 Solaris_9_CBE 2001/04/02Note that the last 2 lines seem to suggest that a Sun assembler is used as the back-end of gcc. I am not sure whether the failure to compile the first file (with __thread) was due to the incompatibility of this Sun assembler. In the first case, the error msg was emitted before these 2 lines are printed.
    I further read a post about gcc 3.3.3's inability to compile code that has __thread in it, on a HP-UX 11.11: http://forums12.itrc.hp.com/service/forums/questionanswer.do?admit=109447627+1216595175060+28353475&threadId=1148976 The conclusion seems to suggest that "the 2.17 GNU assembler did not support thread local storage" and gcc sees that and thus disallows TLS.
    If the assembler is the culprit, then does anyone know whether this "Sun WorkShop 6 update 2" assembler in my installation can work with TLS? And how come a Sun assembler becomes the back-end of gcc? I read that gas (the GNU assembler) is the default backend of gcc. (How) can one specify the assembler to be used for gcc?
    As an aside, I am able to compile my file on this same Solaris 9/UltraSparc platform using the Sun Studio 12 C Compiler:
    xz@gamera% cc -V -# -D_REENTRANT  -c -o func_stack.o func_stack.c
    cc: Sun C 5.9 SunOS_sparc Patch 124867-01 2007/07/12
    ### Note: NLSPATH = /pkg/SUNWspro/12/prod/bin/../lib/locale/%L/LC_MESSAGES/%N.cat:/pkg/SUNWspro/12/prod/bin/../../lib/locale/%L/LC_MESSAGES/%N.cat
    ###     command line files and options (expanded):
    ### -c -D_REENTRANT  -V func_stack.c -o func_stack.o
    /pkg/SUNWspro/12/prod/bin/acomp -xldscope=global -i func_stack.c -y-fbe -y/pkg/SUNWspro/12/prod/bin/fbe -y-xarch=generic -y-xmemalign=8i -y-o -yfunc_stack.o -y-verbose -y-xthreadvar=no%dynamic -y-comdat -xdbggen=no%stabs+dwarf2+usedonly -V -D_REENTRANT  -m32 -fparam_ir -Qy -D__SunOS_5_9 -D__SUNPRO_C=0x590 -D__SVR4 -D__sun -D__SunOS -D__unix -D__sparc -D__BUILTIN_VA_ARG_INCR -D__C99FEATURES__ -Xa -D__PRAGMA_REDEFINE_EXTNAME -Dunix -Dsun -Dsparc -D__RESTRICT -xc99=%all,no%lib -D__FLT_EVAL_METHOD__=0 -I/pkg/SUNWspro/12/prod/include/cc "-g/pkg/SUNWspro/12/prod/bin/cc -V -D_REENTRANT  -c -o func_stack.o " -fsimple=0 -D__SUN_PREFETCH -destination_ir=yabe
    acomp: Sun C 5.9 SunOS_sparc Patch 124867-01 2007/07/12Interestingly, the output no longer mentions the "/usr/ccs/bin/as: Sun WorkShop 6 update 2" assembler.

    Just as another comparison, I compiled a file without __thread on the Solaris 9/UltraSparc platform using gcc 4.0.4. Not surprisingly it worked. But I no longer see the mention of the Sun assembler as in the case of gcc 3.4.4. Nor did I see the mention of "GNU assembler" as in the case of gcc 4.0.4/Solaris 10/x86. Instead, I saw something called "iropt" and "cg". Does anyone know what they are?
    xz@gamera% gcc -v -Wall -D_REENTRANT -c -o common.o common.c
    Using built-in specs.
    Target: sparc-sun-solaris2.9
    Configured with: /net/clpt-v490-0/export/data/bldmstr/20070711_mars_gcc/src/configure --prefix=/usr/sfw --enable-shared --with-system-zlib --enable-checking=release --disable-libmudflap --enable-languages=c,c++ --enable-version-specific-runtime-libs --with-cpu=v9 --with-ld=/usr/ccs/bin/ld --without-gnu-ld
    Thread model: posix
    gcc version 4.0.4 (gccfss)
    /pkg/gcc/4.0.4/bin/../libexec/gcc/sparc-sun-solaris2.9/4.0.4/cc1 -quiet -v -iprefix /pkg/gcc/4.0.4/bin/../lib/gcc/sparc-sun-solaris2.9/4.0.4/ -D__sparcv8 -D_REENTRANT -DMESS common.c -quiet -dumpbase common.c -mcpu=v9 -auxbase-strip common.o -Wall -version -m32 -o /tmp/ccSGJIDD.s -r /tmp/ccKuJz76.ir
    ignoring nonexistent directory "/pkg/gcc/4.0.4/bin/../lib/gcc/sparc-sun-solaris2.9/4.0.4/../../../../sparc-sun-solaris2.9/include"
    ignoring nonexistent directory "/usr/local/include"
    ignoring nonexistent directory "/usr/sfw/lib/gcc/sparc-sun-solaris2.9/4.0.4/include"
    ignoring nonexistent directory "/usr/sfw/lib/../sparc-sun-solaris2.9/include"
    #include "..." search starts here:
    #include <...> search starts here:
    /pkg/gcc/4.0.4/bin/../lib/gcc/sparc-sun-solaris2.9/4.0.4/include
    /usr/sfw/include
    /usr/include
    End of search list.
    GNU C version 4.0.4 (gccfss) (sparc-sun-solaris2.9)
            compiled by GNU C version 4.0.4 (gccfss).
    GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
    /pkg/gcc/4.0.4/SUNW0scgfss/4.0.4/prod/bin/iropt -F -xarch=v8plus -xchip=generic -O1 -xvector=no -xbuiltin=%none -xcache=generic -Qy -h_gcc -o /tmp/ccUl4mVM.ircg /tmp/ccKuJz76.ir -N/dev/null -is /tmp/ccSGJIDD.s
    /pkg/gcc/4.0.4/SUNW0scgfss/4.0.4/prod/bin/cg -Qy -xarch=v8plus -xchip=generic -OO0 -T3 -Qiselect-C0 -Qrm:newregman:coalescing=0 -xcode=abs32 -xcache=generic -xmemalign=8i -il /pkg/gcc/4.0.4/bin/../lib/gcc/sparc-sun-solaris2.9/4.0.4//gccbuiltins.il -xvector=no -xthreadvar=no%dynamic -xbuiltin=%none -Qassembler-ounrefsym=0 -Qiselect-T0 -Qassembler-I -Qassembler-U -comdat -h_gcc -is /tmp/ccSGJIDD.s -ir /tmp/ccUl4mVM.ircg -oo common.o

  • Safari is running very slow.  I have cleared cache, reset safari, and put in new DNS 208.67.222.220 runs worse now.

    Safari is running very slow.  I have cleared cache, reset safari, and added DNS Servers 208.67.222.222.

    Mac Mini connected directly to modem by ethernet cable.  Ipad loads same web pages much faster.  Again thanks for help.
    Hardware Information:
              Mac mini (Mid 2010)
              Mac mini - model: Macmini4,1
              1 2.4 GHz Intel Core 2 Duo CPU: 2 cores
              2 GB RAM
    Video Information:
              NVIDIA GeForce 320M - VRAM: 256 MB
    Startup Items:
              HP Trap Monitor - Path: /Library/StartupItems/HP Trap Monitor
    System Software:
              Mac OS X 10.6.8 (10K549) - Uptime: 0 days 3:59:25
    Disk Information:
              Hitachi HTS545032B9SA02 disk0 : (298.09 GB)
                        (null) (disk0s1) <not mounted>: 200 MB
                        Macintosh HD (disk0s2) /: 297.77 GB (280.4 GB free)
              HL-DT-STDVDRW  GA32N 
    USB Information:
              Apple, Inc. Keyboard Hub
                        Apple, Inc Apple Keyboard
              HP Photosmart D110 series
              Logitech USB Receiver
              Apple Inc. BRCM2070 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Computer, Inc. IR Receiver
    FireWire Information:
    Thunderbolt Information:
    Kernel Extensions:
    Problem System Launch Daemons:
              [failed] com.apple.suhelperd.plist
              [not loaded] org.samba.winbindd.plist
    Problem System Launch Agents:
              [failed] com.apple.Kerberos.renew.plist
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist
    Launch Agents:
              [loaded] com.hp.help.tocgenerator.plist
    User Launch Agents:
    User Login Items:
              iTunesHelper
              HP Product Research
              HPEventHandler
    3rd Party Preference Panes:
              Flash Player
    Internet Plug-ins:
              Flash Player.plugin
              FlashPlayer-10.6.plugin
              iPhotoPhotocast.plugin
              JavaAppletPlugin.plugin
              QuickTime Plugin.plugin
              Silverlight.plugin
    User Internet Plug-ins:
    Bad Fonts:
              None
    Top Processes by CPU:
                   4%          EtreCheck
                   4%          Safari
                   3%          WindowServer
                   2%          syslogd
                   1%          fontd
                   1%          activitymonitord
                   0%          Activity Monitor
                   0%          hpdot4d
                   0%          mds
                   0%          mdworker
    Top Processes by Memory:
              221 MB             WebProcess
              85 MB              Safari
              51 MB              WindowServer
              51 MB              Mail
              37 MB              Finder
              31 MB              mds
              27 MB              coreservicesd
              23 MB              HPEventHandler
              16 MB              HPIO Trap Monitor
              16 MB              mdworker
    Virtual Memory Statistics
              619 MB             Free RAM
              755 MB             Active RAM
              233 MB             Inactive RAM
              185 MB             Wired RAM
              200 MB             Page-ins
              0 B                Page-outs

  • Local storage not available

    Hello,
    I am trying to create a non-clustered server pool with a single VM server 3.1.1, using Manager also at 3.1.1.
    So far I've created a Server Pool and added the discovered server to this pool.
    The next step would be to create a repository on this server by going to Repositories tab, add a repository and click the "physical disk" radio button. At this point I am able to select the desired Server Pool.
    However, I don't see any available disks to choose as the repository - only blank combo boxes:
    http://d.pr/i/4eYY
    http://d.pr/i/T0G3
    This looks to me like a wrong window, since the label is for a san server and not a physical disk array or something along those lines.
    The internal server disks are arranged in a raid configuration and a single partition.
    I can't figure out what I'm missing. Please advise.

    >
    What make/model is your hardware, also what RAID controller?
    HP DL380/5's have known issues because Oracle uses an unsupported driver.
    >
    Its a proliant ml150 g6 server, with a P410i Smart Array Controller.
    The controller is the same as mentioned in note 1373817.1, which is probably what you are looking at as well. I've experimented with that solution with no positive results yet.
    >
    To see local storage to the VM the disk must be empty. You can not make one large partition on your raid array and use that same partition for your VM installation... and then expect to see the free space available to be used for a repo.
    Check out page 49 of the user guide
    As long as no partition and data are present the device will be detected as a raw disk. The choice is yours
    to use the local disks either to provision logical storage volumes as disks for virtual machines or to install a
    storage repository. If you place a storage repository on the local disk, an OCFS2 file system is installed.
    You will have to break up your RAID volume into multiple LUNS. You should then be able to see the unused LUNS. I've personally never done this but I do have some SSD drives I use for extending database cache. I can see these drives just fine locally. The key is there can't be a file system on the disks. Oracle VM expects a raw device.
    >
    Oh, I shouldn't have said a single partition, as far as partitions go, it's the default layout: /, /boot, swap and free space (it's a single drive as far as RAID goes). Can that work?
    Thanks for that info, I might have to reconfigure the RAID as you suggest, I wasn't aware that it must be a raw device, that brings much valued insight :-) Although I should have expected this since VM 2.1 probably works in a similar way, I just never used the VM Manager and didn't study repos.py closely.

  • Adobe flash player settings for local storage not available on menu.

    The right-click menu for Flash Player does not show the icon for local storage and I can't save online games. Only settings for 'display', 'microphone', and 'camera' show.

    The root cause is that the anti-clickjacking logic in our dialog is throwing a false positive (it thinks the dialog is obscured or otherwise tampered with).  This happens a lot with videos when pixels are moving behind the dialog.
    The easiest way to solve this is to just allow local shared objects.
    Go to Control Panel > Flash Player > Storage and select Allow sites to store information on this computer.

  • V2V - Hyper-V 2012R2 / SCVMM 2012R2- ESX to HV - Local storage not recognised in conversion wizard?

    Hi,
    I am in the final stages of testing for our move from VMWare to Hyper-V.  I am currently testing migrations of VMWare VMs to Hyper-V.  I've connected SCVMM to the vCentre server and attached to the ESX hosts so I can see all the VMs in the
    VMM console. 
    My Hyper-V servers are running in a failover cluster and have shared storage as well as local storage for less important VMs.  When I run the Convert VM Wizard I can't see the local storage listed when selecting a storage location for the newly converted
    VM.  It appears that VMM assumes that the VMWare VM is high availability and thus only shows me the shared clustered drives.  Its not HA in VMWare. although the ESX host is a enterprise version.  This theory is born out when I've converted a
    VWMare VM to Hyper-V I click on the migrate button to move it to the local storage in the new target server location screen I get a tick box, that is ticked, showing the VM is HA.  When I deselect it I can then select local storage and migrate the
    VM over.
    Is there any way of stopping VMM pre-setting the VMWare VMs as HA so I can select the local storage in the conversion wizard?
    Any help gratefully received.
    Rob

    Hi Simar
    Thanks for the advice, I've now got the VM back in a stable state and running HA.
    Just to finish off the thread for future I did the following
    - Shutdown the VM
    - Remove the VM from the Failover Cluster Manager (as you say this did leave the VM configuration intact)
    - I was unable to import the VM as per your instructions so I copied the VHD to another folder on the local storage and took a note of the VM configuration.
    - Deleted the VM from VMM so this removed all the configuration details/old VHD.
    - Built a new VM using the details I saved from the point above
    - Copied the VHD into the new VMs folder and attached it to the VM.
    - Started it up and reconfigured networking
    - Use VMM to make the VM HA.
    I believe I have found the reason for the initial error, it appears there was a empty folder in the Snapshot folder, probably from an old Checkpoint that hadn't cleaned up properly when it was deleted.
    The system is up and running now so thanks again for the advice.
    Rob

  • Labview local variables not always renamed

    Hello,
    I might be missing something, but it seems that sometimes the local variables in my VIs are not always updated when I rename the Front Panel control associated with it.
    I have an example where I right click on the terminal of a control named "RxConfigTest", create local variable.  The local variable that gets created is named with the old name "RxConfig1".
    Have you ever seen that behavior?  I'm using LV 7.1.1.
    Thank you,
    Mathieu

    Hi,
    Thanks for the response, but I was actually displaying the label.  I know that this sounds like a newbie question, but I'm not.
    I noticed that by closing and re-openning my VI after the rename, the variables were updated.  It looks like a refresh that was not done.  Even the local variable in the block diagram was not resized to the new text of the variable name.
    I'll try to grab a screen shot if it happens again.

  • Clear cached web content does not always clear to 0kb, only since upgrading to vers.14, and now 15

    Cache would always clear to 0kb before, now it does or not depending
    on which websites are visited. What has been changed?

    Are all tabs closed when you try to clear the cache?<br />
    Firefox may be keeping the thumbnails from the about:newtab page that are currently stored in the cache.

  • Changes in local storage not reflecting in the mail client

    I am trying to make changes to INBOX file in the local machine in the profile folder and trying to see if the changes are seen when the thunderbird mail client is open. But I am not seeing any changes. Where the same with SENT file is seen.
    What could be the reason? what prevents me from seeing those changes?
    I am using Ubuntu 13.10 OS, Thunderbird 26.4.0 version. Mail settings are POP.

    HI Aditya ,
    This is reference to the question you have been answering on SDN. I hope I do not cause inconvenience to ou by emailing you on your personal email id.
    Please be so kind as to help me out .Your guidance seemed to be leading to a solution.
    According to your last reply I have confirmed the following
    1. Select Layout is not present in Test/ Integration environemtn
    2. Codes in all includes of program between DEV and Test environments are exact
    3. Here is the code I have used in displaying my ALV
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          I_CALLBACK_PROGRAM     = GV_REPID
          IT_FIELDCAT            = LT_FIELDCAT
          I_CALLBACK_TOP_OF_PAGE = 'TOP-OF-PAGE'
         I_SAVE                 = 'A'
        TABLES
          T_OUTTAB               = I_OUTPUT[]
        EXCEPTIONS
          PROGRAM_ERROR          = 1
          OTHERS                 = 2.
    Can you guide me as to where the default layout is being set up ?
    Thank you so much for your help.
    Regards,
    Inesha

  • Local Storage settings are cleared when workstation is restarted

    When setting the permission to store information on the local computer, the settings are working (it only asks the LSO question once), bu then is being cleared after the workstation is restarted, even though the server is entered into the Website Storage Settings at the url below.  When the workstation is restarted, the server no longer exists in the list.  Does anyone possibly know why it is being removed when restarting?
    http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager07.htm l

    I can think of couple of things
    1, if customer is using private mode, exiting browser will clear out  everything.
          This point may not be valid if it happens only after server restart.
    2, settings are stored under flash directory structure, ( not browser cache directory structure), so if for any reason
        Server restart deletes this directory , flash will create directory again,  when visiting  sites.
    It will be interesting to see directories before restart ( if it is there) and after restart if it is there or not.
      directory location for flash settings storage  will be different depending on OS platform.
    3, the settings link  in this email is older version of help .   New settings is different .
        So if there is a mix up in usage, I cannot say anything.
    I can take a look at it if I know more about system, browser , flash plugin etc.

  • Not allowing clearing of resetting of pre migration cleared document

    HI all SAP Experts
    We have recently migrated to new GL .
    One entry for outstanding liabilty was posted  in March 10 & same entry was cleared in Current year ( i.e April 10 - March 11) & cleared entry was again resetted in current year.
    However the same was not reflected in FBL3N ( in open item selection ) neither in F-03 after resetted.
    In table BSAS , the same was reflected as cleared item still after resetting of cleared documents & also in table BSIS not showing.
    Kindly help me on this so that system can allow clearing of document of after resetting of cleared documents.
    Regards
    Basant

    HI
    I have checked the includes & programme and all correction has been already made
    I am enclosing the snapshot for this
    *------- Vorabpruefung für normale Belege -
      if *bkpf-bstat = space.
        loop at ybseg.
          bseg = ybseg.
          if  bseg-augbl    ne space
          and bseg-augbl(4) ne 'ALE-'
          and bvtst         ne char_a
        not for credit card payments                           "Note610158
         and not ( gd_ebpp_active = 'X'                         "Note610158
               and *bkpf-tcode = 'F110'                         "Note610158
               and bseg-koart = 'S'                             "Note610158
               and bseg-rfzei <> space ).                       "Note610158
            message e308.
          endif.
    *------- Pruefen, ob Storno erlaubt ist -
            if  bseg-augbl    ne space
            and bseg-augbl(4) ne 'ALE-'
            and bvtst         ne char_a.
            not for credit card payments                       "Note610158
              if   gd_ebpp_active = 'X'                         "Note610158
               and *bkpf-tcode = 'F110'                         "Note610158
               and bseg-koart = 'S'                             "Note610158
               and bseg-rfzei <> space.                         "Note610158
                clear: bseg-augbl,                              "Note610158
                       bseg-augdt,                              "Note610158
    for 470         bseg-auggj,                                "Note610158
                       bseg-augcp.                              "Note610158
              else.                                             "Note610158
                message e308.
              endif.                                            "Note610158
            endif.
    Aufbauen Ausziffer-Tabelle XAUSZ1 -
           SKV-Buchung wird im Verbucher automatisch ausgeziffert
           sofern sie aus der Rechnung (*BKPF_XNETB = X) stammt
            if bseg-xopvw     eq char_x
            and bseg-augbl(4) ne 'ALE-'
            not for credit card payments                       "Note610158
             and not ( gd_ebpp_active = 'X'                     "Note610158
                   and *bkpf-tcode = 'F110'                     "Note610158
                   and bseg-koart = 'S'                         "Note610158
                   and bseg-rfzei <> space ).                   "Note610158
              bseg-augbl = char_*.
              bseg-agzei = bseg-buzei.
              if bseg-buzid  ne char_z
              or *bkpf-xnetb eq space.
                xausz1-belnr = *bkpf-belnr.
                xausz1-gjahr = *bkpf-gjahr.
                xausz1-bukrs = *bkpf-bukrs.
                xausz1-buzei =  bseg-buzei.
                xausz1-wskto = bseg-wskto.
                xausz1-sknto = bseg-sknto.
                xausz1-sknt2 = bseg-sknt2.
                xausz1-sknt3 = bseg-sknt3.
                append xausz1.
              endif.
            endif.
    Whatever the correction is required in 28654 has been already done.
    What should i do now.
    Regards
    Basant

  • Buttons not appearing clearly upon output

    I have created menu buttons (with highlight) that in turn link to the relevant movie file.
    When outputted to DVD these buttons appear blurry and unclear.
    Why are the buttons not appearing in a crisp, clean state when I have outputted them?

    Which version of DVD SP are you using? Are you
    making these over video menus? What size and color
    of fonts/background? They can all play into what is
    happening, usually 20pt + sans serif works best, but
    the text in DVD SP can often leave things to be
    desired from time to time - where are you previewing
    the buttons?
    Thanks for your reply.
    The vesrion Im using is DV Studio Pro 3. The up state color of the buttons are black and over is red. The font size is 13pt Arial Black.
    I have outputted the DVD itself, so I view it through TV.
    Am I on the right track?
    Thanks again.

  • Safari fonts not as clear as Firefox on Windows

    I've been using my Aluminum 15" powerbook for about a year. I keep getting annoyed that my 2 year older Compaq Windows laptop is clearer when viewing web pages in Firefox but in Safari the same web pages are not as clear. Take dpreview, the camera website. On Windows Firefox all the writing is very clear. On my powerbook using Safari everything seems to be in Bold.
    Is their anyway I can fix this so I can have my Safari using same Fonts as Windows perhaps? Is the Powerbook display not good?

    This is a feature of Tiger of think. Font weight is much heavier than previous versions of OSX. The dpreview site has a background colour which unfortunately when combined with OSX font weight causes font edges to blur.

  • How does one clear the Local Storage in Safari 6.0?

    I used to be able to delete the cookies in the Local Stiorage folder.  But the old path ~/Library/Safari/LocalStorage doesn't exist anymore since the system got updated to OSX 10.7.4 and Safari 6.0.  And as ever emptying the cache via the develop drop-down menue doesn't clear the cookies stored in Local Storage.
    I am totally at loss, where these cookies are hiding in my system but really want to get rid of them.  Firefox is an alternative but it is tiresome to use this browser as it keeps on blocking things I want to do or asking me a little bit too frequently for permission etc.  Can anyone explain the Local Storage issue to me please?

    hpr3, thanks for your response but you didn't read my post correctly.  I am not referring to 'normal' cookies.  The ones which are stored under the section Local Storage are special and survive the general 'clear all website data' action via Safari's preferences.  I know several people have pointed this out before me.  I was able to clear these cookies in the Local Storage folder before but it was always quite a lot of 'clicking through' to be done and one had to go through the Finder via user/library/safari/local storage etc.  I recall there was a folder involved named Macromedia as well.   But with the upgrade of the operating system and Safari this path doesn't exist anymore.
    If you clear the cookies via preferences, then click out of Privacy and back in, you might notice that even though you haven't used your web browser at all, there are still cookies which magically re-appear. And they are tagged as Local Storage.
    Now, can anyone else come up with a helpful answer?

  • What is "local storage" in Safari 5.1.7

    Why is it in Safari 5.1.7 that it always takes a couple of reset Safari's to actually clear out local storage? Everything else always clears out, just local storage will pop back in ...

    Might be the security fixes >  Safari 5.1.10 for Snow Leopard

Maybe you are looking for

  • Nokia 808 camera lens not working - help

    Hi, my Nokia 808 camera shutter is not opening or closing. It is stuck in a half opened state. M is there anything I can do, before sending in for repairs, to try and reset the shutter? I can't take any photos as they end up over exposed! Thanks

  • Images and Effects not printing right in ID CS2

    I'll try to describe my problem to the best of my ability. I am using CS2 and In Design for some brochures. Basically I created some background art in Illustrator (it's just a wave yellow in color) and on the rest of the page is text and some images.

  • Can't select multiple speakers in iTunes 10.3.1

    Since updating to iTunes 10.3.1, I can no longer select multiple speakers (Airport Express, AppleTV) to stream music. Even though the checkbox looks clickable, it does not stay clicked. I have a 2x2.8 Ghz Quad-core Intel Xeon MacPro running 10.6.8.

  • ECC6 + XI issue

    Hello all,      I am in the process of integration ECC6 in XI landscape. Currently R/3 is already in XI's Landscape and everything is fine. The problem withe ECC6.0 is, no IDOCs can be seen in IDX on the XI system. After sending IDOCS in ECC6.0, BD87

  • Itunes shuts down after 2 sec. into import

    I start import and i-tunes shuts down (not the pc though). Have to restart i-tunes and then it will import. Sometimes happens 2 or 3 times on a cd. Anyone have this problem that could help? Gateway   Windows XP Pro