OBIEE11g maps Some map formatting cannot be displayed

Hello!
I'm getting this warning when the obiee11g maps showing more than 500 poligons on OBIEE11g:
Warning:
Some map formatting cannot be displayed.
Edit the query to return fewer rows
But i realy need to show about 600 poligons.
Is there a way I can alter this limit?
Thank you!

Actually I found out that this is not a limitation.
There is a parameter in instanceconfig.xml where you can set the maximum number of polygons:
Inside the ServerInstance tag, you must add the following code:
<SpatialMaps>
<ColocatedOracleMapViewerContextPath>/mapviewer</ColocatedOracleMapViewerContextPath>
<RemoteOracleMapViewerAbsoluteURL></RemoteOracleMapViewerAbsoluteURL>
<LayerDataLayout>
<MaxRecords>900</MaxRecords>
</LayerDataLayout>
</SpatialMaps>
It works!
Tiago Toigo

Similar Messages

  • Text contains formatting - cannot be displayed

    Hi,
    During sales order creation, when we try to maintain one of the header texts, system displays a message, "Text is formatted -> Details".
    Long text shows "You have formatted the text in a way that cannot be displayed by Text Edit Control."
    This text is not being copied from any source; it is maintained manually during sales order creation. Configuration of text types, assignment to procedure and its determination seems to be fine.
    In debug mode, we observed that the field 'thead-tdtexttype' gets value 'DOC' and this is what causes the above message.
    Can someone suggest how formatting type is relevant to text and where can we make those settings in the config.
    Regards,
    KC

    Hello KC,
    You can maintain the text format for text ids in transaction SE75.
    Please see also SAP note # 543726 on the SAP Service Marketplace.
    Best regards
    Martin

  • Export to excel issue - date format cannot be displayed properly

    Dear all,
    When we do a export to excel, if it has date format, we always have problem on displaying it in excel. Some of the date if we change the data format, it will be changed to the correct way. Others will remain the old data format. Any idea?
    I've checked the SAP note. It doesn't work. Thank you in advance.
    Regards,
    Yuka
    SAP Note:
    Click the Excel symbol in the task bar in Business One
    Save the file as ".txt"
    Open Excel and open the file as a ".txt" (Select in "Files of type" All Files (,))
    In the Text Import Wizard Select "Delimited" and for "Start import at row" 1.
    Click "Next"
    In the Text Import Wizard - Step 2, select 'tab' in "Delimiters", for "Text qualifier:" choose ""
    Click "Next"
    In the Text Import Wizard - Step 3, highlight the Date column and in "Column data format" check the radio button Date in the drop down menu beside Date you can set the date format you require
    Click "Finish"

    Dear Yuka,
    You may check this thread:
    Re: Incorrect date format in excel reports
    Thanks,
    Gordon

  • How can I solve this error message? Some of your photos, including the photo "IMG_0374.jpg", were not copied to the iPad "(my name's) iPad" because they cannot be displayed on your iPad.

    how can I solve this error message? "Some of your photos, including the photo “IMG_0374.jpg”, were not copied to the iPad “(my name’s) iPad” because they cannot be displayed on your iPad."
    There were 273 photos in the event syncing from my Mac, but only the last 103 made it to the ipad. Most of the photos were taken by an iphone. I would appreciate any thoughts or insights - thanks.

    Adrian-
    That error message suggests the photo is somehow corrupt.
    Do you have the Apple Camera Connection Kit?  You can set up a USB thumb drive with MS-DOS FAT-32 format and copy your photos to it into a folder named DCIM.  Assuming they have an 8 character plus suffix name, the iPad will recognize them and give you the option of transferring them via the Kit's USB adapter.
    Once they are transferred, you can find out if there is a problem with any.
    Fred

  • PI 7.30 Message Mapping with MsgSplit error Split mapping created no messages, cannot proceed.

    Hi @all,
    I am working on a scenario to split one soruce message with several items to 0..n message for the same receiver.
    Therefore the occurrency of target message (signature in MM) have been adjusted.
    Not all items are forwarded to receiver, only if the content meets some rules the item should be forwarded.
    It could be that no item of the source message meet these rules and therefore no target message at all should be created.
    During test of this case I am facing following error in RWB, scenario is setup as integrated configuration.
    MappingException: Split mapping created no messages, cannot proceed. Review your mapping setup: splitting to 0 messages is not allowed.
    As the occurrency of the target message is 0..n, 0 should be also valid and there should be no error in this case, just stop processing like if there is no receiver in receiver determination step (mode IGNORE)
    Otherwise this will end up in lots of error messages which have to be analyzed and canceled manually which is quite time consuming.
    Maybe someone faced the same issue and found a solution to get rid of this error message.
    Best regards
    Jochen

    Hi Somil,
    hi Sriram,
    thanks for your response.
    In my scenario there also multiple receiver applications receiving data from one single sender application. We are using PI 7.30 dual stack and major goal is to setup all scenario as integrated configurations to have java only processing. One reason for this setup is that the main support user do not have extensive PI knowledge so far and we want to keep it as simple as possible and therefore do not want them to care about the abap stack as much as possible.
    Unfortunately migration to java only is not possible yet.
    In this release extended receiver determination using operation mapping is not supported in integrated configuration.
    There is quite complex rules to check if an item should be forward or not including lots of fields and also value mapping, so it would be quite difficult/impossible to write XPATH expression to have the same check during receiver determination step.
    One workaround could be creating a dummy message in case of no item to be forward and root this message to different place (local file which is always to be overwritten)
    Are there any alternatives/workarounds?
    Best regards
    Jochen
    Message was edited by: Jochen Gugel

  • Mapping some integers

    hello
    I have this code below which maps out my string keys with string values; once it has maped them out it gets the string keys in the order that they are maped out at.
    my problem is that i want to map some integers out with them ( int keys[]={0,1,2,3,4,5,6,7,8,9} )
    How would i do this?
    please help me
    nicky
    Hashtable ht2 = new Hashtable();
    //Add vector to store results
    Vector results2 = new Vector();
    Object value2 = null;
    String keys2[] = {"FirstName", "LastName", "Id", "Addr1", "Phone","County", "Postcode", "Country", "Addr2", "Town"};
    //System.out.println(keys2);
    String values2[] = {"ben", "ben", "ben", "mum", "ben","mum", "ben", "ben", "mum", "mum"};
    // First, map keys to values in a hashtable
    Hashtable hash2 = new Hashtable();
    // the code matches values one by one for each of the keys
    for(int i = 0; i < keys2.length; i++) {
    hash2.put(keys2, values2[i]);
    // Then we find each value and remove it from the hashtable
    for(int j = 0; j < values2.length; j++) {
    ht2 = (hash2);
    value2 = (values2[j]);
    Vector v = new Vector();
    if( ht2.containsValue( value2 )) {
    Enumeration e = ht2.keys();
    while (e.hasMoreElements()) {
    String tempkey2 = (String)e.nextElement();
    String tempvalue2 = (String)ht2.get(tempkey2);
    if (tempvalue2.equals(value2)) {
                             v.add(tempkey2);
                             ht2.remove(tempkey2);
    results2.add(v);

    As you probably know you cannot use integers as keys in your Hashtable object, because the keys have to be objects and int is a primitive type, not an object.
    Use the Integer wrapper class:
    Hashtable ht = new Hashtable();
    ht.put(new Integer(1), "number one");
    ht.put(new Integer(2), "number two");
    To lookup a string:
    int key = 2;
    String value = (String)ht.get(new Integer(key));
    Jesper

  • Cannot extract the embedded font arial.Some char might not be displayed

    Hi Folks,
                  Our requirement is to generate the customer account statement for a set of cusomters during a particular period.
                         we  use a script to generate the statement and convert it to pdf.This pdf is then stored in the application server and retrived using cg3y transaction.The transaction allows the statement to be generated for multiple customers and company code.
    the problem that we face is that the first customer account statement is generated properly the rest of the statements are not displayed properly.When we open the customer account statement we get the error 'Cannot extract the embedded font arial.Some characters might not be displayed properly'.All the Headings that we of the font BOLD ARIAL were not displayed.
    This error does not occur for the first pdf file generated.(say we have 3 customers  for the 1st customer pdf is proper however for the next two error'.
                         When I checked the application server I found that the first file has font subtype as Type1 and then rest of the files have font subtype as Truetype.
    This is working fine.I downloaded the file to pc using cg3y.the pdf looks fine.                   
    Directory:  /home/nwfound/n_us_cas
    Name:       0010798791US13122009.PDF
    %PDF-1.3#
    2 0 obj#
    /WinAnsiEncoding#
    endobj#
    3 0 obj#
    <<#
    %Devtype SAPWIN   Font COURIER  normal Lang EN#
    /Type /Font#
    /Subtype /Type1#                       ****see here font subtype is type1
    /BaseFont /Courier#
    /Name /F001#
    /Encoding 2 0 R#
    >>#
    endobj#
    4 0 obj#
    <<#
    /Filter 5 0 R#
    /Length 6 0 R#
    /Length1 352224#
    >>#
    stream#
    This one is not working fine.Gives an error 'Cannot extract the embedded font arial.Some characters might not be displayed properly when downloaded to pc using cg3y.The heading that were of font ARIAL BOLD were not displayed.
    Directory:  /home/nwfound/n_us_cas
    Name:       0010000105US13062010.PDF
    %PDF-1.3#
    2 0 obj#
    /WinAnsiEncoding#
    endobj#
    3 0 obj#
    <<#
    %Devtype SAPWIN   Font COURIER  normal Lang EN#
    /Type /Font#
    /Subtype /TrueType#                - see here the subtype is True type.How can i change this?
    /BaseFont /Courier#
    /Name /F001#
    /Encoding 2 0 R#
    >>#
    endobj#
    4 0 obj#
    <<#
    /Filter 5 0 R#
    /Length 6 0 R#
    /Length1 352224#
    >>#
    I have to change the tont subtype to Type1 as in my first cust. statement.Is there a way to this???????
    There can be no problem with the code cause the account statement generated for first customer is perfect.
    Any suggestions will be appreciated.
    IF hotfdata[] IS NOT INITIAL.
    *Convert otf data to pdf lines.
        CALL FUNCTION 'CONVERT_OTF'
          EXPORTING
            format                = 'PDF'
          IMPORTING
            bin_filesize          = l_size
          TABLES
            otf                   = hotfdata
            lines                 = li_pdf_output
          EXCEPTIONS
            err_max_linewidth     = 1
            err_format            = 2
            err_conv_not_possible = 3
            err_bad_otf           = 4
            OTHERS                = 5.
        IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    *clear hotfdata otherwise next empty cust acc. statement may have
    *this data.
        REFRESH:hotfdata.
        CLEAR   hotfdata.
    *If account statement is generated then set w_flag to generate email.
        w_flag = 'X'.
    *The converted pdf lines are of char132 format.
    *They have to be converted to char255 format.
        LOOP AT li_pdf_output INTO lwa_pdf_output.
          TRANSLATE lwa_pdf_output USING ' ~'.
          CONCATENATE l_gd_buffer lwa_pdf_output INTO l_gd_buffer.
          CLEAR lwa_pdf_output.
        ENDLOOP.
        TRANSLATE l_gd_buffer USING '~ '.
        REFRESH li_mess_att.
        DO.
          li_mess_att = l_gd_buffer.
          APPEND li_mess_att.
          SHIFT l_gd_buffer LEFT BY 255 PLACES.
          IF l_gd_buffer IS INITIAL.
            EXIT.
          ENDIF.
        ENDDO.
        CLEAR   x_objcont.
        REFRESH x_objcont.
        LOOP AT li_mess_att.
          x_objcont = li_mess_att.
          APPEND x_objcont.
        ENDLOOP.
    *application file name
        CONCATENATE po_filun kna1-kunnr save_bukrs datum02+4(2)
                      datum02(4) lc_pdf INTO l_filename.
        CONDENSE l_filename NO-GAPS.
        CONCATENATE file l_filename INTO file.
        CONDENSE file NO-GAPS.
    *Transer pdf data to app. server.
        "data len type i.
        OPEN DATASET file FOR OUTPUT IN BINARY MODE.
        LOOP AT x_objcont.
          TRANSFER x_objcont TO file.
        ENDLOOP.
        CLOSE DATASET file.
      ELSE.
        REFRESH:hotfdata.
        CLEAR   hotfdata.
      ENDIF.

    Hi,
    this can be related to the compression of the PDF file.
    You can turn off the FlateDecode compression again via report RSTXPDF3 as described in Note #843480. It is a little confusing. The option 'FLATE_COMPR_OFF' needs to be set to 'On' to turn off the FlateDecode compression.
    To set this please run as follows:
    se38 -> RSTXPDF3 -> enter 'FLATE_COMPR_OFF' in the 'Name' field -> Select 'Change Settings' radio button
    You will get a pop-up 'Do not use flat compression'.
    Select the 'on' button.
    After this check if the PDF is created correctly.
    regards,
    Aidan

  • Message cannot be displayed because of the way it is formatted

    I have an email sent to my company exchange 2003 account with pdf attachments. When I open the email on my Ipad, I can view the the pdf files but when I move to another email message and then go back to the email message with the pdf files the following message appears:
    "Message cannot be displayed because of the way it is formatted, Ask the sender to send it again using a differnet format or email program. text/plain."
    When I moved the email message to another folder and can view the attached pdf files. However when I read another email message and go back to the email with the pdf files and the error message again.
    I have no problems with the pdf files on my outlook PC client. Any suggestion to resolve this issue would be helpful.

    I too get this irritating problem, or one very like it on both my iPad and iPod Touch. I have several mail accounts on different services, the main being BT. Incoming messages that I want to keep I move to the Sent folder (for want of anywhere better). The content of some messages is then replaced by the "This message cannot be displayed because of the way it is formatted etc" text, some but by no means all. If I move the message back to the Inbox the text miraculously reappears. This is not because it is being reloaded from the server as the text reappears even if the message has been deleted on the server.
    Any thoughts on this peculiar behaviour?
    Thanks.

  • How do I display a map in map view?

    How do I display a "map" in map view?

    You can't.  The mapping was provided by Yahoo!, which discontinued the service.
    Ken

  • HT5429 maps on iphone 5 do not display anything

    Hi everyone. I recently bought a new iPhone 5 and I have a serious problem with my maps app. It does not display anything I search except the grid lines and pins. please help how can I fix it.  pls send the instructions at [email protected] Thank you in advance.

    It is not a good idea to put any kind of personal contact information in such a public forum.
    First, close the maps app. Double click the home button.  At the bottom, press and hold any app until a red circle appears on the top of each.  Tap the red circle on the Maps app.  Next, reset the phone:  press and hold the power and home buttons at the same time until the Apple logo appears.  Ignore the red slider if it appears.

  • This message cannot be displayed because of the way it is formatted. Ask the sender to send it again using a different format or email program. multipart/alternative

    When trying to read messages on one email account I often get the following error message:  This message cannot be displayed because of the way it is formatted. Ask the sender to send it again using a different format or email program. multipart/alternative
    IMAP Email account is with Telus Shared hosting.  I have been through set up with their tech support and everything is set up correctly.
    Of course my gmail account and icloud account works perfectly.
    Any ideas?
    Thank you.

    My iPad not working with hotmail and all Microsoft it working only with icloud ,Google,yahoo mail you andestandyou me or not system not working with this divies

  • When updating iPod from iTunes receive message that some of the photos cannot be displayed in iPod touch

    when syncing iPod Touch from iTunes receive message that some of the photos cannot be displayed in iPod touch

    What are the detail? file size?
    Since you can't create them in iPhoto, what is the source?  Camera? What processing did you do in iPhoto?
    Can you look at the Info for the photos that do sync and those that do not to try to find out why?

  • SSRS 2008 R2 Map doesn't render (won't display when you preview it)

    I'm trying to create a map where it displays the count of people in my DB for each state. There are 126,000 records in the dataset.  I've looked at a dozen videos and gone through step by step instructions to make sure I'm not missing something. 
    The map will never render when I preview it.  It stays gray and no data displays.  I can't for the life of me figure out what is wrong!!  Can anyone point me in the right direction?    I'm using the Map Gallery and doing a Color
    Analytic map.  I'm trying to display count(state) - but have also tried counting the id of the person.  It's driving me nuts!

    Hi Cfiller,
    According to your description, you create a Color Analytic map using Map Gallery. When previewing the report, the map stays gray and no data displays.
    In Reporting Services, a Color Analytic map must include the spatial data and the analytical data. In your scenario, since you design a Color Analytic map using Map Gallery, the spatial data is already embedded in reports located in the map gallery, then
    you should add analytical data to the map. As you mentioned the analytical data for count of people comes from the database, you must specify match fields to relate the spatial data and the analytical data when designing the map. If there is no match fields
    in the map, it’s expected that no data will display when previewing. So please check if you specify the match fields correctly.
    Reference:
    Maps (Report Builder and SSRS)
    SSRS R2 Map Control Item Does Not Render in Preview
    or when Deployed to Report Server
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • How can I see in what maps some table is used?

    Hi,
    Anyone can tell me how can I see in what maps some table is used, without open all of then?
    Thanks,
    Gustavo.

    Good morning Gustavo,
    OWB has some public views defined which can provide you with this information. Check Appendix D (Warehouse Builder Public Views) of the OWB User Guide for all info.
    Log in as the owner of the design time repository, if you run the following query you'll have a basic overview of whic table is used in which mapping:SELECT MAP_NAME         MAPPING_NAME
    ,      DATA_ENTITY_NAME TABLE_NAME
    ,      BUSINESS_NAME    TABLE_OPERATOR_ALIAS
    ,      DESCRIPTION      TABLE_OPERATOR_DESCRIPTION
    FROM   ALL_IV_XFORM_MAP_COMPONENTS
    WHERE  DATA_ENTITY_TYPE = 'TABLE'Good luck, Patrick

  • Page cannot be displayed after some time

    After submitting a request for processing a stateless session bean calls a procedure using callable stmt.This takes some time like 6 mnts.After processing it is suppose to give a message back.The browser times out in between and flashes page cannot be displayed.
    What can be done for this?
    Please get back to me
    [email protected]

    Hi,
    I think problem might be with ur Application server or some connection with ur DB.u just check ur Application server and restart it. .it 'll work.

Maybe you are looking for