Adding multiple FOI themes with MapViewer with jdbc_query

Hi,
I'd like to add two themes to a map with the Javascript Mapviewer.
When I use mapview.addThemeBasedFOI(theme); only the theme that finished loading first will display. Is it possible to add multiple themes or am I doing something wrong?
The second thing I tried was using a jdbc_query theme. My javascript looks like this:
           var baseURL = "http://" + document.location.host + "/mapviewer";
            // Create an MVMapView instance to display the map
            var mapview = new MVMapView(document.getElementById("map"), baseURL);
            // Add a base map layer as background.
            mapview.addBaseMapLayer(new MVBaseMap("mvdemo.demo_map"));
            // Add a theme-based FOI layer
            var theme = '<themes><theme name="JDBC_THEME2" >' +
                        '<jdbc_query asis="true" spatial_column="location" jdbc_srid="8307" ' +
                        'render_style="C.RB13_6" datasource="mvdemo">' +
                        '<![CDATA[select sdo_geom.sdo_buffer(A.location,1,0.005,' +
                        '\'unit=mile arc_tolerance=0.005\') location ' +
                        ' from customers A where sales<=100]]>' +
                        '</jdbc_query></theme><theme name="JDBC_THEME" >' +
                        '<jdbc_query asis="true" spatial_column="location" jdbc_srid="8307" ' +
                        'render_style="C.RED" datasource="mvdemo">' +
                        'select sdo_geom.sdo_buffer(A.location,1,0.005,' +
                        '\'unit=mile arc_tolerance=0.005\') location ' +
                        ' from customers A where sales>100' +
                        '</jdbc_query></theme></themes>' ;
            console.log(theme);
            buffertheme = new MVThemeBasedFOI('buffertheme', theme);
            mapview.addThemeBasedFOI(buffertheme);
            // Set the initial map center and zoom level
            mapview.setCenter(MVSdoGeometry.createPoint(-122.45, 37.7706, 8307));
            mapview.setZoomLevel(4);
            // Add a navigation panel on the right side of the map
            mapview.addNavigationPanel('east');
            // Add a scale bar
            mapview.addScaleBar();
            // Display the map.
            mapview.display();I used the examples from page 222 and 225 from the Mapviewer manual (mapviewer_10131_ug.pdf) and it uses the MVDEMO schema.
The xml for the themes:
<themes>
    <theme name="JDBC_THEME2">
        <jdbc_query asis="true" spatial_column="location" jdbc_srid="8307" render_style="C.RB13_6" datasource="mvdemo">
            <![CDATA[select sdo_geom.sdo_buffer(A.location,1,0.005,'unit=mile arc_tolerance=0.005') location from customers A where sales<=100]]></jdbc_query>
    </theme>
    <theme name="JDBC_THEME">
        <jdbc_query asis="true" spatial_column="location" jdbc_srid="8307" render_style="C.RED" datasource="mvdemo">
            select sdo_geom.sdo_buffer(A.location,1,0.005,'unit=mile arc_tolerance=0.005') location from customers A
            where sales>100
        </jdbc_query>
    </theme>
</themes>In this example I want to display 2 different colors, one for sales>100 and one for sales<=100. Again, only the first color is displaying. I searched for some examples and found <map_request> xml files where multiple themes are allowed, is it also allowed with the Javascript Mapviewer?
Thanks for you help!
Jeroen

Hi
Are you trying to concatenating or adding it ? i mean you said adding year measure1measure2
year is character type so i guess that you want to display like 2011 45000 isnt it
then use concatenation or try to change the measure value to dimension to keep side by side
Hope this helps u

Similar Messages

  • FOIs not appearing in MapViewer with Internet Explorer

    I am using MapViewer 10133p5 and having some trouble placing FOIs in Internet Explorer (that is to say, the code that seems to be working fine in Firefox fails in IE). I have reduced my HTML to what I think are the bare essentials and pasted its contents below.
    In the Firefox browser, any time I click on the map I see an alert telling me the coordinates upon which I clicked, then an FOI (with an image on top of it) is placed on the map. Finally, I see another alert letting me know that the FOI was placed. In IE7, I see the alerts, but I never see the FOI. Lastly, from what I can tell, the WebLogic server that is serving the MapViewer app gets a request whenever I do this in Firefox, but does not see a request come through when I do it in IE.
    IE gives me no indication that anything is wrong, and since the final alert (see below) fires, I must presume that the script execution isn't failing. Any guidance would be greatly appreciated.
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <title>Testing the map</title>
    <script
         language="Javascript"
         src="http://localhost:7001/mapviewer/fsmc/jslib/oraclemaps.js">
    </script>
    <script language=Javascript>
    var mapview;
    var FOICount = 0;
    function showMap()
    var baseURL = "http://localhost:7001/mapviewer";
    var mapCenterLon = -110.0;
    var mapCenterLat = 45.9;
    var mapZoom = 4;
    var mpoint = MVSdoGeometry.createPoint(mapCenterLon,mapCenterLat,8307);
    mapview = new MVMapView(document.getElementById("map"), baseURL);
    mapview.addBaseMapLayer(new MVBaseMap("test_map.sweetgrass_county"));
    mapview.setCenter(mpoint);
    mapview.setZoomLevel(mapZoom);
    mapview.addEventListener("mouse_click", mapview_mouse_click);     
    mapview.display();      
    function mapview_mouse_click()
         var mouseLocation = mapview.getMouseLocation();
         var mouseLocationX = mouseLocation.getPointX();
         var mouseLocationY = mouseLocation.getPointY();
         alert(mouseLocationX + ',' + mouseLocationY);
         pointClicked = MVSdoGeometry.createPoint(mouseLocationX, mouseLocationY, 8307);
         pointClickedFOI = new MVFOI("ID:" + (FOICount++), pointClicked, "MY.STYLE.NAME");
         pointClickedFOI.setWidth(48);
         pointClickedFOI.setHeight(48);
         pointClickedFOI.setHTMLElement('<img src="./pin.png"/>');
         mapview.addFOI(pointClickedFOI);
         alert('Added the FOI at ' + mouseLocationX + ',' + mouseLocationY);
    </script>
    </head>
    <body onload=javascript:showMap();>
         <div id="map"
              style="z-index: 0;position: absolute; display: block; left:0px; top:10px; width:95%; height:95%">
         </div>
    </body>
    </html>

    This is a oracle maps bug. The workaround is to add the image as a separate marker foi.
    pointClicked = MVSdoGeometry.createPoint(mouseLocationX, mouseLocationY, 8307);
    pointClickedFOI = new MVFOI("ID:" + (FOICount++), pointClicked, "MY.STYLE.NAME");
    pointClickedFOI.setWidth(48);
    pointClickedFOI.setHeight(48);
    mapview.addFOI(pointClickedFOI);
    markerFOI = MVFOI.createMarkerFOI("ID:" + (FOICount++), pointClicked, "./pin.png");
    mapview.addFOI(markerFOI );

  • I have a iPhone 3GS and my husband has the iPhone 4 , both phones with updated current . We added iMessage to them at first it was great, now I don't get half the texts my husbands send and when I send him a text message it will come up from my email???

    I have a iPhone 3GS and my husband has an iPhone 4, both phones are updated. We added iMessage the them both and at first it was great, the messages appear in the text messages under the phone contacts and when I send a text message it will either be a green message  or a blue one for (iMessage) depending on the signal.  Now when my husband sends a text message to me I don't get them all or some days none. When I send him a text message he gets them from my email address. I cannot send him a standard text anymore my phone only wants to iMessage, so if the signal is not right it just sits there undelivered???
    I also have a friend who that we regularly texted each other, for the past 4 months I can receive her texts but she never gets mine? And I have tried countless times, now iv given up trying and I don't use texting to either, but everyone else no problem.

    You and your husband can share a store account and still have seperate iCloud accounts for your contacts, bookmarks and stuff like that.  Click here for instructions to make an apple account without entering a credit card.  Make sure you use a different email address for each apple account. 
    Set up your iPhone/iPad whatever using the new account for iCloud.  Then go into settings/store and sign in with your purchasing account, you may need to sign out of the other account.  To the best of my knowledge, your household is allowed to share purchased legally, someone please correct me if I'm wrong.
    Once you each have your own devices set to your own accounts you can set them to backup to that account and it will keep all your contacts seperate.

  • Adding Multiple Records with Express

    Hello All,
    We have a CRUD application written in Express 2.0 that allows users to
    enter part numbers and associated information. Our part numbers are
    structured as a prefix, alpha, suffix and 'M' or 'P' number variations :
    1 AB 2 P3 for example. We have provided functionality to allow the
    user to enter multiple P or M variations all at once, say 1 AB 2 P1 thru
    P100,
    using a dialog box where they enter the starting number, ending number
    and step.
    The problem comes in the AddRecordsToSave method.
    This method correctly builds the array of BusinessClass needed to be
    passed to the Save method, however, the Save method adds only the
    initial record (the one from the original Express data entry screen)
    to the database.
    I have traced the problem to the BusinessClient.Update method called
    from
    Save. I believe I am missing some query information that should be
    built into
    AddRecordsToSave, but I am completely unsure of how to provide this.
    As you can see in the attached code, we are using the LogAttr method to
    post
    changes. Apparently this is not enough. What am I missing here?
    The InstanceStatus key of the added records is set to ST_EMPTY by
    default....
    I have tried forcing this to ST_UPDATE, only to receive an error that it
    should
    be ST_EMPTY......?? I am confused. If anyone can shed some light on this
    for me,
    I would appreciate it. Thanks for any help.
    Scott Guman E-mail: [email protected]
    IRM Analyst II Phone: (610) 709-2144
    Mack Trucks, Inc. Fax: (610) 709-4713
    Allentown, PA 18105

    Hi There,
    If attr is not specified in your LogAttr() call, the
    BusinessClass
    will be put in the update state but not attributes will
    be logged.
    That may be the reason why only the displayed record(
    fetched from
    the DB ) is getting logged, but not the new records.
    I think you should use ATTR_SIMPLE with LogAttr. This
    will cause
    all the attributes to be logged and a proper query to
    be built
    to insert the newly created record. I am no Express
    Guru,
    but it works fine for me. Also, try not to modify
    InstanceStatus directly.
    Sometimes it might lead to inconsistencies. The online
    help
    The Add Records to Save example really helps.
    Good luck!
    Ajith Kallambella. M.
    Forte Systems Engineer,
    International Business Corporation
    -----Original Message-----
    From: Scott Guman [SMTP:[email protected]]
    Sent: Wednesday, September 16, 1998 9:34 AM
    To: 'Forte Users'
    Subject: Adding Multiple Records with Express
    Hello All,
    We have a CRUD application written in Express 2.0 that
    allows users to
    enter part numbers and associated information. Our
    part numbers are
    structured as a prefix, alpha, suffix and 'M' or 'P'
    number variations :
    1 AB 2 P3 for example. We have provided functionality
    to allow the
    user to enter multiple P or M variations all at once,
    say 1 AB 2 P1 thru
    P100,
    using a dialog box where they enter the starting
    number, ending number
    and step.
    The problem comes in the AddRecordsToSave method.
    This method correctly builds the array of BusinessClass
    needed to be
    passed to the Save method, however, the Save method
    adds only the
    initial record (the one from the original Express
    data entry screen)
    to the database.
    I have traced the problem to the BusinessClient.Update
    method called
    from
    Save. I believe I am missing some query information
    that should be
    built into
    AddRecordsToSave, but I am completely unsure of how to
    provide this.
    As you can see in the attached code, we are using the
    LogAttr method to
    post
    changes. Apparently this is not enough. What am I
    missing here?
    The InstanceStatus key of the added records is set to
    ST_EMPTY by
    default....
    I have tried forcing this to ST_UPDATE, only to receive
    an error that it
    should
    be ST_EMPTY......?? I am confused. If anyone can shed
    some light on this
    for me,
    I would appreciate it. Thanks for any help.
    Scott Guman E-mail:
    [email protected]
    IRM Analyst II Phone: (610) 709-2144
    Mack Trucks, Inc. Fax: (610) 709-4713
    Allentown, PA 18105
    << File: AddRecordsToSave.txt >>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • Problem with WMS themes & Oracle MapViewer Version 11.1.1.2

    Hello, in my application I load the background raster from a external server using wms. With differents version of mapviewer 11 with a weblogic server (e.g: release 1, release 11.1.1.4) all it's allrigth, but when I change the mapviewer to release 11.1.1.2 I can't see the raster and I get the next error:
    21-sep-2011 11:33:10 oracle.sdovis.theme.WMSMapThemeDefinition setSrs
    INFO: Theme SRID set to 23030 for EPSG 82337
    21-sep-2011 11:33:10 oracle.sdovis.theme.WMSMapThemeProducer prepareData
    SEVERE: MAPVIEWER-01048: Cannot load WMS map image.
    21-sep-2011 11:33:10 oracle.sdovis.theme.DynGeomThemeProducer prepareData
    I can understand why..., I don't know what's is the problem because differents versions of mapviewer work without problem on the same weblogic server (Weblogic 11 patchset R2).
    Anyone know if mapviewer 11.1.1.2 has a problem with WMS?
    Thanks for your answer!!

    although with Oracle Fusion Middleware MapViewer Version 11g ps3 (11.1.1.4) and 11g ps4 (11.1.1.5.1) everything work ok in my WebLogic Server: 10.3.3.0, with Mapviewer Version 11.1.1.2 I get the next error:
    29-sep-2011 13:25:53 oracle.sdovis.theme.WMSMapThemeDefinition setSrs
    INFO: Theme SRID set to 23030 for EPSG 82337
    sun.awt.image.ImageFormatException: Not a JPEG file: starts with 0xff 0xd9
         at sun.awt.image.JPEGImageDecoder.readImage(Native Method)
         at sun.awt.image.JPEGImageDecoder.produceImage(JPEGImageDecoder.java:119)
         at sun.awt.image.InputStreamImageSource.doFetch(InputStreamImageSource.java:246)
         at sun.awt.image.ImageFetcher.fetchloop(ImageFetcher.java:172)
         at sun.awt.image.ImageFetcher.run(ImageFetcher.java:136)
    29-sep-2011 13:25:53 oracle.sdovis.theme.WMSMapThemeProducer prepareData
    SEVERE: MAPVIEWER-01048: Cannot load WMS map image.
    I've seen that the wms external service works ok and returns an url with the correct image, but something wrong happens inside of mapviewer that don't allow generate the image....

  • Must I put the raster data in Oracle if I want to use them with MapViewer?

    I want to publish some raster data with MapViewer, must i put them in oracle, can I could put them in folder?

    you must store the images in oracle database. GeoRaster is recommended for the storage. Please post your MapViewer specific questions to the MapViewer forum:
    MapViewer

  • I am having problems loading sampler patches into the exs24 sampler, when i got into edit menu and load multiple samples all the samples r greyed out and i cannot slect them, any help with this would be much appreciated

    I am having problems loading sampler patches into the exs24 sampler, when i got into edit menu and load multiple samples all the samples r greyed out and i cannot slect them, any help with this would be much appreciated

    It is very difficult to offer troubleshooting suggestions when the "os version" you are using is unknown as each os has their own troubleshooting solutions. 
    How large is your hard drive and how much hard drive space do you have left? 

  • OBIEE 10g integration with mapviewer

    hello all,
    i am trying integrate mapviewer map in obiee dashboard. and i am able to show maps which do not use bi answers data for any kind of interaction (i.e,no "nsdp" section in the map file). this works fine. if i am using any dashboard prompt to filter the map ( for example if want to see a particular county from a statewide map using dashboard prompt as filter) it is giving error as below:
    *[MVThemeBasedFOIControl.foiLoaded] MAPVIEWER-05523: Cannot process response from MapViewer server. (MAPVIEWER-06009: Error processing an FOI request.*
    Root cause:FOIServlet:Missing IN or OUT parameter at index:: 1)
    there are two databases with same set of data. one is poc which was created by some one else. so we had to setup new schema to properly define all the data.
    so problem occurs when using new schema as datasource. all the html datasource configurations are properly defined on mapviewer for new data.
    followed these steps in setting up new schema:
    ->initially did not run any scripts nor created mvdemo , started clean and loaded the required tables using map builder from GIS shape files with geometry projected to world_mercator(54004). on the contrary POC schema two geometry columns in each table where one is actual coordinate system from GIS file and then it is projected to world_mercator system and loaded into second column using sql. all the geometry indexes looked similar.
    ->created all the mapping metadata exactly same as the POC. where all the themes uses world_mercator geometry.
    both schemas are on same database. i have no idea of what causing the error when i use dashboard prompts. i am not sure if there are additional steps to be followed in creating database or if something else is missing some where. i have no prior experience with mapviewer and oracle spatial. this is kind of learning curve for me.
    please let me know any suggestions or solutions .
    regards,
    mallik
    Edited by: 863261 on Jun 2, 2011 12:33 PM
    Edited by: 863261 on Jun 8, 2011 5:49 AM

    Hello,
    Is your environment similar to this in http://obiee-bip.blogspot.com/2010/10/obiee-integration-with-oracle-access.html or something different like diid you have create groups in OAM .?
    Also assuming your repository groups and presentation catalog groups are already setup. In the different authorization init block you have created enable the ‘Required for Authentication’ check box.
    NOTE: According to Oracle Access Manager (OAM) and Oracle Business Intelligence (OBI) Integration [ID 1217103.1]
    Creation of group should be done by loging as Administrator user to rpd and webcat. This should be done on different machine that does not have OAM integration. With OAM integration only OAM user can log into presentation services and they don’t have Administrator user privileges.
    Hope this helps. Pls mark if it does.
    Thanks,
    SVS

  • Visualizing map data with mapviewer

    Hello. I have successfully deployed mapviewer using oc4j standalone. What I want to do now is to visualize maps based on data from tables I have in my database. I have successfully added a datasource using the admin tools on the http://localhost:8888/mapviewer/ site as I am getting the following response:
    <?xml version="1.0" ?>
    - <non_map_response>
    <add_data_source succeed="true" />
    </non_map_response>
    How can I visualize this data in a map format? Is mapviewer simply a middle tier application or is there some way I can view the data like in an applet?

    This also relates to your subsequent post on visualizing data with the Map Definition Tool.
    As Justin suggested, use the 9.0.4 preview version if you're getting started with MapViewer. And use the demo JSPs to do some basic visualization.
    Assuming your database version is 9.2.x.x do the following (if the database version is 8i or 9.0.1.x then you need to install some views. See section 1.4.2.3 in the doc for the steps and where to locate the sql scripts):
    1. Install the demo data (in mvdemo.dmp), and
    2. Use the demo JSPs mapinit.jsp or mapclient.jsp to view the demo data as a map.
    The doc (section 1.6) explains how to do this.
    Now for the map def tool.
    That is only for setting up symbology, styling rules, and specifying which themes make up a map. It does not render the maps.
    To simply view your spatial data without any fancy styling and symbology (e.g. to test that Mapviewer works and your data is valid) use the jview demo jsp.
    Hope this helps. If it does not, complain.

  • I have ripped all of my Cds into iTune, now I cannot find where some of the artists have been filled, not all the artists are listed, yet others are listed multiple times as they play with other groups. How do I list all one artist under his name? I know

    Sorry this will appear pretty basic stuff.  I have ripped all my Cds into iTunes, but in starting to make playlists it is apparent that some artists are listed multiple times as they appear with different bands, and others do not appear at all.  I have tried searching different categories, compilations etc, and Finder box does not bring them up.
    My questions are:-
    Do I need additional software to manipulate my tunes in iTunes?
    If so what is suggested?
    or if not:-
    How can I re arrange the tunes so that they appear only under one artist?
    How do I make my "lost" artists tunes appear?
    Thanks for any advice.

    I am not really following what the problem is here.  Artists are listed in the Artist field.  I guess you could stick individual artists in a band in a field such as comments, but then you would have to include searching the comments field in your search.  In which fields are these names located?
    How are you making these playlists? Are these smart playlists or are you just dragging tracks to a playlist?
    Are you doing this search with Finder's find or with iTunes' search?
    If I knew exactly what it was you were trying to do I could tell you if you need addditional software.  In reality though there isn't "additional software" for iTunes.  There's Applescript plugins but I don't see how the ones with which I am familiar would have anything to do with searching for artist names.
    How can I re arrange the tunes so that they appear only under one artist?
    Steve MacGuire aka turingtest2 - iTunes & iPod Hints & Tips - Grouping Tracks Into Albums - http://www.samsoft.org.uk/iTunes/grouping.asp (older post on Apple Discussions http://discussions.apple.com/message.jspa?messageID=9910895)
    Quick answer:  Select all the tracks on the album, File > get info, and either give them all a single "album artist", or check the "compilation" flag (as in https://discussions.apple.com/message/17670085).
    If these are from multiple-CD sets you may also need to enter the appropriate information in the disc number fields.

  • I have a production mobile Flex app that uses RemoteObject calls for all data access, and it's working well, except for a new remote call I just added that only fails when running with a release build.  The same call works fine when running on the device

    I have a production mobile Flex app that uses RemoteObject calls for all data access, and it's working well, except for a new remote call I just added that only fails when running with a release build. The same call works fine when running on the device (iPhone) using debug build. When running with a release build, the result handler is never called (nor is the fault handler called). Viewing the BlazeDS logs in debug mode, the call is received and send back with data. I've narrowed it down to what seems to be a data size issue.
    I have targeted one specific data call that returns in the String value a string length of 44kb, which fails in the release build (result or fault handler never called), but the result handler is called as expected in debug build. When I do not populate the String value (in server side Java code) on the object (just set it empty string), the result handler is then called, and the object is returned (release build).
    The custom object being returned in the call is a very a simple object, with getters/setters for simple types boolean, int, String, and one org.23c.dom.Document type. This same object type is used on other other RemoteObject calls (different data) and works fine (release and debug builds). I originally was returning as a Document, but, just to make sure this wasn't the problem, changed the value to be returned to a String, just to rule out XML/Dom issues in serialization.
    I don't understand 1) why the release build vs. debug build behavior is different for a RemoteObject call, 2) why the calls work in debug build when sending over a somewhat large (but, not unreasonable) amount of data in a String object, but not in release build.
    I have't tried to find out exactly where the failure point in size is, but, not sure that's even relevant, since 44kb isn't an unreasonable size to expect.
    By turning on the Debug mode in BlazeDS, I can see the object and it's attributes being serialized and everything looks good there. The calls are received and processed appropriately in BlazeDS for both debug and release build testing.
    Anyone have an idea on other things to try to debug/resolve this?
    Platform testing is BlazeDS 4, Flashbuilder 4.7, Websphere 8 server, iPhone (iOS 7.1.2). Tried using multiple Flex SDK's 4.12 to the latest 4.13, with no change in behavior.
    Thanks!

    After a week's worth of debugging, I found the issue.
    The Java type returned from the call was defined as ArrayList.  Changing it to List resolved the problem.
    I'm not sure why ArrayList isn't a valid return type, I've been looking at the Adobe docs, and still can't see why this isn't valid.  And, why it works in Debug mode and not in Release build is even stranger.  Maybe someone can shed some light on the logic here to me.

  • I have multiple users on my computer with separate iTunes libraries.  can we share?

    I have multiple users on my computer with separate iTunes libraries.  Is it possible to share the libraries?  The "share library" preference doesn't seem to work.

    Hi b noir, I also have two users on one pc with two different iTunes libraries.  But I also want to put them onto an external hard drive so that I can free up some memory on the pc.  So I figure I need to consolidate the two users iTunes libraries first before moving to hard drive?  But not quite sure how to do that on the iTunes 11?  Thanking you in advance!!

  • RegionRenderer encodeAll The region component with id: pt1:r1 has detected a page fragment with multiple root components. Fragments with more than one root component may not display correctly in a region and may have a negative impact on performance.

    Hi,
    I am using JDEV 11.1.2.1.0
    I am getting the following error :-
    <RegionRenderer> <encodeAll> The region component with id: pt1:r1 has detected a page fragment with multiple root components. Fragments with more than one root component may not display correctly in a region and may have a negative impact on performance. It is recommended that you restructure the page fragment to have a single root component.
    Piece of code is for region is:-
       <f:facet name="second">
                                                <af:panelStretchLayout id="pa1"
                                                                       binding="#{backingBeanScope.Assign.pa1}">
                                                    <f:facet name="center">
                                                        <af:region value="#{bindings.tfdAssignGraph1.regionModel}" id="r1"
                                                                   binding="#{backingBeanScope.Assign.r1}"/>
                                                    </f:facet>
                                                </af:panelStretchLayout>
                                            </f:facet>
    How do I resolve it ?
    Thanks,

    Hi,
    I see at least 3 errors
    1. <RegionRenderer> <encodeAll> The region component with id: pt1:r1 has detected a page fragment with multiple root components.
    the page fragment should only have a single component under the jsp:root tag. If you see more than one, wrap them in e.g. an af:panelGroupLayout or af:group component
    2. SAPFunction.jspx/.xml" has an invalid character ".".
    check the document (you can open it in JDeveloper if the customization was a seeded one. Seems that editing this file smething has gone bad
    3. The expression "#{bindings..regionModel}" (that was specified for the RegionModel "value" attribute of the region component with id "pePanel") evaluated to null.
    "pageeditorpanel" does seem to be missing in the PageDef file of the page holding the region
    Frank

  • Multiple emails in outlook 2010 with pdf attachments will not print

    Here is our issue
    1. Select multiple emails in outlook 2010 with pdf attachments (versie 10.0.1)
    2. Go to file -> Print
    3. Select Print Options.  Check the box for Print Attached Files
    4. click Print The emails will print but only the first attachment will print. 
    After that we recieve the following error
    There was an error opening this document. The selected file cannot be found.
    We have tried turning off enhanced security mode but still get the same result

    You can also extract these pdf attachments via email attachment extractor from here and then send the pdf file for printing. I think this will be easier for you to print them all.

  • Multiplication error in DLLs created with SIT

    I have a problem with a multiplication in a DLL created with the Mathwork's Matlab/Simulink and National Instruments SIT. When multiplying two values of different types (fixed point types) I get really strange and unexplainable results. When I run the simulation in Simulink only, I do not get the error. But when running the same program as DLL in Labview I get a result of 146.xxx instead of 235. Feel free to chck out the included files (.mdl, .dll, .vi).
    I'm desperately looking for solutions.
    Philip
    Attachments:
    interface_test.vi ‏34 KB
    interface_test.dll ‏130 KB
    interface_test.mdl ‏11 KB

    Go ahead and hook up your error clusters and attach them to an indicator. This way you can see if there is a labVIEW problem with your code.
    I cannot run your code myself because of a lack of software but I opened the VI up and saw it was missing error handling.

Maybe you are looking for