Multiple portlets using javascripts not working on the same page!!!

Does anyone know a work around for this problem????
I have two seperate dynamic pages. Each page has a drop down menu which is built from javascript and dhtml. Individually they both work fine. However they stop working when placed on a page together. Even when in seperate regions. I need to keep both of them as seperate portlets so i cannot solve the conflicts in the javascript as i would if they were coded together.
Any Ideas????
Anyone?????

Daniel,
It could be a script conflict - "any duplication in variable declaration, function name, or event-handler access in two scripts can cause at least one, if not both scripts to become inoperative." Check this site to see if this applies to you:
http://www.javascriptkit.com/javatutors/multiplejava2.shtml
Good luck!

Similar Messages

  • Help!!! 8i&9i can not work at the same time

    I have installed 8i&9i in one Solaris8, and the port and listener name is diffendent, but now 8i&9i can not work at the same time.
    pls help me
    thanks anyway.
    John

    I have hard time digesting your concern.. I have 4 Different instance of oracle running on sun 2.8.
    8.0.5, 8.1.7, 9.i rel 1, 9i rel 2. No issues there...
    The simple things is to check is you .profile ( env variables)
    Example ...
    Check you .profile or .cshrc ( Depends on the SHELL You are using )
    Let say you have .profile
    THERE IS SETTING SUCH AS...
    ORACLE_SID
    ORACLE_HOME
    LD_LIBRARY_PATH
    PATH
    etc..
    You could try the following..
    log into to you sun box..
    do echo $ORACLE_SID this will give you current SID YOU have available to work with..
    so lets say if you have a 8i SID CALLED orcl8i
    example assume you have .cshrc
    setenv ORACLE_SID oracl8i
    setenv ORACLE_HOME /oracle8i_HOME_PATH...
    setenv LD_LIBRARY_PATH /oracle8i_HOME_PATH//lib: etc..
    etc...
    then
    you could validate by doing echo..
    echo $ORACLE_HOME
    echo $ORACLE_SID
    now try svrmgrl
    this should work..
    as far as 9i you no longer have svrmgrl..
    you have to apply the above method and log into the sqlplus.
    hope this help...
    If there is a specific question email me [email protected]
    good luck.

  • When I click PDF file, the file does not open and  installation software for creative suite automatically begin to start. Even after re-installation of creative suite 5.5, only acrobat reader dose not work and the same phenomena occurs.

    When I click PDF file, the file does not open and  installation software for creative suite automatically begin to start. Even after re-installation of creative suite 5.5, only acrobat reader dose not work and the same phenomena occurs.

    Did you ever install Acrobat? It is not installed automatically with CS, but requires an extra installation step.

  • Problem in the main area of the table not coming on the same page

    Hi Experts,
    I have created a invoice in the table header with descriptions and main area with the values,below main area i have also created a template in smartform for calculation when i have assigned this to a transaction and i goto printpreview my main area and the calculation template are not coming in the same page,and the calculation and the header template goes to next page without main area,even if i decrease the size of main window my problem does not get solved.Is there any way out.
    Please Help
    Regards

    Hi Summet ,
      Just check in the form where your writing the code if theer are any new lines before your calculation template .
    It happens that may be the form you write is unabl;e to accomadate your window size .
    Try this!
    Hope it helps!
    Much Regards ,
    Amuktha .

  • Two JavaScript widgets won't work on the same page [was: Not the first time]

    I ran into this a few months back and gave up on it. I have a page that has several javascripts running on it. They are:
    vnu_datestamp.js
    a flashing neon text script (inline)
    DW's own rollover image (MM_swapimgRestore) script (also inline)
    jquery1.2.2_pack.js
    overlapviewer.js
    lightbox.js (which also relies on scriptaculous.js, prototype.js and an "effects.js" to run)
    I know that's a "garbage pail" of javascripts to all be on the same page. Frankly I'm surprised that they don't all give me problems. But there is one.
    The lightbox and overlap viewer just will not play together.
    Depending on which one I list first in the header, the other one quits. Whichever one I lose goes from the image display effect to acting like a straight hyperlink to the designated image.
    It isn't a huge deal, but I'd like to be able to have the two of these on the same page and working. I have them running alone on other pages and can link to them, but it sort of defeats the purpose of making a web page to show the variety of things I can do for someone who whats a website built, if one or more of the things won't work.
    [Subject line edited by moderator for clarity]

    Please don't use cryptic subject lines for posts. The value of a forum is that other people might be searching for the answer to a similar problem. Meaningless subject lines prevent others from finding useful replies. They also discourage others who might be able to provide help more quickly if they knew what you're asking about.
    I've had a quick look at your page. Quite honestly, I find all the flashing rather nauseating, but if that's the way you want to design a page, it's your choice...
    The conflict is caused by the fact that overlapview.js seems to rely on jQuery, while lightbox.js relies on Prototype and script.aculo.us. Both jQuery and Prototype use $() as a shortcut, so you cannot mix the two libraries on the same page without taking special measures to prevent the conflict. In jQuery, you do this by loading all the jQuery, Prototype, and script.aculo.us libraries first, and then using the following script:
    jQuery.noConflict();
    Then load overlapview.js, replacing all instances of $ with jQuery. So, for example, the following line:
    $(t).fadeTo('normal', overlapviewer.endopacity, function(){
    needs to be rewritten like this:
    jQuery(t).fadeTo('normal', overlapviewer.endopacity, function(){

  • OnClick not working in the validation page

    Hi All,
    In my jsp i used onClcik for radio buttons. if i click the radio button this hide some fields and show some fields based on the radio button. For this Jsp Page
    i did validation in my action(Struts1.1) using ActionMessages class.I can choose the radio button. That time onclick working properly. then after when i click submit (that time i did validation. For example check the field is empty or not) if error occurs, then it redirects the same page. That page doesn't hide the fields based on the radio button. so again i need to click the radio button. My question is, Is this possible to show the fields based on the radio button(without click again radio button) when it redirects the same page (Validation is here)?
    please assist me .
    Thanks in advance.
    Regards
    Lakshmi

    Hi,
    According to your description, my understanding is that you want to add button in a calculated field to call custom JavaScript function.
    I suggest you can use concatenate formula function to achieve it.
    You can add button use concatenate function like below:
    =CONCATENATE("<input type='button' name='btnAddToBasket' id='btnAddToBasket' value='Add to basket' onclick=","addToBasket('",[Document Name],"','",[Original],"')"," />")
    More information:
    How can I get a button in SharePoint to display info about a record?
    CONCATENATE function
    Thanks
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • "New Document" button on ribbon not working in the "Master Page Gallery" in Internet Explorer 10 & 11

    I'm trying to add a "JavaScript Display Template" to my "Master Page Gallery" but when I click on the "New Document" button and select "JavaScript Display Template" it opens the "Add a master page" dialog
    and prompts me to upload a file.  I've ran into this problem with "Compatibility View" set to both "On" or "Off".  I'm able to upload files but I can't get the new forms to show up.
    This happens on the root site collection site.  For subsites, the "New Document" button is completely grayed out.  
    FYI - I am a site collection admin and in the "Owners" group for each site.
    How can I fix this?

    Hi,
    According to your post, my understanding is that "New Document" button on ribbon falied to work in the "Master Page Gallery".
    In the root site, please make sure you enter all the necessary information when you upload file.
    In the other word, you need to make sure the save the “JavaScript Display Template" successfully.
    In the subsites, when you click the “Master Page” under Master Page Gallery in the sub site site setting page, the "New Document" button is completely grayed out.
    If you want to add the template, you need to active the “SharePoint Server Publishing” feature in the Site sitting->Manage site features.
    However, the “Master Page” under Master Page Gallery will become to “Master pages and page layouts”.
    If you click the Master pages and page layouts”, you will go to the
    Master Page Gallery of the root site, and then you can add Document.
    Thank you for your understanding.
    Thanks,
    Linda Li
    Linda Li
    TechNet Community Support

  • Problem with Ribbon when multiple List / Library WebPart are added to the same page

    Hi,
    I'm working on a SharePoint 2013 custom branding (custom master page and layout).
    I added one page layout with several Web Part Zones,
    <div id="cBottomFirst" class="cThreeColumn cThreeColumndMargin" >
    <div data-name="WebPartZone">
    <!--CS: Start Web Part Zone Snippet-->
    <!--SPM:<%@Register Tagprefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c"%>-->
    <div xmlns:ie="ie">
    <!--MS:<WebPartPages:WebPartZone runat="server" Title="Bottom Left Area" ID="wpz_bottom_left" AllowCustomization="True" AllowPersonalization="False" FrameType="TitleBarOnly" Orientation="Vertical">-->
    <!--MS:<ZoneTemplate>-->
    <!--DC: Replace this comment with default web parts for new pages. -->
    <!--ME:</ZoneTemplate>-->
    <!--ME:</WebPartPages:WebPartZone>-->
    </div>
    <!--CE: End Web Part Zone Snippet-->
    </div>
    </div>
    I have a problem, when I add several List View Web Part to the same page, then when I select one list / library, the ribbon is shown, but it is shown with all option disabled.
    Any idea?
    José Quinto Zamora SharePoint and Search Specialist MCITP and MCPD in SharePoint 2010
    http://joSharePoint.com

    Hi,
    According to your description, I suggest you check as follows:
    1. Please check that whether the ribbon is OK when you use the OOTB feature to add the web part to a page;
    2. What if you do the test in IE, will the issue still occur?
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Dennis Guo
    TechNet Community Support

  • Appraisals EHP4 - multiple reference objects not working in the same TAB

    Dear SAP Experts,
    I am working on MBO Performance Mgmt EHP4. I have created an appraisal template and testing this in MSS.
    Now the structure of the template has a VB object called u201CMy Developmentu201D.
    Within this VB Object I have created two other VB objects in the following order called
    u201CSuccess Profilesu201D and
    u201CAdditional Areas of Developmentu201D
    The business requirement is to
    a)     within success profiles have the requirements of the position of the appraisee to be defaulted
    b)     then have the ability for the Manager to select one of the requirements and select the ADD functionality to add another element which has 4 customs columns to then be completed by the Manager
    c)     Within u201CAdditional Areas of Development, the Manager needs to be able to have an ADD button to create the 5 custom columns to be completed by the Manager.
    The good newsu2026u2026..I have created the structure ok, with custom columns and have used fixed enhancement for defaulting the requirements of the appraiseeu2019s position and then having the reference object to each one of these requirements to then create 4 additional fields when the Manger selects the ADD button next to each requirement.
    I have also used a separate set of reference objects to have an ADD button against the VB object u201CAdditional Areas of Developmentu201D which is in the sequence after the VB object Success Profiles, then this will allow the creation of the 5 columns ok and works fine.
    I have also used the reference object for the Success Profiles which would expect to  show the ADD function to add the new element with 4 fields. Also the ADD function for the u201CAdditional Areas of Developmentu201D appears.
    I have created the config to display the My Development as a tab and have both the u201CSuccess Profilesu201D and the u201CAdditional Areas of Developmentu201D within this tab.
    The bad newsu2026.. When I select the ADD button against the VB object u201CSuccess Profilesu201D nothing happensu2026u2026u2026
    The defaulting of the requirements of the appraiseeu2019s position into the appraisal document under the Success profiles ONLY works if the VB object u201CAdditional Areas of Developmentu201D is DELETED from the appraisal document.
    However, when I delete the VB object u201CAdditional Areas of Developmentu201D the ADD of the VB object for Success Profile now works
    So it only seems to work if I delete the u201CAdditional Areas of Developmentu201D VB in the document which seems wrong to me.
    Please can someone advise
    Thanks
    Oliver

    Hi SAP experts,
    does anyone have an answer to my question above.
    Much appreciated it
    Not sure how to get screenshots stored in SDN f someone could explian.......
    Thanks
    Oliver

  • Multiple OAM Files are not working on the layout, and  now they are cropping? Need Help fast...

    So an early thing since day one with muse has been when inserting HTML the preview is sometimes off, and even the container box is sometimes forced to be similar like a previously installed HTML bit. I figured this new site I am making at work could use some Adobe Edge Animate functions for rollovers and drop downs, and as I set this up I am getting errors the more OAM files I insert onto the page. The previews I was kind of already expecting to not work correctly, but no I am getting a situation where my OAM file will not display properly because of the containing box of the first Element I inserted. Here are some pictures explaining the issues...

    This is a huge part of our site, please hurry with a bug fix or please dear god give me some tips for this work around. I am searching everywhere and getting nothing

  • 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!

  • Bean is not worked  in the jsff page

    Hi
    JDeveloper Studio Edition Version 11.1.2.2.0
    I Have a bean for run a jasperreport
    package Reports;
    import javax.faces.event.ActionEvent;
    import sp11.model.apm.clubImpl;
    import java.io.ByteArrayOutputStream;
    import java.io.InputStream;
    import java.math.BigDecimal;
    import java.sql.Connection;
    import java.sql.PreparedStatement;
    import java.util.HashMap;
    import java.util.Map;
    import javax.faces.context.FacesContext;
    import javax.servlet.ServletContext;
    import javax.servlet.ServletOutputStream;
    import javax.servlet.http.HttpServletResponse;
    import net.sf.jasperreports.engine.JasperExportManager;
    import net.sf.jasperreports.engine.JasperFillManager;
    import net.sf.jasperreports.engine.JasperPrint;
    import net.sf.jasperreports.engine.JasperReport;
    import net.sf.jasperreports.engine.type.WhenNoDataTypeEnum;
    import net.sf.jasperreports.engine.util.JRLoader;
    import net.sf.jasperreports.view.JasperViewer;
    import oracle.adf.model.BindingContext;
    import oracle.adf.model.binding.DCIteratorBinding;
    import oracle.binding.BindingContainer;
    import oracle.jbo.client.Configuration;
    public class CardFrontBean {
    public CardFrontBean() {
    public String runReportAction(){
    DCIteratorBinding rleIter = (DCIteratorBinding)getBindings().get("RealentityIterator");
    String RleId = rleIter.getCurrentRow().getAttribute("RleId").toString();
    BigDecimal ID = new BigDecimal(RleId);
    Map parameter = new HashMap();
    parameter.put("ID", ID);// where ID is a jasper report parameter
    try
    runReport("card_front.jasper", parameter);
    catch (Exception e)
    return null;
    public BindingContainer getBindings(){
    return BindingContext.getCurrent().getCurrentBindingsEntry();
    public ServletContext getContext(){
    return (ServletContext)getFacesContext().getExternalContext().getContext();
    public HttpServletResponse getResponse(){
    return (HttpServletResponse)getFacesContext().getExternalContext().getResponse();
    public static FacesContext getFacesContext(){
    return FacesContext.getCurrentInstance();
    public void runReport(String repPath, java.util.Map param) throws Exception {
    Connection conn = null;
    try
    HttpServletResponse response = getResponse();
    ServletOutputStream out = response.getOutputStream();
    response.setHeader("Cache-Control", "attachment;filename=\"CardFront.pdf\"");
    response.setContentType("application/pdf");
    ServletContext context = getContext();
    InputStream fs = context.getResourceAsStream("/ReportsFolder/" + repPath);
    JasperReport template = (JasperReport) JRLoader.loadObject(fs);
    template.setWhenNoDataType(WhenNoDataTypeEnum.ALL_SECTIONS_NO_DETAIL);
    PreparedStatement statement = null;
    String amDef = "sp11.model.apm.club";
    String config = "clubLocal";
    clubImpl am = (clubImpl)Configuration.createRootApplicationModule(amDef,config);
    statement = am.getDBTransaction().createPreparedStatement("select 1 from dual", 0);
    conn = statement.getConnection();
    JasperPrint print = JasperFillManager.fillReport(template, param, conn);
    //JasperViewer.viewReport(print, false);
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    JasperExportManager.exportReportToPdfStream(print, baos);
    out.write(baos.toByteArray());
    out.flush();
    out.close();
    FacesContext.getCurrentInstance().responseComplete();
    catch (Exception jex)
    jex.printStackTrace();
    finally
    close(conn);
    public void close(Connection con){
    if (con != null)
    try
    con.close();
    catch (Exception e)
    and a commandButton in the .jsff page
    <af:commandButton id="Realentitycardfront"
    textAndAccessKey="#{nls['REALENTITY_CARDFRONT']}"
    shortDesc="#{nls['REALENTITY_CARDFRONT_HINT']}"
    action="#{CardFront.runReportAction}"/>
    my .jsff page is in a bounded task flow with Use Page Fragments = true
    when i click the button. ........>nothing
    what is the matter
    i read in a post that it is not work in jsff page with page fragmentation
    please help me
    thanks

    One problem is that you write into the output stream from an action method and don't know what's already in the output stream. Once there is one byte written to hte stream (which you can't know from inside the action method) the pdf stream does not behave as you think it would.
    Next thing is that you use createRootApplicationModule but never release it. This will get you out of resources error eventually.
    A better approach would be to put this code in a servlet and stream the report from there. In the servlet you have control over the output stream.
    Check my blog http://tompeez.wordpress.com/2011/12/16/jdev11-1-2-1-0-handling-imagesfiles-in-adf-part-3/ where I show how to serve images from a servlet which can even use the application module pool from the application (no need to use createRootApplicationModule at all). All you have to do is to exchange the part where I get and stream the image data to your needs.
    Timo

  • Script does not work on the second page

    Hi, I believe it's just a little problem:
    I use the following script( I just copied a part of it, so don't care
    about missing brackets etc.)
    to automatically fill some text field according to the selection in a drop-down field:
    switch (xfa.event.newText) {
    case "8 8x1":
    berstdruck.rawValue = "≥65";
    htberst.rawValue = "≥20";
    maxflex.rawValue = "≥34";
    deflect.rawValue = "≥6";
    flexforce.rawValue = "≤44";
    minbend.rawValue = "≤40";
    permeation.rawValue = "≤2";
    length1.rawValue = "-1,5...+1,5"; remark:these fields are on page 2
    length2.rawValue = "-1,2...+1,2"; remark:these fields are on page 2
    break;
    The last two fields on page 2 of
    my document are not filled automatically.
    The others work well.
    Can somebody help?
    Thanks
    Alex

    You'll need to fully qualify the fields that are on other pages. The reason for this is these fields are not underneath the same parent in the XML DOM as where you're script is running (the drop-down). So it does not find the fields on the other pages and doesn't know where to look for them.
    A fully qualified SOM expression would look something like this:
    xfa.form.formName.pageName.subFormOnThePageNameIfExists.fieldName
    H.

  • Disable roaming data not works (in the same country)

    iPhone 2.1
    if disable roaming data and your carrier allows to connect to another carrier in the same country (for voice services) your iPhone continue to connect with the other carrier, even if you've disabled roaming data.
    that needs to be fixed as soon as possible ...
    i've spent a lot of money thinking that disable roaming data works also in the same country and not only abroad

    They should then add this features, a lot of people are in the same boat ... and receive tremendous bill due to this lack of capabilities of iPhone to do not lock data connection only with the own carrier in the same country.
    I know that there's the possibility to use only one carrier instead of setup in automatic mode the carrier, but, as said, many carriers all over the worls allow theis customers to connect to other carriers for free ONLY for voice BUT not for data ...

  • Submit button with multiple email addresses doesn't work while the same form with one email address does.  The multi email version works on windows computer.

    The email comes up when I press the "Submit" button but the email to field is blank.

    Hi,
    What is the separator character between two email addresses?  Is it a comma (,) semicolon(;) or something else?
    According to the mailto URI scheme (RFC 6068), you need to use a comma (,) to separate multiple email addresses.
    You can see the third example in the following Wikipedia page.
    mailto - Wikipedia, the free encyclopedia
    Would you double check the mailto value in your PDF form?

Maybe you are looking for

  • Crystal Reports 2008 Missing Page Headers and Footers when Exporting Excel

    After upgrading from Crystal Reports 9 to Crystal Reports 2008 we have noticed that when we export to Excel the document no longer retains the page headers and footers.  After doing some reading I see that there is a property called ExportPageHeaders

  • Error stopping tomcat 5.5 from eclipse?

    Hi, I installed Tomcat 5.5 in my WinXP Pro and i am using eclipse wtp 3.1 to create JSP pages. I created a server in eclipse and the tomcat start normally by eclipse, but when i stop the tomcat I get the follow message in console: 8690 [main] INFO ht

  • Where to get payment terms text.

    Hi Guys,               I need to fetch payment terms text. I don't find any text table connected with zterm field. Cheers Senthil

  • Save in different Folders RAW/JPEG

    Hello, is there any possibility to save the raws and jpegs in different folders ? (in one step, after connecting the camera) My workflow is as follow: Connect the camera Save the jpegs in a folder (for example: April 2007) Save the raws in a folder (

  • Calculated fields in ssrs

    Hi friends, hope everyone had a good weekend. I have one requirement to call the value from different datasets within the same report.But the value should be returned based on multiple column join values. Ex: Main dataset query   SELECT *  FROM   tab