LineSeries not displaing

I have a column chart which includes a lineSeries graph. the
lineSeries is not loading for some reason.
I am not receiving any errors and I have used the same code
before with array collections and everything display ine.
<?xml version="1.0" encoding="utf-8"?>
<mx:Application pageTitle="CSV Example"
initialize="svcStats.send()" xmlns:mx="
http://www.adobe.com/2006/mxml"
layout="absolute">
<mx:Script>
<![CDATA[
private var _stats:Array = new Array();
public function parse( result:Object ):void {
var properties:Array = new Array();
var headings:Boolean = false;
var carriage:Number = null;
var comma:Number = null;
var cursor:Number = 0;
var sub:Number = null;
var item:Object = null;
var value:String = null;
var line:String = null;
while( result.indexOf( "\n", cursor ) != -1 ) {
carriage = result.indexOf( "\n", cursor );
line = result.substring( cursor, carriage );
cursor = 0;
sub = 0;
item = new Object();
while( line.indexOf( ",", cursor ) != -1 ) {
comma = line.indexOf( ",", cursor );
value = line.substring( cursor, comma );
if( !headings ) {
properties.push( value );
} else {
item[properties[sub]] = value;
cursor = comma + 1;
sub++;
value = line.substring( cursor, line.length - 1 );
if( !headings ) {
properties.push( value );
headings = true;
} else {
item[properties[sub]] = value;
Stats.push( item );
cursor = carriage + 1;
[ChangeEvent( "StatsChanged" )]
public function set Stats( value:Array ):void {
_stats = value;
public function get Stats():Array {
return _stats;
]]>
</mx:Script>
<mx:SeriesInterpolate id="chartChange" duration="2000"
/>
<mx:HTTPService id="svcStats" url="data/offload.csv"
resultFormat="text" result="parse( event.result )" />
<mx:Panel title="DNA Dashboard" fontSize="18"
width="100%" height="100%" paddingTop="20" paddingBottom="20"
paddingLeft="20" paddingRight="20" backgroundColor="#666666">
<mx:Panel title="Column And Axis Chart Example"
fontSize="12" width="600" height="400" paddingTop="5"
paddingBottom="5" paddingLeft="5" paddingRight="5"
layout="horizontal" x="20" y="25">
<mx:ColumnChart dataProvider="{Stats}" width="90%"
height="100%" showDataTips="true" id="myChart">
<mx:horizontalAxis>
<mx:CategoryAxis categoryField="month" />
</mx:horizontalAxis>
<mx:series>
<mx:ColumnSeries xField="month" yField="peer_bytes"
displayName="Peer Bytes" showDataEffect="{chartChange}" />
<mx:ColumnSeries xField="month" yField="web_bytes"
displayName="Server Bytes" showDataEffect="{chartChange}" />
</mx:series>
<mx:secondSeries>
<mx:LineSeries dataProvider="{Stats}" yField="offload"
form="curve" displayName="Offload" showDataEffect="{chartChange}"
/>
</mx:secondSeries>
</mx:ColumnChart>
<mx:Legend dataProvider="{myChart}" />
</mx:Panel>
</mx:Panel>
</mx:Application>
month,peer_bytes,web_bytes,offload
"Jan",1032,2433,3320
"Feb",1724,1223,4520
"Mar",1332,8291,6520
"Apr",1236,6543,2520
"May",3523,2342,4520
"Jun",4525,6053,6620
"Jul",7654,1245,8720
"Aug",1234,6754,5422
"Sep",1267,1238,2320
"Oct",2346,1238,5420
"Nov",1928,1238,7620
"Dev",3210,1983,1220

Hi Olaf,
         I have checked the link that is not the problem because upto yesterday the same application was running fine and we don't had any issues and suddenly started giving this error so I tried another simple application which have no coplexity as the previous one and still problem persist so I guess this is not the problem with code or WebDynpro but with the configuretion in administration part but I don't know where exactly
so please guide me for the  same
Thanks
Ninad

Similar Messages

  • Typekit fonts still not displaing

    Typekit fonts are still not displaing on chrome. when are they going to fix it??

    Hi Daniel,
    I'm sorry that the browser bug is causing problems for you. The Chrome team has a fix already, and it should be released in the next update (v34).
    You can follow the bug report here:
    https://code.google.com/p/chromium/issues/detail?id=336476
    and Typekit will update our blog post when that fix is released:
    http://blog.typekit.com/2014/02/28/new-bug-in-chrome-v33-affecting-web-fonts/
    Sorry I couldn't be of more help, but please let me know if you have any other questions.
    -- liz

  • All values in internal table are not displaing in the script print program

    Hi,
    I am calling the script program.In main window all values in the internal table are not displaying. I wrote
    write-form statement in loop. But not all the values are getting displayed. Only thel ast values getting dispalyed. 
    *& Report  ZSCRIPT_116719
    REPORT  ZSCRIPT_116719.
    ************Table decleration***************
    TABLES: mara, mbew, makt.
    loop at i_makt into wa_makt.
      endloop.
    loop at i_MARA into wa_mara.
      endloop.
    LOOP AT I_MBEW INTO WA_MBEW.
      ENDLOOP.
    lv_price = 0.
    ********************Total Price******************
      LOOP AT i_mbew INTO wa_mbew.
        lv_price = lv_price + wa_mbew-stprs.
      ENDLOOP.
    end-of-selection.
    CALL FUNCTION 'OPEN_FORM'
    EXPORTING
      APPLICATION                       = 'TX'
      ARCHIVE_INDEX                     =
      ARCHIVE_PARAMS                    =
      DEVICE                            = 'PRINTER'
      DIALOG                            = 'X'
       FORM                              = 'ZSCRIPT_719'
       LANGUAGE                          = SY-LANGU
      OPTIONS                           =
      MAIL_SENDER                       =
      MAIL_RECIPIENT                    =
      MAIL_APPL_OBJECT                  =
      RAW_DATA_INTERFACE                = '*'
      SPONUMIV                          =
    IMPORTING
      LANGUAGE                          =
      NEW_ARCHIVE_PARAMS                =
      RESULT                            =
    EXCEPTIONS
       CANCELED                          = 1
       DEVICE                            = 2
       FORM                              = 3
       OPTIONS                           = 4
       UNCLOSED                          = 5
       MAIL_OPTIONS                      = 6
       ARCHIVE_ERROR                     = 7
       INVALID_FAX_NUMBER                = 8
       MORE_PARAMS_NEEDED_IN_BATCH       = 9
       SPOOL_ERROR                       = 10
       CODEPAGE                          = 11
       OTHERS                            = 12
    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 'START_FORM'
    EXPORTING
      ARCHIVE_INDEX          =
       FORM                   = 'ZSCRIPT_719'
       LANGUAGE               = SY-LANGU
      STARTPAGE              = ' '
       PROGRAM                = 'ZSCRIPT_116719'
      MAIL_APPL_OBJECT       =
    IMPORTING
      LANGUAGE               =
    EXCEPTIONS
      FORM                   = 1
      FORMAT                 = 2
      UNENDED                = 3
      UNOPENED               = 4
      UNUSED                 = 5
      SPOOL_ERROR            = 6
      CODEPAGE               = 7
      OTHERS                 = 8
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    *LOOP AT I_MBEW INTO WA_MBEW.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
       ELEMENT                        = 'DATA'
       FUNCTION                       = 'SET'
       TYPE                           = 'BODY'
       WINDOW                         = 'MAIN'
    IMPORTING
      PENDING_LINES                  =
    EXCEPTIONS
       ELEMENT                        = 1
       FUNCTION                       = 2
       TYPE                           = 3
       UNOPENED                       = 4
       UNSTARTED                      = 5
       WINDOW                         = 6
       BAD_PAGEFORMAT_FOR_PRINT       = 7
       SPOOL_ERROR                    = 8
       CODEPAGE                       = 9
       OTHERS                         = 10
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    *ENDLOOP.
    If I give only one value it is showing the output. When I am fetching the data for range of values it i sshowing start_form is not there.
    Plz let me know how to get the aa  internal table values  to be displayed

    hi
    I shortened your program a bit. So we can go to essentials of your question.
    You said you put in it in a loop.
    What i see in your prog is:
    REPORT zscript_116719.
    ************table decleration***************
    TABLES: mara, mbew, makt.
    LOOP AT i_makt INTO wa_makt.
    ENDLOOP.
    LOOP AT i_mara INTO wa_mara.
    ENDLOOP.
    LOOP AT i_mbew INTO wa_mbew.
    ENDLOOP.
    lv_price = 0.
    ********************total price******************
    LOOP AT i_mbew INTO wa_mbew.
      lv_price = lv_price + wa_mbew-stprs.
    ENDLOOP.
    END-OF-SELECTION.
      CALL FUNCTION 'OPEN_FORM'
        EXPORTING
          form     = 'ZSCRIPT_719'
          language = sy-langu.
      CALL FUNCTION 'START_FORM'
        EXPORTING
          form     = 'ZSCRIPT_719'
          language = sy-langu
          program  = 'ZSCRIPT_116719'.
    *LOOP AT I_MBEW INTO WA_MBEW.
      CALL FUNCTION 'WRITE_FORM'
        EXPORTING
          element  = 'DATA'
          function = 'SET'
          type     = 'BODY'
          window   = 'MAIN'.
    *endloop.
    1. Your loop is not a loop with this '*' in front of it.
    2. Are you printing &wa_mbew-???& variables in your sap-script
    3. is itab I_MBEW properly filled
    Let me know.
    Gr. Frank

  • Not Displaing Interactive form in page

    Hi All,
           I am was working with adobe interactive forms but suddenly stoped showing the form on one fine morning. bellow is the error given by server
    <b>'sapUrDomainRelaxing' is undefined</b>
    any one has any idea what could be this error. I tried to develop a simple application where there is just a simple interactive form so no other complexity in the form. so this is not the error in development / code. what could be the other issue as previously it was running fine
    Thanks
    Ninad

    Hi Olaf,
             I have checked the link that is not the problem because upto yesterday the same application was running fine and we don't had any issues and suddenly started giving this error so I tried another simple application which have no coplexity as the previous one and still problem persist so I guess this is not the problem with code or WebDynpro but with the configuretion in administration part but I don't know where exactly
    so please guide me for the  same
    Thanks
    Ninad

  • Header line not displaed in MT103 Format

    Hi all,
    We are working on MT103 format, we are not getting the header line data
    In image 1 we are getting "HKBCCATT 103" but in image 2 we are not getting that line.
    Kindly help us what should be done so we can get "HKBCCATT 103"
    Regards,
    shegar.

    Hi,
    It would have helped if you had indicated in any way what functionality are you using to produce the file... If I look at the settings for MT103 in transaction OBPM1, and the event module for Event 20 - Start/File header, the standard event implementation FM FI_PAYMEDIUM_MT103_20 takes in into gs_swift_103 structure as part of format parameters the field PAYMHEAD, which controls writing of header record. But since you didn't bother to supply any information whatsoever, one can only guess if this is applicable to your case...
    cheers
    Jānis

  • Rss feed not displaing

    A friend of mine is developing this site http://79.170.44.97/loveyourdoorstep.co.uk/ and has asked me to help! I am stuck.
    On the front page text is provided by an rss. It works in all browsers except firefox. When I look at the source the code is there but not displaying which maybe suggest either a css issue (unlikely, because fine in IE, Ch, Op, Saf. or else there is something going on about which I know nothing!
    Can anyone please help!
    Many thanks
    Edward

    Works fine here as well.
    <pre><nowiki><link href="/loveyourdoorstep.co.uk/index.php?format=feed&amp;type=rss" rel="alternate" type="application/rss+xml" title="RSS 2.0" /></nowiki></pre>
    *[http://79.170.44.97/loveyourdoorstep.co.uk/index.php?format=feed&type=rss]

  • JButton text not displaing on applet startup

    I'm having a problem with the text of a button not showing up when the applet starts up. It just has the button with the background and the text doesn't show up until you mouse over the button (not by design). It only happens on startup and it's not consistant. It seems to only happen in Internet Explorer, but not in Firefox. I'm using the java plugin Version 1.5.0 (build 1.5.0_02-b09) and internet explorer 6.0.2800.1106. Here's the java code for the button:
    public class AdminViewApplet extends JApplet implements ActionListener {
         private static final long serialVersionUID = 1L;
         private static final String ADMIN_VIEW_URL = "/admin/view";
         private static final String LOGIN_ID = "loginId";
         private static final String TOKEN = "token";
         private static final String EXCEPTION = "exception";
         public void init() {
              Color backgroundColor = new Color(204,204,204);
              JButton adminViewButton = new JButton("Admin View");
    adminViewButton.addActionListener(this);
              adminViewButton.setFont(new Font("Helvetica", Font.PLAIN, 11));
              adminViewButton.setMargin(new Insets(5, 5, 5, 5));
              adminViewButton.setBackground(backgroundColor); adminViewButton.setBorder(BorderFactory.createEtchedBorder(EtchedBorder.LOWERED));
    JPanel pane = new JPanel(new GridLayout(1,1,0,0));
              pane.setBackground(backgroundColor);
    pane.add(adminViewButton);
    setContentPane(pane);
    public void actionPerformed(ActionEvent event) { ... }
    Here's the applet tag in the jsp:
         <applet archive="admin-view-applet.jar" code="com.healthpartners.share.applet.AdminViewApplet" width="80" height="28">
                        <param name="effectiveAccountId" value="<%= accountData.getAccountId() %>"></param>
                        <param name="realAccountId" value="<%= HPEnvironmentFactory.getHPEnvironment().getAccount(request.getUserPrincipal()).getAccountId() %>"></param>
                   </applet>
    Any help would be appreciated!
    Thanks,
    Tim

    Try compiling on 1.4.2. I've had to drop 1.5 as it was getting too buggy, when I was using different browsers and OSs.

  • 7.5: strange behaviour on data entry schedule

    Hi,
    I have a very strange problem when entering data. A user can enter data and send it to the database with no error but the schedule then does not display it. I have investigated a bit and found out that:
    a) if I remove all summation accounts from the schedule the value is shown correctly
    b) it only happens for 4 "special" periods we have in our time dimension.
    So, to explain those two a bit more.
    a)
    The input schedule was originally set up using the account for profit from the P&L in the current view and a member set of SELF,ALL. When a user now enters data onto the first base level account (SALES THIRD PARTY) it will be sent to the database but after a refresh of the schedule it won't be displayed any more. If I change the member set to BAS the value will be displayed.
    b)
    For 2011 we have a few companies that cannot deliver data on a monthly level, they can only deliver data on a quarterly level. So, since our application is YTD but uses the periodic option on currency conversion, simply loading the data for those entities into MARCH, JUNE, SEPTEMBER and DECEMBER will not work on currency conversion. We therefore set up four new periods (TIMEID = 20111400, 20111500, 20111600 and 20111700) to enter the data into. As these are four consecutive periods, the periodic conversion should then work as expected. And for reporting we will have to manually add 20110300 and 20111400, 20110600 and 20111500 etc together. These periods are set up as LEVEL=MONTH.
    Does anyone have an idea what might be the problem here?
    Thanks,
    Arnold

    Hi Arnold
    Could you share your solution for that.
    I have very similar problem. I'm using addtional time base level members to store data quarterly. I'm using script logic co copy data from  MAR to additional member Q1_INPUT ,JUN to Q2 input etc.... Later client input manual adjustmets on these additional members quarterly.
    Script is working fine, I checked in BW RSA1 that data was sucesfully save, but not displaing in my input schedule for special members.
    What is strange I noticed problem with displaing data on additional members in only for AST/LEQ accounts, for INC/EXP they are visible in my input schedule.
    I have no idea why this happens.
    Regards
    Justyna

  • How to reinstall safari on macbook air?, how to reinstall safari on macbook air?

    I am having problems with safari 6.05 on my MacBook Air.  The address window is not displaing correctly and it takes unuassly long time for websites to load.
    I thaught deleting and reisntalling Safari would be the obvious and easy option.  But from i have discovered it is not that easy at all.
    How do i go about reistalling latest version of Safari?
    Thanks in advance.

    Only by reinstalling OS X:
    Reinstalling Lion/Mountain Lion Without Erasing the Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu.
    Reinstall Lion/Mountain Lion: Select Reinstall Lion/Mountain Lion and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.

  • Are there required fonts for Illustrator to run properly?

    Are there required fonts for Illustrator to run properly?

    Yes, there are. There's a problem related with missing Verdana (search for layers not displaing properly). And maybe others.

  • N96 WELCOME LOGO opening problem.... please help

    Hi all,
    I have nokia n96. today I boot the pone, nokia WELCOME LOGO (Hand Shaking Animation) not displaing and NO OPENING SOUD.
    What can I do? This is big problem to me
    please help...
    Thanks (sorry for bad English)

    Does your phone show any sign of life,
    Vibration, white screen
    If not it's likely a hw issue
    If it does and then gets no further then a full 3 finger reset may help
    1. Switch off the phone.
    2. Hold down the following three buttons: Green (the call answer button), * button, and '3' button.
    3. While holding these buttons, hold the power button for a second to switch on the phone.
    4. Release when the phone shows the nokia hands logo or shows other signs of life like the language selection screen.
    It may take a few attempts and very flexible fingers
    This will remove all data from your phones memory however
    Other than this a nokia care point is your only hope
    Care points/service centres and repair info:
    UK • Europe • Asia-Pacific • USA •
    Canada • Middle East and Africa
    Elsewhere: Click here, select your country, go to the support section, then select repair.
    Message Edited by synth_fg on 24-Jun-2009 10:40 AM

  • How to find intersection point between a lineseries and a vertical line.

    I have a lineseries chart (refer the screenshot). As I move the spend slider shown in the attachment, a vertical line is drawn in the chart. (I did this using the cartesian canvas as annotation element - using canvas.moveTo(), canvas.lineTo() functions)
    I want to find out the intersection point(y value) where the vertical line meets the lineseries. Can someone help me on this. It will be really helpful.
    Thanks,
    Jayakrishnan

    Here are a few functions I wrote years ago for common chart transformations... the function you're going to focus on for your solution is chartToScreen...
    *  Converts the screen position to chart value position
    *  @param thePos - Number - The position you want to convert
    *  @private
            private function getChartCoordinates(thePos:Point):Object
                   var tmpArray:Array = dataTransform.invertTransform(thePos.x, thePos.y);
                   return {x:tmpArray[0], y:tmpArray[1]};
    *  Takes a non-numeric chart value and returns a proper numeric value
    *  @param inValue - String - The display name of the instance showing on the axis (eg. if we're showing months, it might be 'Sep - 06'
    *  @param theAxis - IAxis - The axis on which we're looking
              public function getNumericChartValue(inValue:String, theAxis:IAxis):Object
                   var axisCache:Array = new Array({inValue: inValue})                 
                   if(!(theAxis is LinearAxis))
                        theAxis.mapCache(axisCache, "inValue", "outValue", true);
                        return {numericValue: axisCache[0].outValue}
                   else
                        return {numericValue: Number(inValue)};
    *  Converts the chart values into screen coordinate values
    *  @param chartX - Number - The display name of the instance showing on the axis (eg. if we're showing months, it might be 'Sep - 06'
    *  @param chartY - Number - The axis on which we're looking
              public function chartToScreen(chartX:Number, chartY:Number, theSeries:Series):Point
                   var tmpCache:Array = new Array({chartX:chartX, chartY:chartY});
                   if(theSeries)
                        theSeries.dataTransform.transformCache(tmpCache, "chartX", "screenX", "chartY", "screenY");
                   else
                        dataTransform.transformCache(tmpCache, "chartX", "screenX", "chartY", "screenY");
                   return new Point(Math.round(tmpCache[0].screenX), Math.round(tmpCache[0].screenY));
    *  takes a point in mouse position, and runs it through converting to chart coordinates, converts chart coordinate to numeric value if needed
    *  and then back into mouse position to get the nearest axis snap point
    *  @param thePoint - Point - The position we're converting
    *  @private
              private function getSnapPosition(thePoint:Point):Point
                   var chartPoint:Object = getChartCoordinates(new Point(thePoint.x, thePoint.y));
                   //if either of the axis chart results is not in numeric format, we get the numeric equivalent of it
                   var chartX:* = chartPoint.x;
                   var chartY:* = chartPoint.y;
                   chartX = getNumericChartValue(chartPoint.x, CartesianChart(this.chart).horizontalAxis).numericValue;
                   chartY = getNumericChartValue(chartPoint.y, CartesianChart(this.chart).verticalAxis).numericValue;
                   return chartToScreen(chartX, chartY, null);

  • Multiple Tooltips are not showing up when hovering over overlapping chart items

    Hi!
    I ran into a problem which I am unable to fix. Either I am missing something very obvious or this is a bug. I set up a LineChart with two series. One series has multiple overlapping data points, and both series overlap in one point.
    Data tips are only getting displayed where the data points of the two different series overlap. Hovering over the overlapping points of a single series does not lead to multiple data tips being displayed. According to Flex SDK docs this should be possible.
    Here's a simple example which shows the problem:
    <?xml version = "1.0"?>
    <s:Application xmlns:fx = "http://ns.adobe.com/mxml/2009"
                      xmlns:mx = "library://ns.adobe.com/flex/mx"
                      xmlns:s = "library://ns.adobe.com/flex/spark"
                      xmlns:local = "*">
         <fx:Script>
              <![CDATA[
                   import mx.charts.HitData;
                   import mx.collections.ArrayCollection;
                   import mx.graphics.SolidColorStroke;
                   [Bindable]
                   private var values:ArrayCollection = new ArrayCollection([{date: new Date(2010, 10, 15), value:120},
                        {date: new Date(2010, 11, 15), value: 60},
                        {date: new Date(2011, 0, 15), value: 40},
                        {date: new Date(2011, 0, 30), value: 7},
                        {date: new Date(2011, 1, 15), value: 30},
                        {date: new Date(2011, 1, 18), value: 61},              
                        {date: new Date(2011, 1, 23), value: 80}]);
                   [Bindable]
                   private var values2:ArrayCollection = new ArrayCollection([{date: new Date(2010, 10, 15), value:120},
                        {date: new Date(2010, 11, 15), value: 200},
                        {date: new Date(2011, 0, 15), value: 29},
                        {date: new Date(2011, 0, 15, 13, 59, 99), value: 29},
                        {date: new Date(2011, 0, 15, 13, 58, 99), value: 29},
                        {date: new Date(2011, 0, 15, 13, 57, 99), value: 29.5},
                        {date: new Date(2011, 0, 15), value: 29.5},
                        {date: new Date(2011, 0, 15), value: 30},
                        {date: new Date(2011, 0, 15), value: 30.5},
                        {date: new Date(2011, 0, 15), value: 30.5},
                        {date: new Date(2011, 0, 15), value: 30.5},
                        {date: new Date(2011, 0, 15), value: 30},
                        {date: new Date(2011, 0, 15), value: 30},
                        {date: new Date(2011, 0, 15), value: 30},
                        {date: new Date(2011, 0, 15), value: 31},
                        {date: new Date(2011, 0, 15), value: 31},
                        {date: new Date(2011, 0, 30), value: 70},
                        {date: new Date(2011, 1, 15), value: 2},
                        {date: new Date(2011, 1, 18), value: 180},              
                        {date: new Date(2011, 1, 23), value: 80}]);
                   [Bindable]
                   private var minDate:Date = new Date(2010, 10, 1);
                   [Bindable]
                   private var maxDate:Date = new Date();
                   private function getDataTip(hitData:HitData):String
                        return "<b>Tip:</b><br> Date: " + hitData.item.date + '<br>Value: ' + hitData.item.value;
              ]]>
         </fx:Script>
         <s:layout>
              <s:VerticalLayout/>
         </s:layout>
         <s:width>100%</s:width>
         <s:height>100%</s:height>
         <s:Panel title = "Chart Test">
              <s:width>100%</s:width>
              <s:height>100%</s:height>
              <s:layout>
                   <s:VerticalLayout/>
              </s:layout>
              <mx:PlotChart id = "chart">
                   <mx:width>100%</mx:width>
                   <mx:height>100%</mx:height>
                   <!-- Uncomment this in order to see that there are overlapping items -->
                   <!-- mx:showAllDataTips>true</mx:showAllDataTips-->
                   <mx:selectionMode>multiple</mx:selectionMode>
                   <mx:dataTipMode>multiple</mx:dataTipMode>
                   <mx:showDataTips>true</mx:showDataTips>
                   <mx:dataTipFunction>getDataTip</mx:dataTipFunction>
                   <mx:horizontalAxis>
                        <mx:DateTimeAxis minimum = "{minDate}"
                                             maximum = "{maxDate}"/>
                   </mx:horizontalAxis>
                   <mx:series>
                        <mx:LineSeries dataProvider = "{values}"
                                                      displayName = "Series 1"
                                                      yField = "value"
                                                      xField = "date"
                                                      interpolateValues = "true"
                                                      lineStroke = "{new SolidColorStroke(0x00FF00, 3, 0.5)}"
                                                      stroke = "{new SolidColorStroke(0x00FF00, 3, 0.5)}"
                                                      itemRenderer = "mx.charts.renderers.CircleItemRenderer"/>
                        <mx:LineSeries dataProvider = "{values2}"
                                                      displayName = "Series 2"
                                                      yField = "value"
                                                      xField = "date"
                                                      interpolateValues = "true"
                                                      lineStroke = "{new SolidColorStroke(0xFF0000, 3, 0.5)}"
                                                      stroke = "{new SolidColorStroke(0xFF0000, 3, 0.5)}"
                                                      itemRenderer = "mx.charts.renderers.CircleItemRenderer"/>
                   </mx:series>
              </mx:PlotChart>
         </s:Panel>
    </s:Application>
    Any help is appreciated!
    Thanks!

    Hi!
    I ran into a problem which I am unable to fix. Either I am missing something very obvious or this is a bug. I set up a LineChart with two series. One series has multiple overlapping data points, and both series overlap in one point.
    Data tips are only getting displayed where the data points of the two different series overlap. Hovering over the overlapping points of a single series does not lead to multiple data tips being displayed. According to Flex SDK docs this should be possible.
    Here's a simple example which shows the problem:
    <?xml version = "1.0"?>
    <s:Application xmlns:fx = "http://ns.adobe.com/mxml/2009"
                      xmlns:mx = "library://ns.adobe.com/flex/mx"
                      xmlns:s = "library://ns.adobe.com/flex/spark"
                      xmlns:local = "*">
         <fx:Script>
              <![CDATA[
                   import mx.charts.HitData;
                   import mx.collections.ArrayCollection;
                   import mx.graphics.SolidColorStroke;
                   [Bindable]
                   private var values:ArrayCollection = new ArrayCollection([{date: new Date(2010, 10, 15), value:120},
                        {date: new Date(2010, 11, 15), value: 60},
                        {date: new Date(2011, 0, 15), value: 40},
                        {date: new Date(2011, 0, 30), value: 7},
                        {date: new Date(2011, 1, 15), value: 30},
                        {date: new Date(2011, 1, 18), value: 61},              
                        {date: new Date(2011, 1, 23), value: 80}]);
                   [Bindable]
                   private var values2:ArrayCollection = new ArrayCollection([{date: new Date(2010, 10, 15), value:120},
                        {date: new Date(2010, 11, 15), value: 200},
                        {date: new Date(2011, 0, 15), value: 29},
                        {date: new Date(2011, 0, 15, 13, 59, 99), value: 29},
                        {date: new Date(2011, 0, 15, 13, 58, 99), value: 29},
                        {date: new Date(2011, 0, 15, 13, 57, 99), value: 29.5},
                        {date: new Date(2011, 0, 15), value: 29.5},
                        {date: new Date(2011, 0, 15), value: 30},
                        {date: new Date(2011, 0, 15), value: 30.5},
                        {date: new Date(2011, 0, 15), value: 30.5},
                        {date: new Date(2011, 0, 15), value: 30.5},
                        {date: new Date(2011, 0, 15), value: 30},
                        {date: new Date(2011, 0, 15), value: 30},
                        {date: new Date(2011, 0, 15), value: 30},
                        {date: new Date(2011, 0, 15), value: 31},
                        {date: new Date(2011, 0, 15), value: 31},
                        {date: new Date(2011, 0, 30), value: 70},
                        {date: new Date(2011, 1, 15), value: 2},
                        {date: new Date(2011, 1, 18), value: 180},              
                        {date: new Date(2011, 1, 23), value: 80}]);
                   [Bindable]
                   private var minDate:Date = new Date(2010, 10, 1);
                   [Bindable]
                   private var maxDate:Date = new Date();
                   private function getDataTip(hitData:HitData):String
                        return "<b>Tip:</b><br> Date: " + hitData.item.date + '<br>Value: ' + hitData.item.value;
              ]]>
         </fx:Script>
         <s:layout>
              <s:VerticalLayout/>
         </s:layout>
         <s:width>100%</s:width>
         <s:height>100%</s:height>
         <s:Panel title = "Chart Test">
              <s:width>100%</s:width>
              <s:height>100%</s:height>
              <s:layout>
                   <s:VerticalLayout/>
              </s:layout>
              <mx:PlotChart id = "chart">
                   <mx:width>100%</mx:width>
                   <mx:height>100%</mx:height>
                   <!-- Uncomment this in order to see that there are overlapping items -->
                   <!-- mx:showAllDataTips>true</mx:showAllDataTips-->
                   <mx:selectionMode>multiple</mx:selectionMode>
                   <mx:dataTipMode>multiple</mx:dataTipMode>
                   <mx:showDataTips>true</mx:showDataTips>
                   <mx:dataTipFunction>getDataTip</mx:dataTipFunction>
                   <mx:horizontalAxis>
                        <mx:DateTimeAxis minimum = "{minDate}"
                                             maximum = "{maxDate}"/>
                   </mx:horizontalAxis>
                   <mx:series>
                        <mx:LineSeries dataProvider = "{values}"
                                                      displayName = "Series 1"
                                                      yField = "value"
                                                      xField = "date"
                                                      interpolateValues = "true"
                                                      lineStroke = "{new SolidColorStroke(0x00FF00, 3, 0.5)}"
                                                      stroke = "{new SolidColorStroke(0x00FF00, 3, 0.5)}"
                                                      itemRenderer = "mx.charts.renderers.CircleItemRenderer"/>
                        <mx:LineSeries dataProvider = "{values2}"
                                                      displayName = "Series 2"
                                                      yField = "value"
                                                      xField = "date"
                                                      interpolateValues = "true"
                                                      lineStroke = "{new SolidColorStroke(0xFF0000, 3, 0.5)}"
                                                      stroke = "{new SolidColorStroke(0xFF0000, 3, 0.5)}"
                                                      itemRenderer = "mx.charts.renderers.CircleItemRenderer"/>
                   </mx:series>
              </mx:PlotChart>
         </s:Panel>
    </s:Application>
    Any help is appreciated!
    Thanks!

  • SNP - Planning Book/Data View not showing up in /SAPAPO/SNP94

    Hi All:
    I created a planning Book out of a custom SNP planning area. While I could see the Planning Book in the list of Planning Book in the /SAPAPO/SDP94 - Interactive Supply Network Planning (all Books)   I could not see the custom planning book in /SAPAPO/SDP94 - Interactive Supply Network Planning (all Books) .  I could ony see the SAP supplied PB there.  Will SDP94 transaction display only the standard SNP Planning book?  How can I make sure that the custom PB is displaed in /SAPAPO/SDP94?
    pl. help
    Thanks
    Ryan

    Hi Narayanan,
    a couple of simple checks..
    can you please check that you have not set a filter critera in the shuffler in planning book/data view?
    you can also check if by mistake only a limited number of users are assigned to this planning book and data view ?
    else you may want to check note : , 327371
    Let me if this helps.
    Rgds, Sandeep

  • Error-M2O-Settlement rule for assembly order for item...could not be genera

    Hi,
    When I am creating Sales Order (VA01) for M2O, I am able to do the costing and copy the EK02 condition type. I have verified the the incompletion log, it indicates that document is complete.
    But while saving the sales order, the below error message is displaed:
    Settlement rule for assembly order for item 000010 could not be generated. Should the order still be saved?
                    Yes/No
    1. If No is choosen the following error message is displayed
           Error when processing Production order
          Error when processing Production order
          Message no. V1380
          Diagnosis
            A technical error has occurred. On calling up the assembly interface, exception 5 was triggered. The exceptions have the  following meanings:
    1 = External block,  2 = General error,  3 = Insufficient data for the interface,  4 = Order was not found, 5 = Update has been rejected, 6 = Final document number for Production order is not issued.  Procedure: Inform your system administrator.
    2. If Yes is choosen, it is creating Production Order without settlement rule. Able to perform GI & Gr. If I try to enter settelement rule (Settlement receiver SDI - Sales document item) in production order (CO02), the belwo error message is displayed
    "Distribution rule for Sales document item can only be created automatically Message no. KD063"
    We are using the requierement class with below details:
    Reqmts class: ZSO- for M2O
    AAC = E, Valuation = A, Settlement profile =SD1, RAKey = 000004, Assembly type = 3.
    Settlement profile contain:
    Allocation structure, PA structure, Default object type = SDI. Valid receivers: Optional -Sales Order / Prof. seg.
    If I make the Valuation field as blank in Reqmts class, there is no error while creating Sales order. And also Settelemnt rule with sales document item as receiver is successfully creating for the production order. Since the Valuation is blank in requirement class, it is Non valuated Sales order stock. All GIs & GR are non valuated
    The business requirement is it should be valuated sales order stock and the production varinaces has to be settled to Sales order. Then Sales order has to be settled to COPA.
    Need your valuable inputs to meet this requirement.
    Let me know if you need any further details.
    Thanks in advance.
    Regards,
    ADI

    Dear SAP PP Consultant ,
    What is the strategy group you are maintained in the material master ?

Maybe you are looking for