CFCHARTDATA item occasionally not displayed

CF7 & CF8 I have a bunch of these cfchartseries to
display a horizontal stacked bar chart in Flash. Depending on the
order of how the data is presented invariably one of the item names
is not displayed on the far left of the chart. Once it was the
second item name. I switched it around and then the third item name
was not displayed. If I changed the name to something else it might
display.
Essentially I should see 4 bars. To the left of the each bar
and to the left of y axis I should see
Open Due | XXXXXXXXXXXXXXXXXXXXXX
Past Due | XXXXXXX
Phase Complete | XXX
Not Yet Due | XXXXXXXXXXXXXXXXXXXXXXXX
However, "Phase Complete" is showing up blank in Flash but in
JPG it is showing up. Here's a little clip
<cfchartseries type="horizontalbar" seriesLabel="October
2008" seriescolor="red">
<cfchartdata item="Open Due" value="18">
<cfchartdata item="Past Due" value="0">
<cfchartdata item="Phase Complete" value="0">
<cfchartdata item="Not Yet Due" value="0">
</cfchartseries>
<cfchartseries type="horizontalbar" seriesLabel="November
2008" seriescolor="yellow">
<cfchartdata item="Open Due" value="0">
<cfchartdata item="Past Due" value="0">
<cfchartdata item="Phase Complete" value="50">
<cfchartdata item="Not Yet Due" value="0">
</cfchartseries>

One other thing:
in SM53 I can see an error in the log:
Log message: ProductInconsistenDBException
Log name: com.sap.spc.document.rfc.ChangeItemHandler
Any ideas?
SM

Similar Messages

  • Automatic Payment program -line item cleared not displaying in table

    automatic Payment program -line item cleared not displaying in table
    i have re run the APP program DUSR1 same earlier it has run twice but table dose not show double payment to vendors how to resolve the issue.
    Can some one please guide me on this.

    Hi Priyanka,
    First, which table are you referring to.  If your fist APP run clears the line item, it will no longer be available in the open item. 
    Please be more specific on the problem so that we can try to help you.  If possible, please provide screenshots.
    Regards,
    Ganesh

  • Document library items are not displaying in sorted order in sharepoint 2013

    Hi,
    I have a document library , I am storing document sets on it.
    28326 items are there in the library.
    I have configured sort on Name columns. Initially items are displaying in sorted order like (A,B,C,D,E...)
    Now Items are not displaying in a sorted order it is displaying like (A, B,C,D,E,A,C...) like this.
    Please help me on this sorting issue.
    Thanks,
    Samir

    Are the documents displaying in your image inside the document sets?  If so then your sets (folders) are displaying in alphabetical order and the documents inside the sets are displaying in alphabetical order.  This is what i would expect.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • Line items is not displaying

    Hi,
    When i simulate in F-28, line items is not displaying
    eg: 40  SBI  1500
    only displaying the remaining items like
    eg: 40  discount 500
          50  ABC     2000
    is not displaying
    what may be reason. where can i change settings
    Rgds
    sunfico

    This will happen as the system searches for automatically created line items, in this case, the discount.
    Nothing to worry, press Enter key twice, after simulation, you should get the all line items display
    Thanks
    Siva

  • CIN: Items are not displayed while updating the RG1 Register using T Code:

    Hi Experts,
    Items are not displayed while updating the RG1 Register using T Code: J1I5.
    System is not showing any error message.
    Can any one explain to update the RG1 Register?
    Thanks
    Chandra

    Hi,
    dont go the table again and again . the table is updated at intial stage only for stock update but not when SAP is running.
    In day to day bussiness the flow is as follows:
    Production - MB31 - to Unres stock
    Sales - VL02n - PGI - to customer - i.e out of unres stock
    Every day u can run TC J1i5 once in a day as decided and update the register so all transactions which have happend in that day gets updated i.e both input and output.
    and this will happen every day.
    hence dont use table as it is only for intial data upload i.e just before golive.
    Hope i am clear.
    krishna

  • Quotation Items are not displayed on SRM Web

    Hi experts!
    I did a program to create a quotation based on a Bid invitation.
    My program creates the document correctly, but, when i try to show the quotation on the browser, the quotation items are not displayed.
    If I open this same quotation on the SRM Gui (TCODE = BBP_PD), the quotation items are there.
    Anybody in here already had this problem?
    Thanks in advance.
    Danilo Cardoso

    Hi.
    I got to fix my program!
    My code is like that below:
          ls_quot_item_e-src_guid        = bid_items-guid.
          ls_quot_item_e-src_object_type = 'BUS2200001'.
    The business object BUS2200001 is the BO of Items of Bid Invitation, now, my reference is complete.
    It works fine now.
    Thanks for you help.
    Regards.
    Danilo

  • Items are not displayed --- REUSE_ALV_HIERSEQ_LIST_DISPLAY

    Hi experts,
    i'm stuck in this weird problem.
    Items (it_items) are not displayed in table. I've cheked with debugger and it_items contains lines.
    Thanks in advance.
    REPORT  z_hier.
    TYPE-POOLS: slis.
    DATA: fieldcatalog TYPE slis_t_fieldcat_alv.
    DATA: it_header LIKE STANDARD TABLE OF zvend_header WITH HEADER LINE,
          it_items LIKE STANDARD TABLE OF zvend_items WITH HEADER LINE,
          g_tabname_header TYPE slis_tabname,
          g_tabname_item   TYPE slis_tabname,
          gs_keyinfo TYPE slis_keyinfo_alv.
    PARAMETERS: lifnr LIKE lfa1-lifnr.
    INITIALIZATION.
      CLEAR gs_keyinfo.
      gs_keyinfo-header01 = 'LIFNR'.
      gs_keyinfo-item01   = 'IDNLF'.
      g_tabname_header = 'it_header'.
      g_tabname_item   = 'it_items'.
    START-OF-SELECTION.
      PERFORM retrieve_data.
    END-OF-SELECTION.
      PERFORM build_fieldcatalog.
      PERFORM display_list.
    FORM build_fieldcatalog.
      CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
      EXPORTING
    *   I_PROGRAM_NAME               =
        i_internal_tabname           = g_tabname_header
        i_structure_name             = 'ZVEND_HEADER'
        i_client_never_display       = 'X'
    *   I_INCLNAME                   =
    *   I_BYPASSING_BUFFER           =
    *   I_BUFFER_ACTIVE              =
        CHANGING
          ct_fieldcat                  = fieldcatalog
      EXCEPTIONS
         inconsistent_interface       = 1
         program_error                = 2
         OTHERS                       = 3
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
      EXPORTING
    *   I_PROGRAM_NAME               =
        i_internal_tabname           = g_tabname_item
        i_structure_name             = 'ZVEND_ITEMS'
        i_client_never_display       = 'X'
    *   I_INCLNAME                   =
    *   I_BYPASSING_BUFFER           =
    *   I_BUFFER_ACTIVE              =
        CHANGING
          ct_fieldcat                  = fieldcatalog
      EXCEPTIONS
         inconsistent_interface       = 1
         program_error                = 2
         OTHERS                       = 3
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    "build_fieldcatalog

    Hi Dan M.,
    Please follow this...
    CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY'
        EXPORTING
         i_callback_program             = w_repid
      I_CALLBACK_PF_STATUS_SET       = ' '
      I_CALLBACK_USER_COMMAND        = ' '
         is_layout                      =  wa_layout
         it_fieldcat                    =  i_fieldcat
      IT_EXCLUDING                   =
      IT_SPECIAL_GROUPS              =
       IT_SORT                        = I_SORT
      IT_FILTER                      =
      IS_SEL_HIDE                    =
      I_SCREEN_START_COLUMN          = 0
      I_SCREEN_START_LINE            = 0
      I_SCREEN_END_COLUMN            = 0
      I_SCREEN_END_LINE              = 0
      I_DEFAULT                      = 'X'
      I_SAVE                         = ' '
      IS_VARIANT                     =
         it_events                      =  i_event
      IT_EVENT_EXIT                  =
          i_tabname_header               =  'i_ekpo'  <----
    Pass here header table name
          i_tabname_item                 =  'i_eket'    <----
    pass here item table name
      I_STRUCTURE_NAME_HEADER        =
      I_STRUCTURE_NAME_ITEM          =
          is_keyinfo                     =  wa_keyinfo
      IS_PRINT                       =
      IS_REPREP_ID                   =
      I_BYPASSING_BUFFER             =
      I_BUFFER_ACTIVE                =
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER        =
      ES_EXIT_CAUSED_BY_USER         =
        TABLES
          t_outtab_header                =  i_ekpo   -<<----
    Pass here header internal table
          t_outtab_item                  =  i_eket     <<----
    Pass here item internl table
    EXCEPTIONS
      PROGRAM_ERROR                  = 1
      OTHERS                         = 2
    for wa_keyinfo:
    You need to use common fields between header & item.
    for ex:
    wa_keyinfo-header01 = 'EBELN'.
      wa_keyinfo-item01 = 'EBELN'.
      wa_keyinfo-header02 = 'EBELP'.
      wa_keyinfo-item02 = 'EBELP'.
    Hope this can solve your problems.
    Regards,
    Tutun

  • Profit center line items are not displaying in KE5Z

    HI Eperts,
    we are executing tcode KE5Z. System is not displaying any line items. because we have missed out in configuration updation of line items and on line transfer check boxes activation in 1KEF.
    please advise how we have to retreive whole data posted up to now under this controlling area..
    Regards
    vekat....

    Hi Venkat,
    Please check the following link.
    [http://help.sap.com/saphelp_45b/helpdata/en/eb/1370e343c411d1896f0000e8322d00/frameset.htm]
    Also check the tcodes 1KE8 (Transfer FI Actual Data), 1KEC (Transfer MM Actual Data) and 1KE9 (Transfer SD Billing Documents)
    The path for these tcode is as under:
    Controlling --> Profit Center Accounting --> Tools --> Prepare Production Startup --> Data Transfer.
    Please check in your test system first.
    Regards,
    Sameer

  • TDS line items are not Display in FB60

    Hi Experts,
    when in simulate a document in  T code- FB60. the TDS amount is calculated properly . DR , Cr is ok but the Line item of the TDS is not displayed.  when i post the document and open in FB03 all line items are dispalyed with TDS Line items also.. Proper Tax code of payment and invoice is attached.
    why not shown in FB60 when simulating a document??

    Hi
    If in FB60 you want to simulate tax items also, click on simulate from menu, you will be able to see the required details. If you click on simulate icon, it will not be visible.
    Regards
    Sanil Bhandari
    <a href="http://www.vcq.biz/">nature wallpapers</a>, <a href="http://www.utorrent.name/">utorrent</a>f in FB60

  • TDS Certificate item details not displayed in printpreview in qualitysystem

    Dear Experts,
                         I have been working on TDS certificate in SAP script and able to display the item details in the developement system. but while testing the same TDS certificate in Quality system the item details are not displayed in the preint preview.could any one tell me what exactly have happened and how to solve this issues.

    Cant help with this input. Just make sure that all settings are same in both the systems.
    Hope you find the resolution .

  • APP - Clearing open item, but not display in check register

    Hi Experts,
    In ECC6  APP..........when i run, it clearing  open items,  but the same amount  in check register not display...
    FCH5 showing no list generated?
    how to resolve.
    Regards

    Hi Anil,
    Use T-code : FCHN for check display,
    the T-code FCH5  which you are looking is for manual check creation.
    Thanks,
    Ratnam

  • GUI status items are not displayed

    Hi all,
    Some parts of gui status are not displayed but some of them are displayed.
    What is the problem?
    Thanks.
    deniz.

    Hi snehi chouhan,
    I have created a program and two gui statuses for this.
    One of them is set at first display of report but not all items.
    Thanks.

  • "View Selected Item" does not display

    I'm using RoboHelp7 out of the Technical Communication Suite.
    When I'm working on a topic and select the
    View Selected Item button, the topic does not display. When
    I first tried yesterday, nothing happened (IE didn't open and there
    was nothing in my tray). I contacted Oversea's support and was
    informed that there wasn't an incident for this occurance. I was
    instructed to uninstall and reinstall RoboHelp.
    I uninstalled and reinstalled the applications and the button
    still doesn't work; however, this time there is an hourglass for an
    instant before not producing any results.
    The button doesn't work with anything that I've created or
    with the example projects (Clownfish School). Any help would be
    greatly appreciated. I'd hate to have to regenerate the project
    just to look at a quick change.
    Thanks,
    Matt

    Sounds like I need to add a note to that Snippet. Thanks.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • PO item text not displaying in ME23n

    Hello,
    There is a PO which was created manually in which the Item text does not display from ME23n. In the display, the item text has a tick next to it but the display window shows nothing. However, the output message is having the item text in it.
    Has any one encountered a problem like this?
    Some additional points in this regard:
    - PO created with refernce to a PR
    - The item text was manually entered in the PR and it is displaying correctly there.
    - The PR and PO could have been created with a different log-in language
    Appreciate a response.
    Thanks
    Nazeer

    Hi Antony,
    Thanks for your reply, but what you say is not correct.
    Item text, or for that matter any text, is not language dependent. I have tested this out by creating a PR in DE and the PO in EN. The text in both (PR or PO) displays correctly when you log in with either DE or EN.
    Thanks
    Nazeer

  • ITunes Store "featured items" banner not displaying

    Just noticed today that when I'm in the iTunes store, the featured items banner that scrolls along the top is not displaying. The links still seem to be active - if I click in the empty space I will go to a page for what i presume would be there if I could see it. Everything else seems to functi
    Any thoughts why it won't display or how to get it back? I've tried closing and reopening.
    Using iTunes 10.6.1

    This isn't completely coherent so I am not sure what is wrong other than some (al?) of your tracks have broken links.
    If you are browsing through iTunes you are not looking at files you are looking at data entries that point to files, with those locations being incorrect right now. 
    There isn't a file called iTunes media, there is a folder that should be in your iTunes folder called that.
    You mention something about external drives. I presume one is for your Time Machine backup but is the other one used for iTunes?  If so, what do you keep there?
    Here's some background information to help place this in context:
    What are the iTunes library files? - http://support.apple.com/kb/HT1660
    More on iTunes library files and what they do - http://en.wikipedia.org/wiki/ITunes#Media_management
    What are all those iTunes files? - http://www.macworld.com/article/139974/2009/04/itunes_files.html
    Where are my iTunes files located? - http://support.apple.com/kb/ht1391
    iTunes 9 [and later]: Understanding iTunes Media Organization - http://support.apple.com/kb/ht3847

Maybe you are looking for

  • Firefox 3.6.8 asks to update each time it is opened

    3.6.8. was installed and now when I open Firefox it wants to update each time. Also after installing 3.6.8 I have had BSOD 3 times times, so I don't allow it to update and so far no more BSOD. Windows 7 ultimate. == This happened == Every time Firefo

  • Is there ANY way to move a text message from archi...

    Sorry, if I haven't put this question in the right part of the forum, but I'm new in here. So, I accidentally moved a text message from my inbox to archive on my cell phone (nokia 7230) and I would really like to get it back. Is there any way I could

  • Scheduled report subscription only writes file once

    Early in our SCCM 2012 roll out we want regular updates how many machines are active. We have configured a Report Subscription to save the report as an XLS file on a file share - Daily schedule for 08:00AM - the first file was forced at 11:23AM on 17

  • Java Class Web Service

    Which the best way to make a webservice based on a java class in JDeveloper 10.1.2? I need to make a webservice that make some queries in views of BPEL's dehydration DB, but I would not like that this webservice was a BPEL process in the Process Mana

  • Basic PC Spec for premiere

    Hello all, I am looking to view and edit some RED camera footage in CS5 and was wondering if anyone can recommend a decent PC spec that will be able to handle the footage ok?  I don't want to do it raw, just transcode the files and work that way. Bud