Problem in Business Graph - no chart in my graph

Hi ,
I have tried a scenario on Business Graph as per the below link.
http://****************/Tutorials/WebDynproABAP/Graphics/page4.htm
i am getting the values in table ,but there was no any chart inside my graph , whereas i can see the values along x - axis.
following is the code i have used.
METHOD ONACTIONGET_EMP_DETAILS .
    WD_THIS->FIRE_TO_ALV_TABLE_PLG(  ).
  DATA LO_ND_EMPLOYEE TYPE REF TO IF_WD_CONTEXT_NODE.
  DATA LO_EL_EMPLOYEE TYPE REF TO IF_WD_CONTEXT_ELEMENT.
  DATA LT_EMPLOYEE TYPE WD_THIS->ELEMENTS_EMP_DETAILS.
  DATA LS_EMPLOYEE TYPE WD_THIS->ELEMENT_EMP_DETAILS.
navigate from <CONTEXT> to <EMPLOYEE> via lead selection
  LO_ND_EMPLOYEE = WD_CONTEXT->GET_CHILD_NODE('EMP_DETAILS').
  DATA LO_EL_CONTEXT TYPE REF TO IF_WD_CONTEXT_ELEMENT.
  DATA LS_CONTEXT TYPE WD_THIS->ELEMENT_CONTEXT.
  DATA LV_EMP_NO LIKE LS_CONTEXT-EMP_NO.
  DATA LV_NUM TYPE I.
get element via lead selection
  LO_EL_CONTEXT = WD_CONTEXT->GET_ELEMENT(  ).
get single attribute
  LO_EL_CONTEXT->GET_ATTRIBUTE(
    EXPORTING
      NAME =  `EMP_NO`
    IMPORTING
      VALUE = LV_EMP_NO ).
  SELECT ZASSIGNCOMP BEGDA ENDDA  INTO CORRESPONDING FIELDS OF TABLE
      LT_EMPLOYEE  FROM PA9030 WHERE PERNR EQ LV_EMP_NO." AND ENDDA EQ '99991013'.
  DESCRIBE TABLE LT_EMPLOYEE LINES LV_NUM.
  LO_ND_EMPLOYEE->BIND_TABLE( LT_EMPLOYEE ).
  DATA LO_CMP_USAGE TYPE REF TO IF_WD_COMPONENT_USAGE.
  LO_CMP_USAGE =   WD_THIS->WD_CPUSE_ALV( ).
  IF LO_CMP_USAGE->HAS_ACTIVE_COMPONENT( ) IS INITIAL.
    LO_CMP_USAGE->CREATE_COMPONENT( ).
  ENDIF.
  DATA LO_INTERFACECONTROLLER TYPE REF TO IWCI_SALV_WD_TABLE .
  LO_INTERFACECONTROLLER =   WD_THIS->WD_CPIFC_ALV( ).
  DATA LO_VALUE TYPE REF TO CL_SALV_WD_CONFIG_TABLE.
  LO_VALUE = LO_INTERFACECONTROLLER->GET_MODEL( ).
Set Visible Row Count as 5
  LO_VALUE->IF_SALV_WD_TABLE_SETTINGS~SET_VISIBLE_ROW_COUNT( LV_NUM ).
The Config Table Setting to Display Table & Business Graphics
  DATA: L_REF_CONFIG_TABLE TYPE REF TO IF_SALV_WD_TABLE_SETTINGS,
        L_DISPLAY_AS TYPE SALV_WD_CONSTANT VALUE '02'.
  L_REF_CONFIG_TABLE ?= LO_VALUE.
  L_REF_CONFIG_TABLE->SET_DISPLAY_AS( VALUE = L_DISPLAY_AS ).
ENDMETHOD.

Hello Siva ,
                         Which node you have bind to the business graphics ui element ?
Which attribute you have used to for Series in business graphics ?
Regards
Vivek

Similar Messages

  • Display Data on waveform chart or XY graph over a long period of time

    Display Data on waveform chart or XY graph over a long period of time
    Can anyone help?
    I am acquiring data from an Ni DAQ card with the following parameters - sample rate = 12800, number of samples = 4096. I want to extract order information so as to track changes in the amplitudes of certain frequency harmonics. So I use the sound and vibration toolkit to extract this information as shown in the attached Vi.  I will like to plot the resulting amplitudes against real-time starting at the time the Vi was run.  I really want the display to show these changes over long periods (eg. days, months and even years).
    Problem.
    I have tried to plot the Y component of the resulting magnitude for a given order on a waveform chart. My choice of the waveform chart is because I also want to display  alarm limits (using the mask and limit vi) (I can't have these lines displayed on an XY graph plot).  I tried adjusting the scale offset using the property node and setting the offset to current time. However, the display on the X-axis can only show a span of  2 minutes as will be seen when you run the attached vi. I want the time display on the x-axis to be over a period of  days, months  and even years.  Is there a way to set the maximum scale on the x-axis to be say a year or so in future.
    I really want the display to be like the one in in the second attachment.
    Attached is a sample VI created using an Ni USB 9234 DAQ card. Any card will do but I am only getting the signal from one channel for this example
    I will appreciate any help that can be given to me.
    Thanks
    Attachments:
    Real-Time Graph Display.vi ‏170 KB
    Sampe screen1.doc ‏37 KB

    Long term testing can be tricky- and we'l get into that later.  Lets start with the basics that you have wrong.
    The vi as you have constructed it has only one memory element, the chart history length (default is 1024.)
    You can change the number of points the Chart will remember by Right-clicking the chart an select Chart History Length from the menu.
    But for a long term test - and one where you want to REMEMBER the first value you need a memeory element that is independant of the application.  Your PC WILL loose power or need to be rebooted eventually.  Heck it might even need to be replaced! you really need to store your data in a file. Preferablly in a file that is backed-up on a regular basis so you don't lose every point of data if the PC dies.  It realy hurts when you have to restart a 2yr test because you've lost the 18months of data you collected.
    For an application like this I would seperate my "collection" and "Evaluation" operations. 
    Have one vi that takes the reading and writes it to a file at a configurable rate  You may want 1reading  per minute for seveal days then 1 per hour for a few weeks- then maybe only once or twice a week for the next couple of years since you are looking for LONG TERM stability.  having too much data to evaluate can take a lot of digging to find the few things that interest you (but always take more that you think you need)
    Have another utility that COPIES the files, reads them and displays the data you are interested in that day.  The data you want to look at won't change over time HOWEVER, you WILL want to analize it in different ways depending on what the data trends look like.  Having seperate routines for collection and display allows you to update the display style and analisys without even stopping the collection vi (much less editing the vi)
    Jeff

  • Questions on graphs and charts.,,,

    Hi ,
    I have always been facing problem while working with graphs and charts. First of all let me be clear with the data these accept. further questions as under:
    1. If I wire an array (1-dimention) to graph/chart , it plots it on Y axis. In this case, what are the values on x.axis?
    2. If I want to acquire a voltage on Analog I/P channel for some specified time , say 2 sec., how to ensure that time span and data without missing anyone.
    3. If I have to plot an I-V plot, how to make sure that V will come on Y-axis and I will come on X-axis.
    Plz clear these doubts...
    Regards
    GNS

    Hi,
    1. Charts takes sigle point value like plotting DC voltages, Graph takes set of values like arrays (1D) which are plotted on Y-axis with respect to x axis which is integer number like 0,1,2..etc.. ,
    XY graph takes bundled array of X-axis & Y axis.
    2. Charts are used where a single point value is to be presented/updated w.r.t. to time or x scale (x scale can also act an index).
    Also it supports update modes like sweep, scope & strip.
    3. Graph are used to plot waveforms which does have no. of samples acquired from DAQ board or other source, which needs to be plot on Y-axis.
    Main inputs of waveforms are starting time (t0), time stpes(dt) & Y elements.
    4.X-Y graphs are used where you want to plot Y elements w.r.t. to the defined X eleme
    nts. For e.g. I want to plot as
    Y=10 when X = 0
    Y=20 when X = 2
    Y=30 when X = 3
    etc.
    Here we have one array of Y elements & other array of X elements. So bundle your X & Y array & fetch to XY graph to plot it.
    Hope it clears you the concepts. Your feedbacks are welcome.
    Best Regards,
    Nirmal Sharma
    India

  • How to record and plot only the zoomed portion of a Graph or Chart?

    I'm using LabVIEW 8.6 and have problem plotting only zoomed part of a graph or chart onto other. Please help.

    Sorry, your VI makes absolutely no sense. First you slowly generate chart data, then you write it to a file, read it back from a file, do some exceedingly elaborate while loop that could be done with almost no code at all, then chart all data at once again. The stop button in the while loop makes no sense, because the while loop executes so fast that it is not possible to actually stop it while it is running, only if the button has already been pressed during the first FOR loop.
    What is the purpose of the two arrays? They don't seem to serve any purpose. Why are you getting the array size with every iteration of the loop? Once, right before the loop should be enough. Index array is resizable, so only one instance is enough. Instead, array to cluster is probably all you need.
    The sequence structure is only needed because you write, and then immediately read from the file. All you probably need is to write to the file and wire the 2D array to the seconds structure. Now we have a data dependency and the sequence structure is no longer needed.
    Can you tell us a little more how you are zooming. Do you want to zoom any of the two graphs and automatically zoom the other accordingly?
    As it currently stands, only the first chart gets data, so zooming the other one seems useless. Once the second chart has data, the VI stops and you can't do much either programmatically. Please explain how you are zooming.
    LabVIEW Champion . Do more with less code and in less time .

  • How can I have a waveform graph (or chart) updated using the value propertynode without loosing previous data plots?

    I want to have a master waveform graph (or chart) capable of displaying data via the value property node. There are several value nodes in a flat sequence structure. The problem is that the graph (or chart) doest keep the previous data and does display just the very last value property node. Can anybody help me? 

    A graph does not "keep" any data. It is strictly an indicator which displays the most recent values written to it. 
    A chart has an internal buffer, called, Chart History which retains previously written data until the buffer is full. Then it removes the oldest data when new data is sent to the chart.
    1. Sequence structures are almost never needed in good LabVIEW programs. They defeat dataflow and limit parallelism.
    2. Value property nodes (and local variables) should only be used under special circumstances and a sequence structure is not one of those.
    A state machine with shift registers or a Producer/Consumer architecture are more likely to be better ways of doing what you are trying to do and can be implemented without sequence structures or Value property nodes.
    Lynn

  • Problems showing business graphics through ITS

    Dear Sirs,
    I have problems showing business graphics correctly through ITS 6.20 PL 13.  I have a pie chart which is created dynamically based on business data in ECC. This business graphics is part of a trancsaction screen, and when I display this through WINGUI the graphics is displayed correctly.
    However when displaying the same transaction through ITS, the business graphics is rendered quite bad. The image looks like a bad “paint” drawing, and the colours and resolution is quite bad.
    Have anyone experienced similar errors and found a solution to it?
    I have images describing the problem, if anyone are interested.
    Best regards,
    Jørgen Ruud
    Message was edited by: Jørgen Ruud

    Hi Jørgen,
    I assume the chart is renderer by SAP Internet Graphics Server. Can you please right click on the GIF copy the URL to the clipboard and past it in another browser window. Is the GIF still rendered bad?
    Best regards,
    Klaus

  • Right way to insert graph or chart from Word document?

    I have a content given in word format. I place the document to indesign using Place command. All content is put except the graph / chart.
    That graph/chart is linked to source data in excel that I don't have access to.
    I manually copy paste from word it resulted as non editable raster image.
    I can't paste to Illustrator first too.
    I have searched the forum but doesn't get a right answer.
    Any help would be appreciated.

    I finally got the excel files. I could copy paste the chart to illustrator, the results was vector line. Only sadly the data label appear error (screenshot attached)

  • Graphs and Charts output in XML Publisher Report

    Hi All,
    I have incorporated the graphs and charts as well as some bitmap images in XML Report (RTF File), When i am taking a output in pdf. it is coming fine and working properly, where as while taking the same output in excel, graphs/charts/bitmap images are not getting displayed. Only you can view the data.
    can you please suggest what's the issue on the same and how can be resolved.
    Thanks & Regards
    Ankur Dawra

    Not sure you are on the right forum...

  • Displaying Graph and Charts in Portal

    Hi Guys,
    I want to display the Graph and charts dynamically in percentage wise for example ,I need to get the data from the data base of student table on passing marks of each subject i want to display the graph or chart accoridng to his marks ,,,
    I am not able to find any help from searhing in web ,,
    Please let me know for any help ....
    Thanks in advance
    Thanks
    ravi

    you could use the omniportlet, this come embbeded on WenCenter suite.
    with this you can select you database and assign a sql query for show as graphic.
    regards.

  • Collaboration with AI graphs and charts

    Hi I am working with infographics and I want to use FC to move them from print to online. Unfortunately, once I tried to transfer an AI file with a pie chart to Flash Catalyst, it was imported as a bitmap, with no editing possibilities.
    I would like to ask: is it possible to work around this and have an editable chart in Flash Catalyst? Do I have to look at Flash charts (like amCharts, for example) and drop them as .swf into my FC file?
    Thanks for reading, awaiting suggestions

    Bill, why not directly giving you a solution -there is alot of work going on in adding charting and graph support for future release of Jdeveloper....of course, that does not stop you using some graphing and charting features now but the new added features make the charting side of things much more drag and drop.
    Regards
    Grant

  • Graphs and Charts in ADF Faces Applications

    Has anyone had luck implementing graphs and charts in an ADF Faces application?
    I experimented with Oracle's BI Bean control a while back. But I think Oracle has yet to provide support for BI Beans in JDev 10.1.3. Does anyone know what Oracle's plans are for BI Bean support in JDev? Or what Oracle's plans are for providing ADF Faces graph and chart controls? It would make sense to me since Oracle has much experience with graph and chart controls and to their credit has developed over 100 ADF Faces controls which comprise one of the richest JSF implementations available.
    I also looked briefly at JFreeChart for which open source is provided at apache.org and I believe someone had even taken a shot at encapsulating JFreeChart into JSF controls and posting the source at apache.org. Has anyone had experience with this?

    Bill, why not directly giving you a solution -there is alot of work going on in adding charting and graph support for future release of Jdeveloper....of course, that does not stop you using some graphing and charting features now but the new added features make the charting side of things much more drag and drop.
    Regards
    Grant

  • How can I take the photo by capture the photo, plot the graph(control chart) in the same times and export to Excel File

    I want to do my sample of the project  following these steps.

     1. Create the template for compare other objects.
     2. Save the template and ready for compare realtime with other objects  
    II 
    1. Use the CCTV video camera Sony capture the picture of the object (lego toys).
    2. Calculate the size of the objects and change to mm.
    3. Compare with the template and plot graph(Control chart) by length
    4.  Export the data to Excel Files
    Solved!
    Go to Solution.

    Nice project !
    I sincerely hope you are not expecting us to do your homework.
    What is your experience with LabVIEW ? 
    May be you should try to start to code something and then come back later with some more specific question ?
    Message Edité par chilly charly le 01-02-2009 08:40 AM
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        

  • URGENT :   EP 7.0 /ECC 5.0  -   Problem with Business Package : ESS/MSS

    Dear Portal Gurus,
    We are facing a problem with business package for ESS/MSS
    Our system Info is as under :
    Portal:- NW 2004s
    ERP2004: - (R3 ECC 5.0)
    ESS:- BP for Employee Self-Service (mySAP ERP 2004) 60.2
    MSS:- BP for Manager Self-Service (mySAP ERP 2004) 60.1.1
    SAP XSS  à (SAP ESS 100, SAP MSS 100 and SAP PCUI_GP 100 , all upto SP 12)
    After the Business Packages were installed,found that some  ess apps where not deployed...so manually deployed it.
    The JCO connections are OK.
    Do we need to set up the backend Homepage Framework for the same......even for preview.....was thinking not.
    Also, here is the error and exception that we get when we preview any ESS iview.
    A critical error has occured. Processing of the service had to be terminated. Unsaved data has been lost.
    Please contact your system administrator.
    You dont have the authorization to start service sap.com/pcui_gp~xssutils/XssMenuArea.
    com.sap.pcuigp.xssfpm.java.FPMRuntimeException: You dont have the authorization to start service sap.com/pcui_gp~xssutils/XssMenuArea.
    at com.sap.pcuigp.xssfpm.java.MessageManager.raiseException(MessageManager.java:111)
    at com.sap.pcuigp.xssfpm.java.MessageManager.raiseException(MessageManager.java:121)
    at com.sap.pcuigp.xssfpm.wd.BackendConnections.initBackend(BackendConnections.java:234)
    at com.sap.pcuigp.xssfpm.wd.BackendConnections.connectModel(BackendConnections.java:159)
    at com.sap.pcuigp.xssfpm.wd.wdp.InternalBackendConnections.connectModel(InternalBackendConnections.java:183)
    Thanks.
    Message was edited by: Ashutosh Rana

    I got the same problem :/
    not the authorization, but the fields in working time is displaying wrong.. (too big)
    Any solution to this?
    Best Regards
    Kristoffer Engh

  • Business graphics Customizing chart not found; contact administrator in MSS

    Hi All,
    We are getting error Business graphics Customizing chart not found; contact administrator in MSS-->Home Service only for one user but for remaining users it is working fine. Please find the below screenshot.
    Please provide your inputs......
    Regards,
    Rahul.

    go to t -code st01 and switch on the trace on top and tick the buttons in that and after that ....check for working  manager user id  first and do it  with this user which is not working u can know  any authorisations are missing assign them for this user ..ur issue will be solved

  • Problem in Business Rule Framework (BRF).

    Hi,
    Problem in Business Rule Framework (BRF).
    Facing problem while assining the 'Expression and Actions' to the Events in BRF giving the error 'Class ID is missing'.
    Created an event called 'Z_My_Event_01' of implementation class '0E001', object (Event) is created succesfully but while assining the Expression and Action to that Event it shows the error 'Class ID is missing'.
    Thanks
    Rajiv Garg

    Hi Rajiv,
    this might help u.
    Business Rule Framework Transactions:
    BRFEVT01 - BRF: Create Event
    BRFEVT02 - BRF: Change Event
    BRFEVT03 - BRF: Display Event
    BRF - Business Rule Framework
    BRFACS01 - BRF: Create Abstract Action
    BRFACS02 - BRF: Amend Abstract Action
    BRFACS03 - BRF: Display Abstract Action
    BRFACT01 - BRF: Create Actions
    BRFACT02 - BRF: Change Actions
    BRFACT03 - BRF: Display Actions
    BRFAPC01 - BRF: Create Features for Appl.Class
    BRFAPC02 - BRF: Change Features for Appl. Class
    BRFAPC03 - BRF: Display Features for Appl.Class
    BRFAPL01 - BRF: Create Application Class
    BRFAPL02 - BRF: Change Application Class
    BRFAPL03 - BRF: Display Application Class
    BRFEXP01 - BRF: Create Expression
    BRFEXP02 - BRF: Change Expression
    BRFEXP03 - BRF: Display Expression
    BRFIMC01 - BRF: Create Impl. Class
    BRFIMC02 - BRF: Change Impl. Class
    BRFIMC03 - BRF: Display Impl. Class
    BRFRLS01 - BRF: Create Rule Set
    BRFRLS02 - BRF: Change Rule Set
    BRFRLS03 - BRF: Display Rule Set
    BRFRUL01 - BRF: Create Rule for Event
    BRFRUL02 - BRF: Change Rule for Event
    BRFRUL03 - BRF: Change Rule for Event
    BRFU01 - BRF: Compare SAPscript Texts
    BRF_FILL_TBRF185 - Automatic Filling for TBRF185
    BRF_OVERVIEW - Overview of BRF Objects
    Visit following link:
    http://www.sap.com/industries/insurance/pdf/FSCM_BRF.pdf
    pls reward if useful.
    cheers,
    hema.

Maybe you are looking for

  • The name of publisher not shown with iMixes?

    So if I published an iMix, then there would not be my name showing there in order to tell people that its me who put the list together. So why is it so? Or is the name somewhere but I just don't see it? I think that if the name was visible, then peop

  • Subcontracting scenario in Warehouse management

    Hello, We have an existing subcontracting scenario in IM. Recently  we have implemented WM. I would like to know whether there are any customizing settings required to be made to take care of WM part. And what would be the additional transactions req

  • Problem Embedding 3d objects in Microsoft office 2007 applications

    Dear Experts- I'm currently using adobe X professional with the 3d pdf converter from Tetra4d to embed 3d cad models into a pdf file. Maybe i am wrong to say this but i notice one missing feature if it is to be compared with Adobe Professional Extend

  • Change solution name at DSWP transaction

    Hi, I'm working in a VAR SAP with Solution Manager SP17. I have several customer solutions added to my Solution Manager. These solutions contains EW Alert, maintenance transactions,... We would like to change the name of one solution without loosing

  • Error message starting iSync

    When I try to start up iSync I get the following error message: iSync can't be launched SyncServices: Can't connect to sync server: NSInvalidReceivePortException: connection went invalid while waiting for reply ((null)) iSync is supposed to sync my E