Wrong format for spreadsheet table, list view, label component

I have a movie which is connected to a web service.  The web service feeds into cells that are linked to a spreadsheet table component.  The cells are properly formatted in excel and the fields show up fine when using static data.  However, once I pull in data in preview mode or with a published movie the cells lose the desired format.  I tested this with other components such as list view and label and get the same result.  I do not see the same results with the mouse over values in a chart though.  Anyone know what might be the problem?
Thanks for the help

Thanks for the response Andy.
The fields I use have the same uniform format so there is no dynamic formatting going on.  I have read up on the rebind fix and have tried it but it doesn't seem to change things.
Here are the specifics of my situation.  I paste some sample data returned from a query into the excel sheet.  One of the fields is a percentage so I format those cells appropriately and the excel sheet reflects the change.  I then bind the spreadsheet component to the cells containing the sample data.  The percentage field is properly displayed on the canvas as well as when I go into preview mode.  I now feed the cells with the sample data with a web service that uses the same query I used to generate the sample data.  In preview mode the percentage cell now is unformatted and shows up looking like a decimal number.  The same situation occurs for a label component bound to a single percentage cell.  I even configure the label component to format the text as a percentage.

Similar Messages

  • Wrong Dates and Sizes in List View in Finder (10.3.9)

    Hi,
    I'm in the Finder (Mac OS X 10.3.9) looking at a folder.
    The folder is in List View mode.
    Here's the problem:
    Files that I edited yesterday are continuing to show up as modified "Today."
    What's with that?
    The Finder window won't update. (And I modified those files 12 hours ago.)
    This has been going on for years.
    Sometimes clicking on each file will trigger an update of the info, sometimes not.
    Sometimes the dates are wrong, sometimes the sizes are wrong.
    Is there a cure for this Mac OS bug?
    -- JEBrown800
    +J. E. Brown has been a software engineer for over 20 years.+

    JEBrown800:
    Welcome to Apple Discussions.
    J. E. Brown has been a software engineer for over 20 years.
    Your resume is a bit intimidating to non-technical types like me, and I suspect that whatever I suggest may have already been tried.
    However, can you tell us what diagnostic tests or repairs you have attempted? e.g. Repair Disk in DU, Saft Book, Disk Warrior etc.
    Good luck.
    cornelius

  • Errors in the high-level relational engine. The data source view does not contain a definition for the table or view. The Source property may not have been set.

    Hi All,
    I have a cube in which i'm using the TIME DIM that i created in the warehouse. But now i wanted a new measure in the cube which is Average over time and when i wanted to created the new measure i got a message that no time dim was defined, so i created a
    new time dimension in the SSAS using wizard. But when i tried to process the new time dimension i'm getting the follwoing error message
    "Errors in the high-level relational engine. The data source view does not contain a definition for "SSASTIMEDIM" the table or view. The Source property may not have been set."
    Can anyone please tell me why i cannot create a new measure average over the time using my time dimension? Also what am i doing wrong with the SSASTIMEDIM, that i'm getting the error.
    Thanks

    Hi PMunshi,
    According to your description, you get the above error when processing the time dimension. Right?
    In this scenario, since you have updated the DSV, it should have no problem on the table existence. One possibility is that table has been specified for tracking in the notifications for proactive caching, but isn't available any more for some
    reason. Please change the setting in Proactive Caching into "MOLAP".
    Reference:
    How To Implement Proactive Caching in SQL Server Analysis Services SSAS
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou
    TechNet Community Support

  • Performance advice required - creating images for a scrolling list view on Android

    This is a question about how best to manage thumbnail images in an list view style app written in Actionscript 3 for Android.
    I am building an app that uses a list view control to show lists of data.  As each list item appears on screen during a scroll through the list I create a thumbnail image to display in the list item cell. 
    Currently I am embedding the jpg thumbnails in actionscript and using mx.core.bitmapasset to get bitmaps on the fly.  On a live device this is unfortunately slowing things down - the smooth scrolling list jerks every time a new cell appears on screen.
    There are probably going to be 500+ thumbnails but a list will only ever have about 150 items in it at any one time, of which only about 6 or 7 are onscreen at the same time.  The list view control is one that I have created myself in actionscript but I am pretty sure the thumbnail creation is the cause of the slowdown.  If I take out thumbnails the scrolling is smooth.  If I reuse the same thumbnail across all cells then scrolling is smooth too.  The component reuses cells as they disappear off one end of the list so there isn't much creation of objects going on.
    I am running this in debug so it might be possible that in release things are better (maybe?).
    Does anyone have any advice on how best to approach this problem of getting jpg assets available quickly?

    Hi,
    I think you can use ContentCache here. See http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/spark/core/ContentCache .html. You need to create an instance of ContentCache and set the contentLoader property of your Bitmap object to this instance. You can control the number of cachedEntries by setting maxCacheEntries. The tutorial by Mihai Corlan http://corlan.org/?p=3106 shows how you can use it. I hope you find it useful.
    Thanks,
    Sanika

  • Currency format in Spreadsheet tables uses period's instead of comma's

    Xcelsius 2008 SP3.  I have inserted a spreadsheet table into my model, the columns are formatted in a currency format with $ and the thousand's separator that is displaying in the table is a period instead of a comma.  Has anybody else seen this problem?

    Hi,
    yes, I`ve had the same behavior. As a workaround, you have to change the format of the cells.
    Go into the properties of the cells:
    -> Right mouse click
    -> format cells
    -> category
    -> number
    -> change something, e.g. the number of decimal places to show
    Then you will have to map the component again to the same cells under "Display Data".
    And now, the currency information will be shown correctly.
    Regards
    Victor

  • Migration from Designer: wrong alias for used table/view in views

    Hello,
    I am using SQL DM version 3.3.0.744.
    when importing a view from Designer, a query is build with aliases for the used tables/views which are the same as the table/view name. When using a where clause in Designer, you refer to the alias of the table/view, like t1.col1= t2.cola. Here t1 and t2 are the aliases of the underlying tables.
    In Designer the following DDL is generated:
    CREATE OR REPLACE FORCE VIEW VIEW5
    (COL2
    ,COL1)
    AS SELECT T2.COLA COL2
    ,T1.COL1 COL1
    FROM TAB2 T2
    ,TAB1 T1
    WHERE t1.col1= t2.cola
    After importing the view in Data Modeler, the following DDL is generated:
    CREATE OR REPLACE VIEW VIEW5 ( COL2,
    COL1 )
    AS SELECT
    TAB2.COLA COL2,
    TAB1.COL1 COL1
    FROM
    TAB2 TAB2,
    TAB1 TAB1
    WHERE
    t1.col1= t2.cola ;
    So by using the wrong alias, the where clause is invalid and the query builder doesn't show the joins.
    The solution for this is to use the alias of the used table/view instead of the table/view name. Can you raise a bug for this?
    Thanks in advance,
    Joop

    Thanks for your time. I did all possible way, but still the same problem. I mean
    EXP 8... IMP 8
    EXP 8... IMP 9
    EXP 9... IMP 9
    Today I found that, NLS_LANG of two databases are different. Oracle 8i is : WE8ISO8859P1
    AND Oracle9i is : WE8MSWIN1252
    So I created a new database from scratch with Oracle 8i character set :WE8ISO8859P1 and then use imp9i to import the file. Still the same problem.
    Thanks,
    Arash

  • Validate field in the pop up for a Table Maintenance View

    Hi,
    I have created a maintenance view for a Z table. Among the many fields the table, I needed to display the records based on a selection criterion. So, I have enabled a popup for sales org and customer no'.
    Now the sales org and cust no' are being validated individually at the pop up screen itself.
    The requirement is that I need to validate for presence of records for their combination.
    ( FYI: KNVV is the table with the combination of both)
    Kindly let me know how this requirement can be fulfilled.
    Thanks in Advance.

    Hi,
    Try like this..
    in the Table Maintenance Generator>Environment>Modification-->Events.
    in the event on_save(didn't remember exact name)
    select * from ztable into itab where kunnr in kunnr
                                              and    vkorg in vkorg..
    Regards,
    Nagaraj

  • How to upload a word/excel doc for z table and view ltr

    Hi to all,
    I have a requirement to upload word/excel or ppt files from pc, so that i can store them in table with some other values. These files will be used by number of users to view or download.
    Please guide me how to upload the files and store the file deatils in z table so that users can view the file later.
    I can get a static folder to store all document in app server.
    Thanks in advance,
    Sanjeev

    hi
    use <b>gui_upload</b> to upload execl , txt ot dat files
    into itab & then append them into ztables which u hav to create.
    i'm not sure of ppt files
    *sample code to upload a text document to app.server
    open dataset v_header for output in text mode encoding default.
        if sy-subrc <> 0.
          message i000 with 'ERROR OPENING FILE'.
        endif.
        loop at gt_changed_pohd.
          transfer gt_changed_pohd to v_header.
        endloop.
      close dataset v_header.
    ****sample gui_upload to upload tab seperated text file
    ***to upload dat files use the seperator '|' instead ****of 'X' in the foll.
    call function 'GUI_UPLOAD'
          exporting
            filename                      = v_file
           filetype                      = p_type
           has_field_separator           = 'X'
      HEADER_LENGTH                 = 0
      READ_BY_LINE                  = 'X'
      DAT_MODE                      = ' '
      CODEPAGE                      = ' '
      IGNORE_CERR                   = ABAP_TRUE
      REPLACEMENT                   = '#'
      CHECK_BOM                     = ' '
    IMPORTING
      FILELENGTH                    =
      HEADER                        =
          tables
            data_tab                      = gt_data
         exceptions
           file_open_error               = 1
           file_read_error               = 2
           no_batch                      = 3
           gui_refuse_filetransfer       = 4
           invalid_type                  = 5
           no_authority                  = 6
           unknown_error                 = 7
           bad_data_format               = 8
           header_not_allowed            = 9
           separator_not_allowed         = 10
           header_too_long               = 11
           unknown_dp_error              = 12
           access_denied                 = 13
           dp_out_of_memory              = 14
           disk_full                     = 15
           dp_timeout                    = 16
           others                        = 17

  • Export collection as jpeg produces wrong format for Clikpic website

    Lightroom 1.3.1, high spec pc, Windows XP, ACD,etc. I have a website with "Clikpic". Before starting with L/R I had a Photoshop action to save for web at 600x600@72dpi etc, images from which then upload fine into Clikpik. I thought I would use the L/R "Collection" option to select some images from a recent trip, then use the "Export" option to save in the required Clikpic format - if I use that and then try to upload, I get error message "CF_IMAGE INFO:Format Not Recognised". I then went back to my own old Photoshop Action to do the same thing with the same image and that one uploads fine. Both images come out around 60Kb. What is wrong with the Lightroom process? Has anyone else had this problem? I have posted the query to Clikpik support too.

    One difference between LR export and PS save-for-web is that LR will imbed the image's metadata in the JPG and SFW only maintains copyright info (in PS3) or nothing (prior versions). So could Clikpic be seeing some metadata in the LR export that it doesn't like?

  • Alternative UI Output formats for BAPI table

    Hi Experts,
    Can I display the output of a BAPI table in any other format apart from a table.
    Regards
    Abdullah

    Abdullah,
    In web dynpro you cannot have tables with scrollbar. A workaround for that may be a use of ScrollContainer UI element with fixed height and display all table rows via setting visibleRowsCount=-1.but problem here is , table headers will be scrolled as well. So it is better not to have them like that.
    I would suggest take use of existing table UI element and dont alter its functionality.
    Regarding incorporating the application using web dynpro I guess that you must be knowing(not sure but think that you need to get rid of COM DCOM).
    hope it helps
    regards,

  • Best format for UK and USA viewing

    Apologies if this is a stupid question, but I have to film the same 25 minute instruction video for 2 different country viewings, UK and USA. Client has requested that they wish the footage to be viewable EITHER in the maximum amount of players i.e DVD players, PC's and Macs, OR just for PC & Macs.
    Q: would this alter my choice of finished format?
    My plan is to export to DV PAL for the UK and then convert the PAL version to NTSC (as per some previous threads. This I assume would be the normal workflow for the "maximum" viewing option and will play in DVD players and Pc's etc.
    If the content is for viewing on PC & Mac, should I be considering a non region specific format like Quicktime or Window Media Player which will play in UK and USA? or am I being daft?
    Filmed in HDV 1080 on Sony Z1, video with separate VO for UK and USA added after. Lastly re the VO would it be best to convert the video footage to NTSC and add the VO after or VO while it is still in PAL and covert afterwards. ? sorry for the multi questions in one thread, but I am confused by what seems a basic requirement!
    Message was edited by: mr bluefin

    Export your finished PAL master and have it converted to NTSC at a facility. You can do it yourself with a variety of software, but it takes ages and is often poor quality if you don't have much experience.
    Make two DVDSP projects, 1 for PAL, 1 for NTSC and burn standard DVDs from each. You can't have both on the same disc. Don't put region coding on the discs.
    Don't be tempted to increase the bit rate, just because you have the space on the discs - this can cause some players to stutter. Stick with the Compressor default values.
    Computers don't care if a disc is NTSC or PAL.
    Most stand-alone PAL players -but not all, will play NTSC discs.

  • SELECT INTO ( variable ) STATEMENTS NOT WORKING FOR SYBASE TABLE AS VIEW

    Dear Experts,
    We have connected our 9i db with Sybase db using Hs connectivity.
    and then we have create the view in oracle db for SYBASE_TABLE as SYBASE_TABLE_VIEW.
    ALL THE INSERT, UPDATE AND DELETE COMMANDS ARE WORKING BUT THE
    select Into (variable) is not working.
    Please help to resolve the select into statment which is in BOLD in the below routine
    PLEASE NOTE! FORM WAS COMPILED SUCCESSFULLY AND FORM IS RUNNING BUT SELECT INTO COMMAND IS NOT WORKING.
    Thanks & Regards
    Eidy
    PROCEDURE SRBL_INSERT IS
    CURSOR SRBL IS
         SELECT impno,impcod,impnam
         from oracle_table1 a, oracle_table2 b
         WHERE a.impcod=b.empcod
         v_srpcod varchar2(5);
    BEGIN     
    FOR rec in SRBL loop     
         begin
    select "im_code" into v_impcod                    
         from SYBASE_TABLE_VIEW
         where "im_code"=rec.impcod;
    exception when no_data_found then
         v_srpcod:=null;
    end;
    END LOOP;
    END;
    Edited by: Eidy on Aug 16, 2010 11:28 AM

    hellow
    try this.
    select "im_code" into v_impcod
    from SYBASE_TABLE_VIEW
    where "im_code"=rec.impcod;
    v_srpcod := v_impcod ;
    ........

  • Calendar List view shows entries under the wrong date

    I just upgraded to iOS4 and finding that my calendar entries are appearing under the wrong date in the calendar list view when I am viewing two calendars.
    - List view is ok when viewing 1 calendar
    - Day and Month views are ok at all times (ie: viewing single or multiple calendars)
    - I have 2 Exchange accounts
    - Calendar entries are appearing in the correct order, but under the incorrect date heading.
    - When I intially added the Exchange accounts the calendar list view was fine at first (I could see both calendars correctly in list view) but after a short time later it became screwed up.
    Anyone else experience this?

    Same problem here since my upgrade to iOS4 - but I only noticed today.
    I have 3 calendars set up:
    Gmail (Exchange)
    UK Holidays (iCal)
    Birthdays
    The exchange calendar is always wrong but the other two are correct when my exchange calendar is switched off.
    It has mucked up my scheduling a bit for the next month. I only became suspicious when I noticed the Scottish Bank Holiday Monday at the beginning of August was showing on FRIDAY, 30th of July!

  • Looking for System Tables / Views like in Oracle DB - user_constraints, user_tab_columns, ...

    Hello,
    I'm looking for system tables or views like in the Oracle Database.
    First I'm looking for running /active sessions - like v$sessions or in an RAC environment gv$session
    And get the corresponding SQL from v$sql
    Second I had problems to drop tables due to constraints.
    Therefore I was looking for dba_constraints, all_constraints or user_constraints
    select * from user_constraints WHERE constraint_type in ('R');
    With that information I'm able to generate a script to drop the constraints.
    Third I want quick lookup about data types used in a table to correct my settings in Oracle BI.
    For example which column in which table of my schema uses the datatype BIGINT.
    If only 3 attributes in  two tables out of 100 use the BIGINT datatype - I'm able to quickly change my settings in the OBIEE repository.
    I'm missing a table like user_tab_columns.
    How can I get the same information out of TimesTen ?
    Thanks in advance,
    Thorsten

    Hi Thorsten,
    You should be able to get some of the information that you want from the TimesTen reports that are in SQL Developer.
    e.g.
    <TimesTen Reports -> Table -> Columns -> Columns> returns a listing of all the columns and their data types. You can order by the data type column or add a filter (say ='TT_BIGINT') to restrict the result set.
    <TimesTen Reports -> Table -> Constraints -> All Constraints / FK Constraints / PK Constraints / Unique Constraints>  returns a listing of all the constraints, their name, the table that the constraints are on, and their properties.
    For all the SQL Developer reports, you will be able to see the underlying queries and the TimesTen system tables/ views that they reference.
    Simon

  • Problem with Spreadsheet Table

    Hello,
    I've just purchased Xcelsius Present, and I've been trying to build some P&L charts using the software.  However, I can't seem to get the Spreadsheet table to work. 
    I had two tabs on the canvas, one for spreadsheet table to display the P&L, and one tab for charts.  If I don't upload the spreadsheet onto the first tab, everything works exactly how they should be.  But as soon as I link my spreadsheet to the spreadsheet table, everything blanks out.  I can't see anything in the preview.  But the design view seems to be ok, and everything shows up ok.  I've also tried to use List View as well as getting rid of the tabs and just use a blank canvas.  Nothings seems to work.  I am getting really frustrated with this.
    Can somebody please help me out.
    Thanks in advance.
    L.T.

    Welcome to the forums.  First upgrade to the latest fix pack to ensure any know bugs are fixed.  Then re-post if that doesn't help.  [Xcelsius Present 2008 Fix pack 2 is now available;
    Also check that you haven't accidentally turned on dynamic visibility for any components.

Maybe you are looking for

  • Reg: Customer Master Creation in BAPI

    Hi All, How can i find the fields, which are all used in BAPI_CUSTOMER_CREATEFROMDATA1 and in BAPI_CUSTOMER_CREATEFROMDATA... And how can i find the sap given sequential/flat file for customer master. Thanks & Regards arun

  • ITunes Store does not support my country

    I live in Georgia,Tbilisi.iTunes Store does not support my country.Does that mean that I cannot enter my credit card information and I wont be able to buy apps for my iphone 4s?

  • Install Oracle Application server 10g and Oracle database 10g on same box

    Hi Experts! i need to install Oracle database and oracle application server on the same machine(windows xp). when i install both of them and reboot the machine either oracle database or oracle application server fails... i suspect that the problem mi

  • Create a package with one function - Error Ora-00907

    Hello, I want to create a package which should store one function. The code looks like this: Package Header: CREATE OR REPLACE PACKAGE "PCK_REPORT" AS   TYPE t_varchar2 IS TABLE OF VARCHAR2(4000);   FUNCTION f_tabtostring(i_varchar2 IN t_varchar2) RE

  • OnLine Number Ordering Not Working

    Wanting to purchase a Skype Online Number, but after selecting Country (USA), and State (FL), area code drop-down list does not populate.  I've tried using a different State, and same thing happens. FIX?