Substyle of theme is displayed in preview but not in map

Hi All,
i am developing a map with the oracle sample schema oe and i want to display customer data based on the two parameters credit_limit and income_level.
i created two advanced styles:
for income_level:
<?xml version="1.0" ?>
<AdvancedStyle>
     <BucketStyle>
        <Buckets>
            <CollectionBucket seq="0" keep_white_space="true" type="string" delimiter=";" style="M.VECTOR_CIRCLE_A">A: Below 30,000</CollectionBucket>
            <CollectionBucket seq="1" keep_white_space="true" type="string" delimiter=";" style="M.VECTOR_CIRCLE_B">B: 30,000 - 49,999</CollectionBucket>
            <CollectionBucket seq="2" keep_white_space="true" type="string" delimiter=";" style="M.VECTOR_CIRCLE_C">C: 50,000 - 69,999</CollectionBucket>
            <CollectionBucket seq="3" keep_white_space="true" type="string" delimiter=";" style="M.VECTOR_CIRCLE_D">D: 70,000 - 89,999</CollectionBucket>
            <CollectionBucket seq="4" keep_white_space="true" type="string" delimiter=";" style="M.VECTOR_CIRCLE_E">E: 90,000 - 109,999</CollectionBucket>
            <CollectionBucket seq="5" keep_white_space="true" type="string" delimiter=";" style="M.VECTOR_CIRCLE_F">F: 110,000 - 129,999</CollectionBucket>
            <CollectionBucket seq="6" keep_white_space="true" type="string" delimiter=";" style="M.VECTOR_CIRCLE_G">G: 130,000 - 149,999</CollectionBucket>
            <CollectionBucket seq="7" keep_white_space="true" type="string" delimiter=";" style="M.VECTOR_CIRCLE_H">H: 150,000 - 169,999</CollectionBucket>
            <CollectionBucket seq="8" keep_white_space="true" type="string" delimiter=";" style="M.VECTOR_CIRCLE_I">I: 170,000 - 189,999</CollectionBucket>
            <CollectionBucket seq="9" keep_white_space="true" type="string" delimiter=";" style="M.VECTOR_CIRCLE_J">J: 190,000 - 249,999</CollectionBucket>
            <CollectionBucket seq="10" keep_white_space="true" type="string" delimiter=";" style="M.VECTOR_CIRCLE_K">K: 250,000 - 299,999</CollectionBucket>
            <CollectionBucket seq="11" keep_white_space="true" type="string" delimiter=";" style="M.VECTOR_CIRCLE_L">L: 300,000 and above</CollectionBucket>
    </Buckets>
   </BucketStyle>
</AdvancedStyle>and for credit_limit:
<?xml version="1.0" ?>
<AdvancedStyle>
    <VariableMarkerStyle basemarker="M.VECTOR_CIRCLE_TRANSPARENT" startsize="5" increment="2">
        <Buckets default_style="M.VECTOR_CIRCLE_TRANSPARENT">
            <RangedBucket seq="0" label="0 - 200" low="0" high="200"/>
            <RangedBucket seq="1" label="201 - 400" low="201" high="400"/>
            <RangedBucket seq="2" label="401 - 600" low="401" high="600"/>
            <RangedBucket seq="3" label="601 - 800" low="601" high="800"/>
            <RangedBucket seq="4" label="801 - 1000" low="801" high="1000"/>
            <RangedBucket seq="5" label="1001 - 1200" low="1001" high="1200"/>
            <RangedBucket seq="6" label="1201 - 1400" low="1201" high="1400"/>
            <RangedBucket seq="7" label="1401 - 999999" low="1401" high="999999"/>
    </Buckets>
   </VariableMarkerStyle>
</AdvancedStyle>i created a geometry theme with an advanced style:
<?xml version="1.0" standalone="yes"?>
<styling_rules>
    <hidden_info>
        <field column="CUST_LAST_NAME" name="Last Name"/>
        <field column="CUST_FIRST_NAME" name="First Name"/>
        <field column="INCOME_LEVEL" name="Income Level"/>
        <field column="CREDIT_LIMIT" name="Credit Limit"/>
  </hidden_info>
    <rule column="CREDIT_LIMIT,INCOME_LEVEL">
        <features> ((instr(upper(income_level), nvl(upper(:param1),upper(income_level))))&gt;0
and
credit_limit = nvl(:param2,credit_limit)
and
(select sum(order_total) from orders where customer_id = customers.customer_id) &gt; 0)
and
(cust_geo_location is not null) </features>
        <label column="CUST_LAST_NAME" style="T.TEXT"> 1 </label>
        <rendering>
           <style name="V.VARIABLE_VECTOR_CIRCLE" value_columns="CREDIT_LIMIT">
              <substyle name="V.COLLECTION_BUCKET_INCOME_LEVEL" value_columns="INCOME_LEVEL" changes="FILL_COLOR"/>
     </style>
    </rendering>
  </rule>
</styling_rules>and in the preview of mapbuilder it is showing up with different colors in different circle-sizes.
BUT
if i use this theme in my map i only get the different circle-sizes in white. the substyle semms to be not applied.
i call the theme in the way i usual way:
            var themebasedfoi = new MVThemeBasedFOI('foi_oe_customer','orcldemo_oe.oe_customer_location');   
            themebasedfoi.setBringToTopOnMouseOver(true);
            themebasedfoi.setBoundingTheme(true);
            mapview.addThemeBasedFOI(themebasedfoi);
            mapview.display();if i change the 'mainstyle' from white circle to red circle and reload the map it will display different sized red circles, so it is the right theme i am loading. (btw i only have one them in my db...)
any suggestions on this issue?
the used version of mapbuilder is: Version: 10.1.3.3 patch 4
the used version of mapviewer is: OracleAS MapViewer Version: Ver11_1_1_B090416
the os is OEL 5.3
i am glad for any help, thanks in advance :)
wolfgang
edit:
WebLogic Console Outpt while loading the map:
INFO: *** Oracle MapTileServer started. ***
20.07.2009 11:39:44 oracle.sdovis.DBSRSCache register
INFO: Loading SRS information from MDSYS.cs_srs (srid=54004).
20.07.2009 11:39:44 oracle.sdovis.CacheMgr2 createGeomGroup
INFO: Creating/replacing a geometry cache group: sdovis_subreg_oe_jdbc:oracle:thin:@orademo:1521:orcldemo : CUSTOMERS_CUST_GEO_LOCATION_PDT_GEOM.
20.07.2009 11:39:45 oracle.sdovis.DBSRSCache register
INFO: Loading SRS information from MDSYS.cs_srs (srid=8307).
20.07.2009 11:39:45 oracle.sdovis.CacheMgr2 createGeomGroup
INFO: Creating/replacing a geometry cache group: sdovis_subreg_oe_jdbc:oracle:thin:@orademo:1521:orcldemo : CUSTOMERS_CUST_GEO_LOCATION_54004_PDT_GEOM.
20.07.2009 11:39:47 oracle.sdovis.theme.PredGeomThemeProducer loadFeaturesInWindow
INFO: [ OE_CUSTOMER_LOCATION ] sql exec time: 2590ms, total time loading 46 features: 2692ms.
20.07.2009 11:39:48 oracle.sdovis.theme.PredGeomThemeProducer loadFeaturesInWindow
INFO: [ OE_CUSTOMER_LOCATION ] sql exec time: 281ms, total time loading 46 features: 409ms.Edited by: Wolfgang on 20.07.2009 11:42

Hi Wolfgang,
currently, the substyle parameters are not supported for FOI themes in Oracle Maps. For this reason you are not getting the correct colors for your FOI markers. This support can be added on a future patch. Thanks.
Joao

Similar Messages

  • .swf displaying in preview, but not on actual web page

    As above really. I don't really use Flash, but was just trying to put up a little video demo online.
    Just dragged the video onto the canvas, published it as an .swf, but when I upload it all and visit the web page, the video clip / swf isn't displaying.
    Its fine in the preview though.
    The page is here :
    http://www.hpwebdesign.co.uk/demo.html
    Any ideas what I'm doing wrong?
    Thanks.

    OK - I didn't think you needed to upload the original video clip.
    Anyway - I've recreated my steps.
    1. Opened Flash.
    2. Created a new ActionScript 3 page
    3. File > Import > Video with Load external video with playback component
    4. Save file
    5. Publish SWF
    6. Switch to DW and Insert > Media > SWF
    Before switching to DW, it all looks OK in the preview.
    How do I get Flash to create the HTML page? I had a quick look through the menus, but didn't see anything....

  • Standard text displayed correctly in print preview but not in print

    Hi,
    I have a script in which a standard text has to be printed in the output.
    The standard text contains some german characters.
    These characters are displayed correctly in print preview but not in print.
    The text is maintained in 3 languages DE,EN and Russian.
    The same text is being printed in some standard report. But that is displayed correctly both in print and print preview.
    Please suggest something.
    Regards,
    Richa Aggarwal

    Hi Richa,
    Check this document from SAP: [help doc|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0652a95-5f0b-2a10-5aba-c085f8bbe6d6?QuickLink=index&overridelayout=true]
    It indicates that you have to be sure to select "Unicode" fonts for your SAPScript form to ensure the proper printing of "Unicode" characters.  If a character does not display then that means it does not exist in the font that you are using.
    Regards,
    Ryan Crosby

  • TS4185 i can see and hear them, they can hear me, but not see me, why?

    I can see and hear them, they can hear me, but not see me on facetime, why?

    Ok,
    So when you look at your Preview it is Black indicating a camera is there and selected as no camera would not show a video icon and if from the Preferences would be a grey background and a no camera message.
    I see this is a iMac. Any chance it is a G5 one ?
    If so go to System preferences > Displays and make sure it is set to Millions. (Change it and change it back to be sure)
    9:00 PM Wednesday; June 27, 2007

  • Getting values in preview but not on paper

    hi gurus,
                 the variables on a window is showing values in preview but not on paper the window is above a top-left  portion of other window..
    i need to display those variables on paper at print time...as alignment is perfect ..suggest me how to do?
    thnx in advance!!

    DEAR SEE THE POSITIONING OF WINDOWS,
    FOR THE BOTH WINDOWS WHICH ARE COLLIDING,
    GO TO OUTPUT OPTIONS AND MAKE UPPERMARGIN AND HEIGHT IN SUCH A MANNER THAT THEY NO LONGER COLLIDE.
    SEE THE OUTPUT.
    I THINK THEY ARE COMING NOW.
    REWARD IF USEFUL.
    aMIT sINGLA

  • Simple buttons working in Preview, but not on iPad

    Hello everyone. I have a Button (I'm working in InDesign CS6), with instructions "Go to State". It links to a photo on a seperate layer. The link works perfectly in the SWF preview (shift-command-return). But when I update the file to view it in Adobe Viewer it does not work. (I am using Viewer Vers 25) There are no other functions on the page that could be "blocking" it. In fact, on some pages where there are two or three buttons (all of them with instructions of "Go to State"), 2 may work and one not. I am confused as to how I can see it working in the Preview, but not on the iPad. Any suggestions appreciated. Many thanks!!

    Bob, just got in and downloaded the patch - the buttons are working perfectly now!!
    Thank you for taking the time to help me out!! I'll be more diligent from now on in checking for updates. Thanks again. James

  • Does anyone know why my ipod nano sixth generation is displayed in windows but not itunes? I followed all the suggestions but nothing

    does anyone know why my ipod nano sixth generation is displayed in windows but not itunes? I followed all the suggestions but nothing.
    I apologize if I write bad but I'm Italian

    Doublechecking. Have you also tried a complete uninstall of both iTunes and all the other related software components and then a reinstall? If not, try the instructions from the following document:
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8

  • Flash work in preview but not in the browser!?

    Hi there:)
    I have a .swf file in a table in Dreamweaver. When I preview it in place and in Safari, it plays. When I upload eveything, it is not in any browser on the server.. any ideas?
    Thanks!
    V

    Hi John!
    Yes, sorry about that.. here it is.
    http://farmingtonfarm.com/appraisal.html
    Thanks for your help!!
    v
    Date: Thu, 8 Apr 2010 18:52:05 -0600
    From: [email protected]
    To: [email protected]
    Subject: flash work in preview but not in the browser!?
    Can't really help without a link to the site. Can you provide one?
    >

  • Button hyperlinks work in project preview but not in published .swf

    Captivate 6, button hyperlinks work in project preview but not in published .swf, the cursor changes the “the hand” but the hyperlink does not redirect.
    Any ideas?
    Like I said my buttons work great in preview mode after publishing, one click and the PDF opens in a new browser window. Open the project through the published .swf files and the links will not work.
    Using Captivate 6 on WIndows 7

    Hello,
    Welcome to Adobe Forums.
    Once your project published, add the .swf file in Flash Global Setting :
    1) Right Click on the content (Published .swf file) and click on Global Settings
    2) Go to Advanced Tab and Click on Trusted Location Settings  (Scrool down to see this button)
    3) Click on "Add" button and then "Add file", browse for the Captivate 6 published file and click on OK
    4) Launch the .htm file again (Location where Captivate publish your project)
    Hope this helps !!
    Thanks,
    Vikram

  • Two issues getting a headless error form windows & my clips audio plays in the preview but not once placed in th timeline. I taped with a panasonic HC 750 V. i believe it is with clips filmed using directed not surround audio.

    The title more or less says it all. I have Elements 13 & am Using the Panasonic HC 750V. I shot in AVCHD 1080/60p & instead of surround sound choose the directed feature to focus on the voices in front of me. The audio works in preview but not on the timeline. I am also getting Headless errors when working with premiere that pop up in windows but it does not shut down the system.
    Any help apprecaited.

    pc
    Have you updated your Premiere Elements 13 to 13.1 using an opened project's Help Menu/Update. If not, please do so.
    Just some points of clarification on the AVCHD 1080/60p with which you are having audio problem in Premiere Elements 13.
    a. I see no option to record to tape with your Panasonic model. Is there one? if not, what was recorded to, a memory card?
    b. When you talk about directed not surround audio, are you saying that your video uses Dolby Digital 2 channel stereo instead of 5.1 channel?
    c. Is your AVCHD footage presented to you as AVCHD.mts rather than AVCHD.mp4. I think that is the case if you are referring to Dolby Digital
    rather than AAC audio.
    Are you saying that you get play back video and audio if you double click the video's thumbnail in Project Assets, but you get video but no audio after you drag the file to the Timeline and play back its contents in the Edit area monitor?
    a. Have you checked the Volume control under the Adjust Tab/Adjustments Palette/Volume Panel expanded to make sure the Volume has been taken all the way down? Under that condition, you will get play back in the Preview Window, but no audio from the Timeline level play back in the Edit area monitor.
    b. In that same regard, if you look at the Timeline audio clip, note a yellow orange line that runs horizontally across the duration of the audio clip. Is that at the bottom of the frame or is it in the middle or at the top?
    Do you work with the Elements Organizer at all? That Headess issue sounds like an Elements Organizer issue. More on that later. That issue should not prevent you from continuing your work. But we will explore that next.
    Thanks.
    ATR

  • Captivate 3 shows skin in preview but not when I run after published?

    Captivate 3 shows skin in preview but not when I run after published.  It shows it is included, what's up?

    Is the Skin externalised?  If so, perhaps Flash Global Security is interfering:
    http://www.infosemantics.com.au/adobe-captivate-troubleshooting/how-to-set-up-flash-global -security
    You could also try NOT externalising the skin.

  • Load swf works in Publish Preview but not when published

    Hi Folks,
    I having a problem where im trying to load two 1mb SWF movies into my Flash piece. It works fine in Publish Preview but not when I finally publish. I get this error in IE:
    SecurityError: Error #2000: No active security context.
    I have googled around and there is some talk online of a hack where by you get a timeout to overcome this. However im not so technical do I dont really know how to do this to my code in AS3. My code at the moment is below.
    Any help would be much appreciated and rewarded with Karma
    movieClip_12.addEventListener(MouseEvent.CLICK, fl_ClickToLoadUnloadSWF_9);
    var fl_Loader_9:Loader;
    //This variable keeps track of whether you want to load or unload the SWF
    var fl_ToLoad_9:Boolean = true;
    function fl_ClickToLoadUnloadSWF_9(event:MouseEvent):void
    if(fl_ToLoad_9)
      fl_Loader_9 = new Loader();
      fl_Loader_9.load(new URLRequest("search.swf"));
      addChild(fl_Loader_9);
    else
      fl_Loader_9.unload();
      removeChild(fl_Loader_9);
      fl_Loader_9 = null;
    // Toggle whether you want to load or unload the SWF
    fl_ToLoad_9 = !fl_ToLoad_9;
    movieClip_14.addEventListener(MouseEvent.CLICK, fl_ClickToLoadUnloadSWF_10);
    var fl_Loader_10:Loader;
    //This variable keeps track of whether you want to load or unload the SWF
    var fl_ToLoad_10:Boolean = true;
    function fl_ClickToLoadUnloadSWF_10(event:MouseEvent):void
    if(fl_ToLoad_10)
      fl_Loader_10 = new Loader();
    fl_Loader_10.load(new URLRequest("refunds.swf"));
      addChild(fl_Loader_10);
    else
      fl_Loader_10.unload();
      removeChild(fl_Loader_10);
      fl_Loader_10 = null;
    // Toggle whether you want to load or unload the SWF
    fl_ToLoad_10 = !fl_ToLoad_10;

    I think this is either a problem with my site preLoader or my external .swf Loader. I was checking out the bandwith profiler and saw something weird and I wondered if anyone could explain...I've added a picture. I have a blank frame on only my actions layer to export classes to and it seems that frame 2 is "bleeding" into frame 1. Could this be my problem? Why would this happen? Thanks

  • Photo collage backgrounds and themes available in Elements 8 but not in PE 11?

    How can I use the photo collage backgrounds and themes available in Elements 8 but not in Elements 11?

    Hi gcannice,
    In PSE11 Adobe moved most of the backgrounds, frames, graphics and themes online. That's why you are not able to see those themes, as those are still not downloaded in your machine.
    You will have to keep your Editor launched (with internet connection on) for sometime, in order to see the thumbnails.The online content is differentiated by a blue ribbon on them. Double click on the blue ribboned thumbnail to download the actual content.
    Adobe did this to save lot of amout of space on your machine, and make installtion process faster.
    -Rahul.

  • If I import audio books into the music section of itunes it lists the books as albums and all the chapters as tracks fine when I sync them to my ipod classic, but not if I import them as audiobooks, any ideas please?

    If I import audio books into the music section of itunes it lists the books as albums and all the chapters as tracks fine when I sync them to my ipod classic, but not if I import them as audiobooks and then sync them, any ideas please?

    If you import the audiobook as an audiobook to your iTunes Library, it will be listed in the Books section of your Library. You may need to turn on Books in order to see them. If you cannot see the File/Edit... etc. menu, use CTRL B on your keyboard to make that menu bar appear. Then go to Edit/Preferences>Books and put a tick in the box.
    But, if the imported audiobook shows up in the Music section of your iTunes Library, highglight the files (in iTunes) and select File/Get Info/Options/Media Kind>Audiobook. These files will now transfer to the Books section of iTunes.
    Once on an iPod Classic, look under the Audiobooks menu. Again, you may need to change the settings in the Settings menus, in order to have the Audiobooks option shown on the Main Menu and/or the Music Menu.

  • I have an ipad  and a iphone 5, when i start find mi iphone from the ipad or in the iphone only display the iphone, but not mi ipad it displays with conection, ubication not avaliable, i configure the same apple id in bot devices, and a diferent apple id

    i have an ipad  and a iphone 5, when i start find mi iphone from the ipad or in the iphone only display the iphone, but not mi ipad it displays with conection, ubication not avaliable, i configure the same apple id in bot devices, and a diferent apple id, can help me?

    IOS: using facetime http://support.apple.com/kb/ht4319
    using an ipad will use the email address since you can't make a phone call.  see the link.
    Your basically calling/emailing yourself that's why your getting a busy signal.

Maybe you are looking for