Library filter presets not working correctly across catalogs

I am having a trouble with Library Filter Presets that are shared between catalogs.  I like to set up presets that filter on specific keywords.  For example, I have a preset called "Label - Project 365" which turns on the keyword metadata filter and searches for "Project 365".
All is fine and dandy from within the catalog in which I actually created the preset.  When I switch to the other catalog, though, the preset does not filter for the keyword "Project 365".  In fact, it turns on the keyword metadata filter but does not appear to select any of the keywords at all.  If I click on the proper keyword in the metadata filter (in this case, "Project 365") and update the preset, then it works fine on this "second" catalog... but as a result it will no longer work correctly in the original catalog.
Has anyone else come across this behavior?  Any pointers on how I might correct it?  Thank you for your time.

A bit more information if it helps.  When I look in the filter preset file itself, this is what I see.  I really don't know how to interpret everything here.  There is an entryt for "columnBrowserDesc" that contains an integer for "selections".  Perhaps this is how it is identifything the keyword of interest?  If that's the case, perhaps it may be the culprit.  (And if so, I've simply run into a limitation that I can't do much about.)
s = {
    id = "691866C7-0E43-45D3-9E89-1D2762BA6ADE",
    internalName = "Label - Project365",
    title = "Label - Publish 365",
    type = "LibraryFilter",
    value = {
        columnBrowserActive = true,
        columnBrowserDesc = {
                criteria = "keywordHierarchy",
                selections = {
                    291,
        customLabel = false,
        filtersActive = false,
        label1 = false,
        label2 = false,
        label3 = false,
        label4 = false,
        label5 = false,
        labelOp = "any",
        minRating = 0,
        noLabel = false,
        pick = "flagged",
        ratingOp = ">=",
        searchOp = "all",
        searchString = "Cemetery",
        searchStringActive = false,
        searchTarget = "all",
        whichCopies = "<nil>",
    version = 0,

Similar Messages

  • Library Filter Text  not working in LR2

    Hi,
    If i use the library filter for text and set it as "filename" and "contains" w/o entering any characters into the search bar I get 3 images, although I have it set to seach "All Photographs" in the catalog section.  Please see screenshot.
    If I enter any letter in the search bar, It says "No photos in selected item".
    Any thoughts?
    Thanks,
    Amanda

    Are you sure you don't have any space or any invisible character there in the search box?
    If it is empty, my guess is: corrupt catalog. Try creating a new catalog, import some test photos and check if search works fine.

  • Camera Raw Filter is not working correctly in Photoshop CC when applied to video layer

    With Photoshop CC, when editing a video and adding a "Camera Raw Filter" to some video layer, the effect will be applied only to one frame and not to the whole video layer.
    Should it not add that filter to the whole layer (e.g. all frames in that clip)?

    Either it's a bug or a limitation. Haven't yet tried this, so I can't tell you whether it works as it should or is acting up... I would however assume that within what one can expect it works as designed - ACR doesn't have a built-in timeline, so there would be nothing for the PS routines to request retrieval of frames from withing the SO.
    Mylenium

  • CSS not working correctly across browsers

    I have a page that im using CSS to assign a background image
    to a table
    row..
    In IE6 it works great..
    in all the other browsers we tested it is missing
    IE7
    Opera
    Firefox
    Safari
    Here is my CSS styling:
    background-image:url('images/Menu-Bar.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    width:950px;
    height:59px;
    ASP, SQL2005, DW8 VBScript, Visual Studio 2005, Visual Studio
    2008

    Here is the complete code for the simple page we are working
    with.. The
    background image that is assigned to the table (
    live-area.gif ) shows fine
    for all browsers... but the image for the <tr> tage
    only shows up for IE6
    and not for any other browser..
    <form id="form1" runat="server">
    <div style="text-align: center">
    <br />
    <img alt="" src="images/Logo.png" style="width: 400px;
    height: 108px;
    text-align: center;" />
    <table class="menu" width="100%"
    style="background-position: center;
    background-image: url('images/Live-Area.gif');
    background-repeat: no-repeat;
    background-attachment: fixed; background-color: #FF9933;
    width:973px;
    height:653px;"
    align="center">
    <tr height="15%" width="100%"
    style="background-image:url('images/Menu-Bar.png');
    background-repeat:
    no-repeat; background-attachment: fixed; width :950px;
    height:59px;">
    <td>
    <table width="90%" align="center">
    <tr>
    <td>
    <CMS:DhtmlMenu ID="DhtmlMenu1" runat="server"
    DefaultMenuID="8"
    Stylesheet="" BackColor="Transparent"
    MenuHoverOverColor="Transparent"
    SubMenuBackColor="White" SubMenuHoverOverColor="#FFB618"
    BackImageUrl="~/images/blank.gif" />
    </td>
    <td>
    <CMS:DhtmlMenu ID="DhtmlMenu2" runat="server"
    DefaultMenuID="10"
    Stylesheet="" BackColor="Transparent"
    MenuHoverOverColor="Transparent"
    SubMenuBackColor="White" SubMenuHoverOverColor="#FFB618"
    BackImageUrl="~/images/blank.gif" />
    </td>
    <td>
    <CMS:DhtmlMenu ID="DhtmlMenu3" runat="server"
    DefaultMenuID="12"
    Stylesheet="" BackColor="Transparent"
    MenuHoverOverColor="Transparent"
    SubMenuBackColor="White" SubMenuHoverOverColor="#FFB618"
    BackImageUrl="~/images/blank.gif" />
    </td>
    <td>
    <CMS:DhtmlMenu ID="DhtmlMenu4" runat="server"
    DefaultMenuID="14"
    Stylesheet="" BackColor="Transparent"
    MenuHoverOverColor="Transparent"
    SubMenuBackColor="White" SubMenuHoverOverColor="#FFB618"
    BackImageUrl="~/images/blank.gif" />
    </td>
    <td>
    <CMS:DhtmlMenu ID="DhtmlMenu5" runat="server"
    DefaultMenuID="16"
    Stylesheet="" BackColor="Transparent"
    MenuHoverOverColor="Transparent"
    SubMenuBackColor="White" SubMenuHoverOverColor="#FFB618"
    BackImageUrl="~/images/blank.gif" />
    </td>
    </tr>
    </table>
    </td>
    </tr>
    <tr height="85%" valign="top">
    <td colspan="5">
    <asp:ContentPlaceHolder id="ContentPlaceHolder1"
    runat="server">
    <CMS:ContentBlock ID="ContentBlock1" runat="server" />
    </asp:ContentPlaceHolder></td>
    </tr>
    </table>
    </div>
    <CMS:Login ID="Login1" runat="server" />
    </form>
    ASP, SQL2005, DW8 VBScript, Visual Studio 2005, Visual Studio
    2008
    "John Waller" <[email protected]>
    wrote in message
    news:[email protected]...
    > It's very hard to diagnose without seeing what you're
    seeing or at least
    > all the code (context is important - posting code
    snippets in isolation is
    > not overly helpful for accurate diagnosis).
    >
    > We have to take stabs in the dark and offer guesses like
    Nadia is trying
    > to do.
    >
    > --
    > Regards
    >
    > John Waller

  • Library find feature not working correctly?

    Greetings,
    My library contains images with filenames such as: CRW_1893.CRW, CRW_1894.CRW, CRW_1895.CRW, IMG_2059.JPG, IMG_2075.JPG.
    If I use the Find feature, search by Filename, specify Containing, and key in 1893 in the search field - an image will be found.
    If I do the same and key in W_1893 - nothing is found.
    If I do the same and key in _1893 - nothing is found.
    Is this a bug, is there a problem with underscore character in filenames, or am I missing something?
    Thanks so much,
    Bob
    PS: PC version, Windows Vista, 2GB RAM, 30K+ image library

    Underscore is used by LR for something else. They are trying to rectify this. Don't know when.
    Don
    Don Ricklin, MacBook 1.83Ghz Duo 2 Core running 10.4.8 & Win XP, Pentax *ist D
    http://donricklin.blogspot.com/

  • Is prompted filter not working correctly with calculated items

    Hello,
    I am working on OBIEE 11.1.1.3 and having problem problem linking 2 analisys with action link
    The test case is:
    I have 2 attribute columns on a dimension
    1. Conto 1 Code
    2. Conto 1 Dsc (in RPD i set up the property Descritor ID of -> Conto 1 Code)
    3. Conto 2 Code
    4. Conto 2 Dsc (in RPD i set up the property Descritor ID of -> Conto 2 Code)
    5. Conto Detail
    and 1 measure on the fact table
    1. Revenue (defined on RPD as simple sum)
    On presentation layer i have the analisys:
    1.
    The First one using as Criteria: Conto 1 Dsc | Conto 2 Dsc | Revenue
    The layout is a table with sub-total on Conto 1 Dsc
    On Revenue i created an action link to the second analisys containing
    2.
    Criteria: Conto 1 Dsc | Conto 2 Dsc | Conto Detail | Revenue
    Filters: Conto 1 Code (is prompted) | Conto 2 Code (is prompted)
    This pair of analisys are working fine.
    Then i created a second pair of analisys as:
    1.
    Criteria: Conto 2 Dsc | Revenue
    Using Calculated group \ Items i created a numerous set of sub-totals
    On Revenue i created an action link to the second analisys containing
    2.
    Criteria: Conto 2 Dsc | Conto Detail | Revenue
    Filters: Conto 2 Code (is prompted)
    This pair of analisys are not working correctly. When i drill from first analisys to second one the Conto 2 Code filter is not used.
    Replacing in the second analisys Conto 2 Code (is prompted) with Conto 2 Dsc (is prompted) a filter is being generated on the drill but it's using the Conto 2 Code value and the analisys ends with no results.
    Thanks,
    Jonni

    Try adding Conto 2 code to the first analysis and keep the filter on the second analysis as Conto 2 code is prompted.
    -Amith.

  • 10bit (30Bit) Color & Liquify Filter (both not working at the Same Time)

    Hi,
    i've a Problem with Photoshop CS6 & CC (Actual)
    On CS6, 10 bit (30bit) Color is working, but if i want to use the Liquify filter Pucker & Bloat are not working correctly while 10 bit (30bit) enabled, they are reakting too fast, changing setting does not help.
    On CC with 10bit (30bit Color) enabled it's even worse, the whole Picture inside the Liquify tool is muddy only in Blue Pixels.
    I'm using a Amd FirePro W8100 with the Actual WHQL driver, the Certifyed driver is worse too.
    Any suggestion?
    Adobe Photoshop Version: 2014.2.2 20141204.r.310 2014/12/04:23:59:59 CL 994532  x64
    Betriebssystem: Windows 8.1 64-Bit
    Version: 6.3
    Systemarchitektur: Intel CPU-Familie:6, Modell:13, Stepping:7mit MMX, SSE (ganze Zahl), SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, AVX, Hyper-Threading
    Physischer Prozessor: 6
    Logischer Prozessor: 12
    Prozessor-Taktfrequenz: 3192 MHz
    Eingebauter Speicher: 32708 MB
    Freier Speicher: 25824 MB
    Für Photoshop verfügbarer Arbeitsspeicher: 29581 MB
    Von Photoshop verwendeter Arbeitsspeicher: 86 %
    3D-Mehrton-Drucken: Deaktiviert.
    Windows 2x UI: Deaktiviert.
    Fernlicht: Aktiviert.
    Bildkachelgröße: 1024 KB
    Bildcache: 8
    Schriftvorschau: Mittel
    TextComposer: Lateinisch
    Anzeige: 1
    Anzeigebegrenzungen: oben= 0, links= 0, unten= 1200, rechts= 1920
    Mit OpenGL zeichnen: Aktiviert.
    OpenGL – alte GPUs zulassen: Nicht erkannt.
    OpenGL-Zeichnungsmodus: Erweitert
    OpenGL – normalen Modus zulassen: Wahr.
    OpenGL – erweiterten Modus zulassen: Wahr.
    AIFCoreInitialized=1
    AIFOGLInitialized=1
    OGLContextCreated=1
    NumGLGPUs=1
    NumCLGPUs=1
    glgpu[0].GLVersion="3.0"
    glgpu[0].GLMemoryMB=4095
    glgpu[0].GLName="AMD FirePro W8100 (FireGL V)"
    glgpu[0].GLVendor="ATI Technologies Inc."
    glgpu[0].GLVendorID=4098
    glgpu[0].GLDriverVersion="14.301.1019.0"
    glgpu[0].GLRectTextureSize=16384
    glgpu[0].GLRenderer="AMD FirePro W8100 (FireGL V)"
    glgpu[0].GLRendererID=26529
    glgpu[0].HasGLNPOTSupport=1
    glgpu[0].GLDriver="aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atium d64.dll,atidxx64.dll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm6 4.dll"
    glgpu[0].GLDriverDate="20150124000000.000000-000"
    glgpu[0].CanCompileProgramGLSL=1
    glgpu[0].GLFrameBufferOK=1
    glgpu[0].glGetString[GL_SHADING_LANGUAGE_VERSION]="4.40"
    glgpu[0].glGetProgramivARB[GL_FRAGMENT_PROGRAM_ARB][GL_MAX_PROGRAM_INSTRUCTIONS_ARB]=[2147 483647]
    glgpu[0].glGetIntegerv[GL_MAX_TEXTURE_UNITS]=[8]
    glgpu[0].glGetIntegerv[GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS]=[192]
    glgpu[0].glGetIntegerv[GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS]=[32]
    glgpu[0].glGetIntegerv[GL_MAX_TEXTURE_IMAGE_UNITS]=[32]
    glgpu[0].glGetIntegerv[GL_MAX_DRAW_BUFFERS]=[8]
    glgpu[0].glGetIntegerv[GL_MAX_VERTEX_UNIFORM_COMPONENTS]=[16384]
    glgpu[0].glGetIntegerv[GL_MAX_FRAGMENT_UNIFORM_COMPONENTS]=[16384]
    glgpu[0].glGetIntegerv[GL_MAX_VARYING_FLOATS]=[128]
    glgpu[0].glGetIntegerv[GL_MAX_VERTEX_ATTRIBS]=[16]
    glgpu[0].extension[AIF::OGL::GL_ARB_VERTEX_PROGRAM]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_PROGRAM]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_VERTEX_SHADER]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_SHADER]=1
    glgpu[0].extension[AIF::OGL::GL_EXT_FRAMEBUFFER_OBJECT]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_RECTANGLE]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_FLOAT]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_OCCLUSION_QUERY]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_VERTEX_BUFFER_OBJECT]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_SHADER_TEXTURE_LOD]=1
    clgpu[0].CLPlatformVersion="1.2 AMD-APP (1573.4)"
    clgpu[0].CLDeviceVersion="1.2 AMD-APP (1573.4)"
    clgpu[0].CLMemoryMB=8192
    clgpu[0].CLName="Hawaii"
    clgpu[0].CLVendor="Advanced Micro Devices, Inc."
    clgpu[0].CLVendorID=4098
    clgpu[0].CLDriverVersion="1573.4 (VM)"
    clgpu[0].CUDASupported=0
    clgpu[0].CLBandwidth=2.58141e+011
    clgpu[0].CLCompute=1904.16
    Lizenztyp: Abonnement
    Seriennummer: 96040229042061122766
    Anwendungsordner: E:\Creative Cloud Adobe\Adobe Photoshop CC 2014\
    Pfad für temporäre Dateien: C:\Users\TP-02\AppData\Local\Temp\
    Der virtuelle Speicher von Photoshop hat asynchronen E/A aktiviert
    Arbeitsvolume(s):
    H:\, 214,6 GB, 119,8 GB frei
    F:\, 214,6 GB, 153,5 GB frei
    Ordner für erforderliche Zusatzmodule: E:\Creative Cloud Adobe\Adobe Photoshop CC 2014\Required\Plug-Ins\
    Primärer Zusatzmodul-Ordner: E:\Creative Cloud Adobe\Adobe Photoshop CC 2014\Plug-ins\
    Installierte Komponenten
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2014/08/12-23:42:09   79.557478   79.557478
       adbeape.dll   Adobe APE 2013/02/04-09:52:32   0.1160850   0.1160850
       AdbePM.dll   PatchMatch 2014/09/07-21:07:38   79.558079   79.558079
       AdobeLinguistic.dll   Adobe Linguisitc Library   8.0.0  
       AdobeOwl.dll   Adobe Owl   5.2.4  
       AdobePDFL.dll   PDFL 2014/08/18-15:13:12   79.512424   79.512424
       AdobePIP.dll   Adobe Product Improvement Program   7.2.1.3399  
       AdobeXMP.dll   Adobe XMP Core 2014/08/20-09:53:02   79.156797   79.156797
       AdobeXMPFiles.dll   Adobe XMP Files 2014/08/20-09:53:02   79.156797   79.156797
       AdobeXMPScript.dll   Adobe XMP Script 2014/08/20-09:53:02   79.156797   79.156797
       adobe_caps.dll   Adobe CAPS   8,0,0,13  
       AGM.dll   AGM 2014/08/12-23:42:09   79.557478   79.557478
       ahclient.dll    AdobeHelp Dynamic Link Library   1,8,0,31  
       amtlib.dll   AMTLib (64 Bit)   8.0.0.122212002 BuildVersion: 8.0; BuildDate: Wed Jul 30 2014 15:59:34)   1.000000
       ARE.dll   ARE 2014/08/12-23:42:09   79.557478   79.557478
       AXE8SharedExpat.dll   AXE8SharedExpat 2013/12/20-21:40:29   79.551013   79.551013
       AXEDOMCore.dll   AXEDOMCore 2013/12/20-21:40:29   79.551013   79.551013
       Bib.dll   BIB 2014/08/12-23:42:09   79.557478   79.557478
       BIBUtils.dll   BIBUtils 2014/08/12-23:42:09   79.557478   79.557478
       boost_date_time.dll   photoshopdva   8.0.0  
       boost_signals.dll   photoshopdva   8.0.0  
       boost_system.dll   photoshopdva   8.0.0  
       boost_threads.dll   photoshopdva   8.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.2.6.32411   2.2.6.32411
       CITThreading.dll   Adobe CITThreading   2.2.6.32411   2.2.6.32411
       CoolType.dll   CoolType 2014/08/12-23:42:09   79.557478   79.557478
       dvaaudiodevice.dll   photoshopdva   8.0.0  
       dvacore.dll   photoshopdva   8.0.0  
       dvamarshal.dll   photoshopdva   8.0.0  
       dvamediatypes.dll   photoshopdva   8.0.0  
       dvametadata.dll   photoshopdva   8.0.0  
       dvametadataapi.dll   photoshopdva   8.0.0  
       dvametadataui.dll   photoshopdva   8.0.0  
       dvaplayer.dll   photoshopdva   8.0.0  
       dvatransport.dll   photoshopdva   8.0.0  
       dvaui.dll   photoshopdva   8.0.0  
       dvaunittesting.dll   photoshopdva   8.0.0  
       dynamiclink.dll   photoshopdva   8.0.0  
       ExtendScript.dll   ExtendScript 2014/01/21-23:58:55   79.551519   79.551519
       icucnv40.dll   International Components for Unicode 2013/02/25-15:59:15    Build gtlib_4.0.19090  
       icudt40.dll   International Components for Unicode 2013/02/25-15:59:15    Build gtlib_4.0.19090  
       igestep30.dll   IGES Reader   9.3.0.113  
       imslib.dll   IMSLib DLL   7.0.0.154  
       JP2KLib.dll   JP2KLib 2014/06/28-00:28:27   79.254012   79.254012
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libiomp5md.dll   Intel(R) OpenMP* Runtime Library   5.0  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       LogSession.dll   LogSession   7.2.1.3399  
       mediacoreif.dll   photoshopdva   8.0.0  
       MPS.dll   MPS 2014/08/18-23:43:19   79.557676   79.557676
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CC 2014   15.2.2  
       Plugin.dll   Adobe Photoshop CC 2014   15.2.2  
       PlugPlugExternalObject.dll   Adobe(R) CEP PlugPlugExternalObject Standard Dll (64 bit)   5.0.0  
       PlugPlugOwl.dll   Adobe(R) CSXS PlugPlugOwl Standard Dll (64 bit)   5.2.0.54  
       PSArt.dll   Adobe Photoshop CC 2014   15.2.2  
       PSViews.dll   Adobe Photoshop CC 2014   15.2.2  
       SCCore.dll   ScCore 2014/01/21-23:58:55   79.551519   79.551519
       ScriptUIFlex.dll   ScriptUIFlex 2014/01/20-22:42:05   79.550992   79.550992
       svml_dispmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       tbb.dll   Intel(R) Threading Building Blocks for Windows   4, 2, 2013, 1114  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   4, 2, 2013, 1114  
       TfFontMgr.dll   FontMgr   9.3.0.113  
       TfKernel.dll   Kernel   9.3.0.113  
       TFKGEOM.dll   Kernel Geom   9.3.0.113  
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113  
       updaternotifications.dll   Adobe Updater Notifications Library   8.0.0.14 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   8.0.0.14
       VulcanControl.dll   Vulcan Application Control Library   5.0.0.82  
       VulcanMessage5.dll   Vulcan Message Library   5.0.0.82  
       WRServices.dll   WRServices Fri Mar 07 2014 15:33:10   Build 0.20204   0.20204
       wu3d.dll   U3D Writer   9.3.0.113  
    Erforderliche Zusatzmodule:
       3D Studio 15.2.2 (2014.2.2 x001 x003)
       Adaptive Weitwinkelkorrektur 15.2.2
       Aquarell 15.2.2
       Arithmetisches Mittel 15.2.2 (2014.2.2 x001 x003)
       Basrelief 15.2.2
       Bereich 15.2.2 (2014.2.2 x001 x003)
       Bildpaket-Filter 15.2.2 (2014.2.2 x001 x003)
       Blendenflecke 15.2.2
       BMP 15.2.2
       Buntglas-Mosaik 15.2.2
       Buntstiftschraffur 15.2.2
       Chrom 15.2.2
       Cineon 15.2.2 (2014.2.2 x001 x003)
       Collada 15.2.2 (2014.2.2 x001 x003)
       Color Lookup-Raster rendern NO VERSION
       Color Lookup-Tabellen exportieren NO VERSION
       CompuServe GIF 15.2.2
       Conté-Stifte 15.2.2
       De-Interlace 15.2.2
       Diagonal verwischen 15.2.2
       Dicom 15.2.2
       Differenz-Wolken 15.2.2 (2014.2.2 x001 x003)
       Distorsion 15.2.2
       Dunkle Malstriche 15.2.2
       Durchschnitt berechnen 15.2.2 (2014.2.2 x001 x003)
       Eazel Acquire 15.2.2 (2014.2.2 x001 x003)
       Entropie 15.2.2 (2014.2.2 x001 x003)
       Erfassungsbereich 15.2.2 (2014.2.2 x001 x003)
       Extrudieren 15.2.2
       Farbpapier-Collage 15.2.2
       Farbraster 15.2.2
       Fasern 15.2.2
       FastCore-Routinen 15.2.2 (2014.2.2 x001 x003)
       Feuchtes Papier 15.2.2
       Filtergalerie 15.2.2
       Flash 3D 15.2.2 (2014.2.2 x001 x003)
       Fluchtpunkt 15.2.2
       Fotokopie 15.2.2
       Fotos freistellen und gerade ausrichten (Filter) 15.2.2
       Fotos freistellen und gerade ausrichten 15.2.2 (2014.2.2 x001 x003)
       Fresko 15.2.2
       Für Web speichern 15.2.2
       Gekreuzte Malstriche 15.2.2
       Gerissene Kanten 15.2.2
       Glas 15.2.2
       Google Earth 4 15.2.2 (2014.2.2 x001 x003)
       Grobe Malerei 15.2.2
       Grobes Pastell 15.2.2
       HDRMergeUI 15.2.2
       HSB/HSL 15.2.2
       IFF-Format 15.2.2
       IGES 15.2.2 (2014.2.2 x001 x003)
       JPEG 2000 15.2.2
       Kacheleffekt 15.2.2
       Kacheln 15.2.2
       Kanten betonen 15.2.2
       Kohleumsetzung 15.2.2
       Konturen mit Tinte nachzeichnen 15.2.2
       Körnung & Aufhellung 15.2.2
       Körnung 15.2.2
       Kräuseln 15.2.2
       Kreide & Kohle 15.2.2
       Kreuzschraffur 15.2.2
       Kristallisieren 15.2.2
       Kunststofffolie 15.2.2
       Kurtosis 15.2.2 (2014.2.2 x001 x003)
       LAGE 15.2.2 (2014.2.2 x001 x003)
       Leuchtende Konturen 15.2.2
       Malgrund 15.2.2
       Malmesser 15.2.2
       Matlab-Vorgang 15.2.2 (2014.2.2 x001 x003)
       Maximum 15.2.2 (2014.2.2 x001 x003)
       Median 15.2.2 (2014.2.2 x001 x003)
       Mehrprozessorunterstützung 15.2.2 (2014.2.2 x001 x003)
       Mezzotint 15.2.2
       Minimum 15.2.2 (2014.2.2 x001 x003)
       Mit Struktur versehen 15.2.2
       Mit Wasserzeichen versehen 4.0
       MMXCore-Routinen 15.2.2 (2014.2.2 x001 x003)
       Neigung 15.2.2 (2014.2.2 x001 x003)
       Neonschein 15.2.2
       NTSC-Farben 15.2.2 (2014.2.2 x001 x003)
       Objektivkorrektur 15.2.2
       Objektivunschärfe 15.2.2
       Ölfarbe getupft 15.2.2
       OpenEXR 15.2.2
       Ozeanwellen 15.2.2
       Patchwork 15.2.2
       PCX 15.2.2 (2014.2.2 x001 x003)
       Pfade -> Illustrator 15.2.2
       Photoshop 3D-Modul 15.2.2 (2014.2.2 x001 x003)
       Photoshop Touch 14.0
       Pixar 15.2.2 (2014.2.2 x001 x003)
       PNG 15.2.2
       Polarkoordinaten 15.2.2
       Portable Bit Map 15.2.2 (2014.2.2 x001 x003)
       Prägepapier 15.2.2
       PRC 15.2.2 (2014.2.2 x001 x003)
       Punktieren 15.2.2
       Punktierstich 15.2.2
       Radialer Weichzeichner 15.2.2
       Radiance 15.2.2 (2014.2.2 x001 x003)
       Rasterungseffekt 15.2.2
       Risse 15.2.2
       Schwamm 15.2.2
       Schwingungen 15.2.2
       Selektiver Weichzeichner 15.2.2
       Solarisation 15.2.2 (2014.2.2 x001 x003)
       Spritzer 15.2.2
       Standardabweichung 15.2.2 (2014.2.2 x001 x003)
       Stempel 15.2.2
       STL 15.2.2 (2014.2.2 x001 x003)
       Strichumsetzung 15.2.2
       Strudel 15.2.2
       Stuck 15.2.2
       Sumi-e 15.2.2
       Summe 15.2.2 (2014.2.2 x001 x003)
       Targa 15.2.2
       Tontrennung & Kantenbetonung 15.2.2
       U3D 15.2.2 (2014.2.2 x001 x003)
       Unterstützung für Skripten 15.2.2
       Varianz 15.2.2 (2014.2.2 x001 x003)
       Verbiegen 15.2.2
       Verflüssigen 15.2.2
       Versetzen 15.2.2
       Verwackelte Striche 15.2.2
       Verwacklung reduzieren 15.2.2
       Virtual Reality Modeling Language | VRML 15.2.2 (2014.2.2 x001 x003)
       Wasserzeichen anzeigen 4.0
       Wavefront|OBJ 15.2.2 (2014.2.2 x001 x003)
       Weiches Licht 15.2.2
       Wellen 15.2.2
       WIA-Unterstützung 15.2.2 (2014.2.2 x001 x003)
       Windeffekt 15.2.2
       Wireless Bitmap 15.2.2 (2014.2.2 x001 x003)
       Wölben 15.2.2
       Wolken 15.2.2 (2014.2.2 x001 x003)
    Optionale Zusatzmodule und Zusatzmodule von Drittanbietern:
       Camera Raw 8.8
       Camera Raw-Filter 8.8
    Nicht geladene Plug-Ins: KEINE
    Blitz: OHNE
    Installierte TWAIN-Geräte: OHNE

    I've been having the same problem since CS6. I'm hoping for a solution soon. this is really frustrating!

  • ** Filtering is not working correctly in ALV (REUSE_ALV_GRID_DISPLAY)

    Hi Friends,
    We have one Z report that output is displayed in ALV. We are using the standard FM 'REUSE_ALV_GRID_DISPLAY. 
    We have requirement to remove leading zeros for the field like Material Number (MATNR), Equipment Number (EQUNR) etc. We did the changes by applying the field catalog properties as below.
    lw_fieldcat-lzero = space.
    lw_fieldcat-no_zero = 'X'.
    After this, the MATNR and EQUNR is displayed correctly in the ALV. (Leading zeros are suppressed). But, when we do filter for these fields, in the filter window it displays all the values with leading zeros.
    1. We don't understand why it is showing in the Filter widow with all leading zeros. All it shows all the records instead of unique items.
    Later on, we removed the above fieldcat coding. Then, we have called the CONVERSION_EXIT routines (in the domain) for the fields to remove leading zeros.
    Now, the MATNR and EQUNR is displayed correctly (without leading zeros) in ALV. When we do filter, it is also doing filtering correctly. But, when we do filter which have EQUNR having long values (after zero suppression), it is not working correctly. i.e no items are displayed in the ALV.
    Not only for this items. If we filter character columns which have long text, it is not filtering correctly.
    2. It is not able to understand why the filtering is not working for long items. But in the standard report, the filtering is working correctly.
    We are using SAP ECC 6.0.
    Friends, can you clarify the about doubts. It is surprising for me.
    Kind regards,
    Jegathees P.
    Our customer is asked to remove the leading zeros for the numeric field

    Hi Clemens Li
    I agreed on your point. When we define the Internal table the type for element EQUNR & QUMNR , we are referring the SAP data element for EQUNR, QMNUM field.
    Our doubt is even though we refer the standard data element, in the ALV display, it shows with leading zeros and also it creates problems in the filtering and in the filter window all values instead of unique nos.
    Hi Abhii
    I have given below the fieldcat coding.
    Friends, can you kindly clarify the above said problems. Since we use SAP ECC 6.0 any notes or patches apply is required. ( this is the basic functionality in ALV, that is my doubt).
        wls_fieldcat-col_pos   = wpv_pos.
        wls_fieldcat-fieldname = wpv_champ.
        wls_fieldcat-tabname   = wlc_tabname.
      wls_fieldcat-seltext_s = wls_fieldcat-seltext_m
        wls_fieldcat-seltext_l = wpv_libelle.
        wls_fieldcat-ddictxt   = 'L'.
        wls_fieldcat-no_out    = wv_no_out.
        APPEND wls_fieldcat TO gt_fieldcat.
    Kind regards,
    Jegathees P.

  • PHOTOSHOP C6 OIL PAINT FILTER DOES NOT WORKING

    PHOTOSHOP C6 OIL PAINT FILTER DOES NOT WORKING
    Adobe Photoshop Version: 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00) x32
    Operating System: Windows 7 32-bit
    Version: 6.1
    System architecture: Intel CPU Family:6, Model:7, Stepping:10 with MMX, SSE Integer, SSE FP, SSE2, SSE3
    Physical processor count: 2
    Processor speed: 2095 MHz
    Built-in memory: 3003 MB
    Free memory: 1578 MB
    Memory available to Photoshop: 1666 MB
    Memory used by Photoshop: 100 %
    Image tile size: 128K
    Image cache levels: 4
    The GPU Sniffer crashed on 9/7/2014 at 11:15:55 AM
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Basic
    OpenGL Allow Normal Mode: False.
    OpenGL Allow Advanced Mode: False.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: Intel
    Video Card Renderer: Mobile Intel(R) 4 Series Express Chipset Family v2
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 768, right: 1366
    Video Card Number: 2
    Video Card: Mobile Intel(R) 4 Series Express Chipset Family v2
    OpenCL Unavailable
    Driver Version: 8.15.10.2869
    Driver Date: 20121004000000.000000-000
    Video Card Driver: igdumdx32.dll,igd10umd32.dll
    Video Mode:
    Video Card Caption: Mobile Intel(R) 4 Series Express Chipset Family v2
    Video Card Memory: 1310 MB
    Video Rect Texture Size: 4096
    Video Card Number: 1
    Video Card: Mobile Intel(R) 4 Series Express Chipset Family v2
    OpenCL Unavailable
    Driver Version: 8.15.10.2869
    Driver Date: 20121004000000.000000-000
    Video Card Driver: igdumdx32.dll,igd10umd32.dll
    Video Mode: 1366 x 768 x 4294967296 colors
    Video Card Caption: Mobile Intel(R) 4 Series Express Chipset Family v2
    Video Card Memory: 1310 MB
    Video Rect Texture Size: 4096
    Serial number: 92628701192123445467
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS6\
    Temporary file path: C:\Users\ShAmRy\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      C:\, 80.1G, 40.6G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2012/06/05-15:16:32   66.507768   66.507768
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0  
       AdobeOwl.dll   Adobe Owl 2012/06/26-12:17:19   4.0.95   66.510504
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   6.0.0.1654  
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   6,0,29,0  
       AGM.dll   AGM 2012/06/05-15:16:32   66.507768   66.507768
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56  
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00)   1.000000
       ARE.dll   ARE 2012/06/05-15:16:32   66.507768   66.507768
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2012/06/05-15:16:32   66.507768   66.507768
       BIBUtils.dll   BIBUtils 2012/06/05-15:16:32   66.507768   66.507768
       boost_date_time.dll   DVA Product   6.0.0  
       boost_signals.dll   DVA Product   6.0.0  
       boost_system.dll   DVA Product   6.0.0  
       boost_threads.dll   DVA Product   6.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.0.5.19287   2.0.5.19287
       CoolType.dll   CoolType 2012/06/05-15:16:32   66.507768   66.507768
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0  
       dvacore.dll   DVA Product   6.0.0  
       dvamarshal.dll   DVA Product   6.0.0  
       dvamediatypes.dll   DVA Product   6.0.0  
       dvaplayer.dll   DVA Product   6.0.0  
       dvatransport.dll   DVA Product   6.0.0  
       dvaunittesting.dll   DVA Product   6.0.0  
       dynamiclink.dll   DVA Product   6.0.0  
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       libeay32.dll   The OpenSSL Toolkit   0.9.8g  
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0  
       LogSession.dll   LogSession   2.1.2.1640  
       mediacoreif.dll   DVA Product   6.0.0  
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp71.dll   Microsoft® Visual Studio .NET   7.10.3077.0  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr71.dll   Microsoft® Visual Studio .NET   7.10.3052.4  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS6   CS6  
       Plugin.dll   Adobe Photoshop CS6   CS6  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (32 bit)   3.0.0.383  
       PSArt.dll   Adobe Photoshop CS6   CS6  
       PSViews.dll   Adobe Photoshop CS6   CS6  
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       shfolder.dll   Microsoft(R) Windows (R) 2000 Operating System   5.50.4027.300  
       ssleay32.dll   The OpenSSL Toolkit   0.9.8g  
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       TfFontMgr.dll   FontMgr   9.3.0.113  
       TfKernel.dll   Kernel   9.3.0.113  
       TFKGEOM.dll   Kernel Geom   9.3.0.113  
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113  
       updaternotifications.dll   Adobe Updater Notifications Library   6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112   0.17112
       wu3d.dll   U3D Writer   9.3.0.113  
    Required plug-ins:
       Accented Edges 13.0
       Adaptive Wide Angle 13.0
       ADM 3.11x01
       Angled Strokes 13.0
       Average 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Bas Relief 13.0
       BMP 13.0
       Camera Raw 7.0
       Chalk & Charcoal 13.0
       Charcoal 13.0
       Chrome 13.0
       Cineon 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Clouds 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Collada 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Color Halftone 13.0
       Colored Pencil 13.0
       CompuServe GIF 13.0
       Conté Crayon 13.0
       Craquelure 13.0
       Crop and Straighten Photos 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Crop and Straighten Photos Filter 13.0
       Crosshatch 13.0
       Crystallize 13.0
       Cutout 13.0
       Dark Strokes 13.0
       De-Interlace 13.0
       Difference Clouds 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Diffuse Glow 13.0
       Displace 13.0
       Dry Brush 13.0
       Eazel Acquire 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Embed Watermark 4.0
       Extrude 13.0
       FastCore Routines 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Fibers 13.0
       Film Grain 13.0
       Filter Gallery 13.0
       Fresco 13.0
       Glass 13.0
       Glowing Edges 13.0
       Grain 13.0
       Graphic Pen 13.0
       Halftone Pattern 13.0
       HDRMergeUI 13.0
       IFF Format 13.0
       Ink Outlines 13.0
       JPEG 2000 13.0
       Lens Blur 13.0
       Lens Correction 13.0
       Lens Flare 13.0
       Liquify 13.0
       Matlab Operation 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Measurement Core 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Mezzotint 13.0
       MMXCore Routines 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Mosaic Tiles 13.0
       Multiprocessor Support 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Neon Glow 13.0
       Note Paper 13.0
       NTSC Colors 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Ocean Ripple 13.0
       Oil Paint 13.0
       OpenEXR 13.0
       Paint Daubs 13.0
       Palette Knife 13.0
       Patchwork 13.0
       Paths to Illustrator 13.0
       PCX 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Photocopy 13.0
       Photoshop 3D Engine 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Picture Package Filter 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Pinch 13.0
       Pixar 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Plaster 13.0
       Plastic Wrap 13.0
       PNG 13.0
       Pointillize 13.0
       Polar Coordinates 13.0
       Portable Bit Map 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Poster Edges 13.0
       Radial Blur 13.0
       Radiance 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Read Watermark 4.0
       Reticulation 13.0
       Ripple 13.0
       Rough Pastels 13.0
       Save for Web 13.0
       ScriptingSupport 13.0.1
       Shear 13.0
       Smart Blur 13.0
       Smudge Stick 13.0
       Solarize 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Spatter 13.0
       Spherize 13.0
       Sponge 13.0
       Sprayed Strokes 13.0
       Stained Glass 13.0
       Stamp 13.0
       Sumi-e 13.0
       Targa 13.0
       Texturizer 13.0
       Tiles 13.0
       Torn Edges 13.0
       Twirl 13.0
       Underpainting 13.0
       Vanishing Point 13.0
       Variations 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Water Paper 13.0
       Watercolor 13.0
       Wave 13.0
       WIA Support 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Wind 13.0
       Wireless Bitmap 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       ZigZag 13.0
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
    Installed TWAIN devices: NONE

    I am getting the same error, also when starting CS6 I receive a message that my graphic device driver is not officially supported. I have updated the drivers and have never had any issues with any other programs. It appears to be a bug in the program.

  • Anchor links to accordion panels not working properly across browsers

    Hi everyone,
    I need some help to figure out why my anchor links  to specific accordion panels on another page are not working properly  across browsers.
    I have a Map page which has tooltips on  mouseover on the site markers. 15 of the tooltips have "Click here for  information" anchor links (although only 14 are currently linked) which,  in theory, would take you to the Nurseries page where the specified  accordion panel would be opened with the nursery entry appearing at the  top of the new browser window.
    Here are the links to the Map page and Nurseries page, respectively:
    www.alegriadesignstudio.com/RFRI/map_v6.html
    www.alegriadesignstudio.com/RFRI/nurseries_v6.html
    I've  tested the anchor links on IE, Firefox, Google Chrome, and Safari, and  have received varying results. In most cases, the anchor links worked  perfectly on two of the browsers, while on the other browsers, the  correct accordion panel is opened but the nursery entry does not appear  at the top of the new browser window. Anchor links using Safari and  Google Chrome fared better (10 out of 14 links worked properly, and  8/14, respectively), whereas when using Firefox and IE, only 3 anchor  links worked properly. The target audience for this website will be  using IE and Firefox, so I  would appreciate any help to figure out how to tweak the code so that  the most, if not all, anchor links work properly on these two browsers  in particular.
    Here's an anchor link which worked perfectly in  IE, GC, and Safari, but in FF, the entry did not appear at the top of  the new browser window.
    www.alegriadesignstudio.com/RFRI/nurseries_v6.html?luzon=9#mangatarem
    http://www.alegriadesignstudio.com/RFRI/nurseries_v6.html?luzon=9#mangatarem [To access the anchor link on the Map page, mouseover the third green  dot from the top of the map (Tooltip--Location: Mangatarem) and then  click on "Click here for information."]
    Here's a sample anchor link in which the entry did not appear at the  top of the new browser window in any of the 4 browsers:
    www.alegriadesignstudio.com/RFRI/nurseries_v6.html?mindanao=4#magpetAmabel
    http://http://www.alegriadesignstudio.com/RFRI/nurseries_v6.html?mindanao=4#magpetAmabel [To access the anchor link on the Map page, go to "Mindanao" at the  bottom of the map and mouseover the fourth green  dot below the word "Mindanao" (Tooltip--LOCATION:        Brgys. Amabel, Bongolanon, Imamaling, & Manobisa; Magpet;        North Cotabato) and then  click on "Click here for information."]
    Here's a sample anchor  link in which the anchor link worked properly in GC and Safari, but the  entry didn't appear at the top of the browser window in IE and FF:
    www.alegriadesignstudio.com/RFRI/nurseries_v6.html?visayas=1#bilar
    http://http://www.alegriadesignstudio.com/RFRI/nurseries_v6.html?visayas=1#bilar [To access the anchor link on the Map page, go to the small island  north and a bit west of "Mindanao" which is called "Bohol" and mouseover  the fourth green  dot below the word "Mindanao" (Tooltip--LOCATION: Bilar; Bohol) and then   click on the first "Click here for information."]
    Many thanks in  advance for your assistance!
    Joy

    Hi everyone,
    I'm still trying to figure out how to resolve the problem of anchor links to accordion panels not working properly across browsers (see original post for details). I would greatly appreciate any suggestions on how to resolve the problem.
    Many thanks in advance.
    Joy

  • Delete Statement is not working correctly

    Hello,
    The following delete statement is not working correctly.
    If I press delete it will delete everything in the category table
    I don't know whats wrong with it.
    ----delete row from category if there is not infrastructure to support------
    IF :P12_DFCY_SEQNO4 IS NOT NULL AND :P12_DFCY_CATG_C = '7' THEN
    DELETE FROM DFCY_CATG
    WHERE NOT EXISTS(SELECT I.DFCY_SEQNO
    FROM DFCY_CATG C, DFCY_CATG_INFRSTRCTR I
    WHERE C.DFCY_SEQNO = I.DFCY_SEQNO
    AND :P12_DFCY_SEQNO4 = I.DFCY_SEQNO);
    end if;
    Thanks
    Mary

    Hi,
    IF :P12_DFCY_SEQNO4 IS NOT NULL AND :P12_DFCY_CATG_C = '7' THEN
    DELETE FROM DFCY_CATG
    WHERE NOT EXISTS(SELECT I.DFCY_SEQNO
    FROM DFCY_CATG C, DFCY_CATG_INFRSTRCTR I
    WHERE C.DFCY_SEQNO = I.DFCY_SEQNO
    AND :P12_DFCY_SEQNO4 = I.DFCY_SEQNO);
    end if;So, if P12_DFCY_SEQNO4 does not exist, then I would expect all records to be deleted because the NOT EXISTS() function would just return TRUE for every record on the table. Somewhere in the statement, I would expect to see something that links between the table being deleted from and the NOT EXISTS() data or, perhaps, using the P12_DFCY_CATG_C value as a filter?
    Andy

  • LoginFilter not working correctly

    My Login filter is behaving very strangely. Here is the relevant code from the filter.
    if (o != null
                    || (url != null && (url.indexOf(LOGIN_URL) > 0
                            || url.indexOf(LOGIN_FORM_URL) > 0
                            || url.indexOf(EXTERNAL_LOGIN_URL) > 0
                            || url.indexOf(EXTERNAL_LOGIN_FORM_URL) > 0
                            || url.indexOf("images") > 0 || url.indexOf(services) > 0))) {
                chain.doFilter(request, response);
                return;The problem is we are trying to allow an external application to log into mine. The external application generates a link with an /externalLogin.do as the href. It steps into the above code and the indexOf() correctly finds it and the chain.doFilter is executed. But it never makes it to the externalLoginAction.java.
    If I copy the link and put it on my Login.jsp page and click it, it makes it to the chain.doFilter the same but then continues on to the externalLoginAction.java.
    So it look like the chain.doFilter is not working correctly if it is not comming from the same context?
    Anyone have any ideas?

    stupid stupid stupid.
    The first url was passing userName and password in the URL the second somehow got changed to userId... so struts was kicking it back.. just changed my struts config to not validate the external login form.

  • Filters not working correctly

    We have the strange situation, that filters in calendar views are not working correctly (anymore?).
    If i set up a filter to search for my name as attendee, teaming still shows all entries instead of only just mine. This behavior applies to customized and standard calendar views.
    Filters for (customized) file folders still work as expected.
    Any ideas?

    jasi,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Safari hierarchical menus not working correctly

    Hello all,
    I'm having a problem with Safari's hierarchical menus not working correctly. They pop out in odd positions, and--worst of all--the big ones (for folders that contain lots of bookmarks) pop out right on top of the main bookmarks menu, making it all but impossible to navigate that main menu. I've tried all the usual tricks: log out/restart the system, restart Safari, reset Safari, boot in safe boot mode, repair permissions, yank Safari's bookmarks prefs file, even reinstall Safari, and nothing worked. I've also noticed the same behavior in Camino. My system hierarchical menus work fine, though, so I'm thinking I have a corrupt prefs file somewhere. I'm using Safari 4.04 with no extra plugins beyond what come with it on 10.5.8. Does anyone know what's going on and how to fix this?

    AFAIK, the submenu will pop on either side, depending on available space and if there are further subfolders, allowing them to continue in the same direction.
    Since the new account doesn't exhibit the issue, there are two ways to attack the problem. One is to log into your new account, make a list of the preference files (plists) located in /username/Library/Preferences/, including any in the ByHost subfolder, log back into the original account, move everything not on that list into a newly created folder on the Desktop, log out and back in, and see if the problem goes away. If so, you can copy the ones in the Desktop folder (one at time) back into /Preferences/, restart, and see if the problem returns. If so, you've identified the corrupt/conflicting one. Continue with all of them until isolating the bad ones. That'll save you the trouble of resetting preferences.
    The second way is much more detailed and I'll not burden you with the steps unless the above doesn't fix the issue.

  • ITunes Home Sharring not working correctly.

    My itunes homesharing is not working correctly. I have a Windows 8 computer and I am trying to share with my partners Widows 7 computer. Both computers are running the newest version of itunes 11 (downloaded yesterday). I sign in and turned on home sharring with the same user id and password. For the first 20-30 mins it worked perfectly, I could open her library and she could open mine and we could download songs from each other with no issue. We closed both computers and about 2 hours later turned them on to try again. Now my computer (Windows8) always shows up on hers but her computer only shows up about 1/2 the time for me, and half of that time if you click on her computer it says loading then stops and her computer has disapperard again. I can eventually get it to work after many turning off and on of home sharring but it take about 15-20min each time to get it working. Is this a problem others have seen? Does anyone know a solution?

    This issue has now been completely resolved with the introduction of iTunes 9.2 Everything up and running again - thank you Apple! (Still an issue with Dictionary app/Wikipedia not functioning correctly, this has not been resolved)

Maybe you are looking for