Create Gantt chart in WAD 7.0

Hello. I have been attempting to create a Gantt chart in the Web Application Designer 7.0 with not much luck. I have researched looking for various sources of documentation (including SAP help) and the documentation is rather vague. From additional documentation I have been able to find it appears as though my query is setup properly. However, my data will not appear properly on my chart. I am suspecting it has something to do with how I have my Category and Series axis setup perhaps?
Does anyone have any tips or examples to share when it comes to setting up the chart in the WAD that might be helpful?
Kind regards,
Lynn Peter

After implementing note 1003344 for an other issue, charts are now working.

Similar Messages

  • Gantt chart in WAD

    Experts,
    Anyone worked in WAD using chart type GANTT. I am trying to create gantt chart for project milestone dates,  but unable to get the desired output. Can anyone help in configuring the time axis or the structure of query required for gantt chart.
    thanks!

    Hi Ananda,
    please check the following posts:
    Gantt chart wad 7.0   (Gantt chart wad 7.0 )
    gantt chart help in BW   (Gantt chart help in BW )
    Regards,
    Theodoros

  • Create Gantt-Chart by using class CL_GUI_CHART_ENGINE

    Hello,
    my goal is to create a Gantt-Chart by using CL_GUI_CHART_ENGINE .
    I´ve copied report GRAPHICS_GUI_CE_DEMO and tried to modify its XML data in order to get a Gant-Chart
    but I failed. I´ve also used SAP Chart-Designer to get an executable customizing for the chart engine
    but this way was unsuccesful too. Every time the chart shows no data...
    Is there anyone who has an example (code, docu, xml) to create a Gantt-Chart?
    Thank you.
    Kind regards,
    Oliver
    Edited by: Oliver Seifer on Mar 24, 2011 2:16 PM

    Hi,
    Please try this sample code. You'll need a customizing from ChartDesigner to launch it.
    I have hardcoded sample data but you can take it further from here.
    Please use following settings in the wizard
    Step 1
    Gantt
    Step 2
    Series Count 2
    Category Count 1
    Step 3
    Defaults
    Step 4
    Defaults
    Step 5
    Defaults
    Step 6
    Defaults
    Step 7
    Save as...
    DATA lt_cust_text TYPE w3htmltabtype.
      DATA lt_data_text TYPE w3htmltabtype.
      DATA wa_data_text TYPE w3html.
      IF g_ce_container IS INITIAL.
        CREATE OBJECT g_ce_container
          EXPORTING
            container_name = 'CONTAINER'.
        CREATE OBJECT g_ce_viewer
          EXPORTING
            parent = g_ce_container.
      ENDIF.
      cl_gui_frontend_services=>gui_upload(
        EXPORTING
          filename                = 'path to your customising\gant.xml'
        CHANGING
          data_tab                =     lt_cust_text
        EXCEPTIONS
          OTHERS                  = 19 ).
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                   WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      g_ce_viewer->set_customizing( data_table = lt_cust_text ).
      APPEND '<?xml version="1.0" encoding="utf-8"?>' TO lt_data_text.
      APPEND '<ChartData> ' TO lt_data_text.
      APPEND '<Categories><Category>Category 1</Category></Categories>' TO lt_data_text.
      APPEND '<Series customizing="Series1">' TO lt_data_text.
      APPEND '<Point>' TO lt_data_text.
      APPEND '<Value type="time">20000301</Value>' TO lt_data_text.
      APPEND '<Value type="time">20000305</Value>' TO lt_data_text.
      APPEND '<Value type="time">20000310</Value>' TO lt_data_text.
      APPEND '<Value type="time">20000401</Value>' TO lt_data_text.
      APPEND '</Point>' TO lt_data_text.
      APPEND '</Series>' TO lt_data_text.
      APPEND '<Series customizing="Series2">' TO lt_data_text.
      APPEND '<Point>' TO lt_data_text.
      APPEND '<Value type="time">20000302</Value>' TO lt_data_text.
      APPEND '<Value type="time">20000319</Value>' TO lt_data_text.
      APPEND '</Point>' TO lt_data_text.
      APPEND '</Series>' TO lt_data_text.
      APPEND '</ChartData>' TO lt_data_text.
      g_ce_viewer->set_data( data_table = lt_data_text ).
      g_ce_viewer->render( ).

  • Creating Gantt charts using Business Graphics that can be downloaded

    The short version is I need the format for XML data to create a Gantt chart in a Business Graphics UI Element in order to be able to automatically email it.  The long version is...
    I currently have a Web Dynpro ABAP component that displays a Gantt chart using a Business Graphics UI Element based off data in various other UI elements in the view.
    This works fine and the graph displays nicely, but I cannot find a way to download that straight from the Business Graphics UI Element.  Having read around the forum there appears to be two options:
    - Code it up myself by calling methods on the IGS API directly
    - Bind the image data attribute on the element and get the data that way
    Unfortunatly, we are not currently running a recent enough version (702/720) to be able to do the latter and so, unless there is another way, I need to code up the API calls myself.
    So far I have got a business graphic in to an Adobe PDF form, loaded in my config data so it appears as a Gantt chart but I cannot figure out the format for the actual data that needs to be sent through in XML.  Does anyone have example XML data or code to generate it that can be sent in to the call:
    l_igs_ce->set_data( EXPORTING data_doc = p_ixml_doc ).
    I have used the example in GRAPHICS_IGS_CE_TEST and the page http://liualex.com/archives/185 to generate the image and load the config data in but this only explains the XML format of the chart data for bar graphs.
    Many thanks

    Found my answer,
    This download: http://www.sdn.sap.com/irj/scn/downloads?rid=/library/uuid/e0a9ba90-0201-0010-d3a2-9cb376b5e181
    This is the SAP Chart Designer, it contains a PDF which explains the XML format used, you can use it to manually create your own XML streams.

  • SharePoint 2010 Form Library Missing the Option to Create Gantt Chart

    I have two content enable SharePoint 2010 form libraries - one has the option to create a Gantt Chart view while the other does not. Why?

    Hi Zach,
    Please access the page when you create a standard view, I assume the page url is as:
    _layouts/ViewNew.aspx?List=ID&Source=ID
    Try add &Gantt=True in the end, and the page url should be as:
    _layouts/ViewNew.aspx?List=ID&Source=ID&Gantt=True
    Click Enter and see if you can create a Gantt view. The list should at least has two columns in Date type for start date and end date.
    Regards,
    Rebecca Tu
    TechNet Community Support

  • How to create Gantt Chart by Java? which package n class include it?

    may i know how to craete Gantt Chart or any other chart using Java programming?? which package n class enable me to do so..?? i try 2 find on API but fail lo
    thanks

    http://www.egantt.com/

  • Is it possible to create column chart in WAD

    Hi All,
    I would like to know if it is possible to create WAD -column chart  in BI
    Regards,
    Sampda.

    Though Arun has almost answered your query, gues this might also be helpful to you.
    You can create and here is how to do it SAP recommended way:
    http://help.sap.com/saphelp_nw04s/helpdata/en/c9/08533b97037963e10000000a114084/content.htm
    Cheers.
    Ray.

  • Gantt chart wad 7.0

    Hi
    I need to show one query data as Gantt chart in WAD.My user will see this report in his portal...My requirement is like this:
    In rows panel of query definition I have Project ID....
    In columns panel of query definition I have around 10 Restricted keyfigures...
    The other customer requirements are:Chart should only show the data that falls in between start date and end date ,I enter through variables...
    He should be able to choose which Keyfigures he want to see in the Gantt chart....
    Chart should show Todays date as line somewhere in middle of chart....
    is it possible to achieve this through WAD...(I am new to WAD...I tried creating one test template...its crashing showing its too much data to handle....I have records on 14 pages when I executed the query in browser)
    Do I need to have time characteristic as keyfigure in cube or in query inorder to achieve this....
    is there any other tool,where I can easily implement this.............
    Thanks.

    Hi Priya,
    Thanks for your reply.
    1.I have read in help.sap.com that special things with Gantt chart is...in the dataprovider we need to use time as keyfigure.Inorder to achieve this,we need to have this time as keyfigure in cube itself.I check my cube and we have some time keyfigures.I tried putting variable on this time keyfigure in query designer but its not working.how can we restrict time keyfigure so user will have an option to give input for which time period he wants the see the Gantt Chart.
    2.I have to use this Gantt chart to show projects....When I checked,we have many projects that needs to be shown(you can count more than thousand)...and I am getting error when I tried to implement Gantt chart in WAD saying webitem is too small to show data or something....Is it 'not so good' idea to use Gantt chart to show so many projects....?
    3.how to really design this in a web template...
    First I dragged a container web item...then I dragged a Gantt chart web item into it having smaller size than Container web item...is it the right way?where can I put the navigation pane webitem as you suggested above?is there any thing more I need to add to get the above requirement?
    Thanks for your time and help.
    Regards.

  • How to show dependency Arrrow in Project Gantt chart ?

    Hi,
    I have a requirement in which I need to show a Gantt chart showing Project and corresponding task of it. If Say Task2 is dependent on Task1 then I need to show an arrrow between these two tasks showing the dependency direction. But in my prototype project I am not able to show these arrow. I have attached my sample project. In this (Project2) I have a Task table having taskId, startTime, endTime and dependentTask coulmn, After I created EO, VO, AM and run the AM, I can see the Task2 is dependent on Task1, using the viewlink accessor window
    But when I drag and drop this on a page as Project Gantt chart I can not see the dependency arrows. while creating gantt chart, in the dependency tab of Gantt chart I have provided fromTaskId -> taskId and To task Id -> dependentTask.
    Still the arrows are not coming, Please help.
    The table creation script is below
    create table task_data (     
    name varchar2(30),
    taskId varchar2(30) primary key,
    startTime date,
    endTime date,
    dependentTask varchar2(30),
    type varchar2(30)
    insert into task_data values ('Project1', '1', '01-JAN-2012', '30-JAN-2012', null, 'PROJECT');
    insert into task_data values ('Task1', '2', '01-JAN-2012', '10-JAN-2012', null, 'TASK');
    insert into task_data values ('Task2', '3', '10-JAN-2012', '20-JAN-2012', '2', 'TASK');
    insert into task_data values ('Task3', '4', '20-JAN-2012', '30-JAN-2012', '3', 'TASK');
    commit;

    Publish your prototype somewhere where we can download it.

  • Is there any way to generate Gantt chart by using oracle 9iDS?

    Is there any way to generate Gantt chart by using oracle 9i reports builder
    Can you please send me the link or more information on oracle 9iDS.
    Thanks

    Hi,
    Oracle9iDS itself doesn't support creating Gantt charts. The option oyu have is to use Oracle Graphics 6i, because there is no Graphics in 9i, and configure it to run with Oracle9i Forms. There exist a whitepaper at otn.oracle.com/products/forms that explains how to make Graphics 6i work with Forms 9i.
    Frank

  • Line chart in WAD

    Hi.,
    I want to create line charts in WAD. But when i execute the report it is showing in a single vertical line. But in bar charts it is showing correctly. Please guide me to create reports.
    Thanks,
    Venkatesh

    Hi
    Charts displays the data Graphically..
    So Chart is the Web Item in WAD which is existing in the standard Webitems Area. Select the web item and Double click to get in to the work area and now after that we need to assign the Data Provider to that. By assigning this the data will be displayed in the Graphical mode.
    and also please see the link. it would be helpful to you.To know what are the types of charts and corresponding classes, And in the link if you drill down you will see Formatting a chart using Wizard, Defining chart properties etc.,
    http://help.sap.com/saphelp_nw70/helpdata/EN/d2/02223c5f00612be10000000a11402f/frameset.htm.
    Hope this helps you
    Many Thanks
    Kiran

  • Gantt chart in OBIEE11115

    Hi ,
    We got a requirement to create a Gantt Chart in obiee11115 for project module,
    Can any provide me any document to create Gantt chart in obiee11115
    I found this link
    http://oraclebizint.wordpress.com/2007/12/06/oracle-bi-ee-101332-marquee-images-and-gantt-charts/
    but i need some more clear explanation.

    Hi Sudha,
    Did you check this?
    Gantt Chart in P6 Analytics - OBIEE
    Regards,
    Dpka

  • Gantt chart creation

    can any one say me how to create gantt chart without using any tool...in java applet

    <HTML>
    <BODY>
    Is there a way to add extra columns for each task in a Gantt Chart.
    I have situation where there is tow more columns are coming towards each task. One column is having an image which tells some status and one other column is having current task of the main task. Please let me know is this achievable.
    Sample Chart is shown below
    <TABLE border=1>
    <TR>
    <TD colspan=3></td><tD colspan=4> 2007</tD><tD colspan=4> 2008</tD> <tD colspan=4> 2009</tD>
    </TR>
    <tr><TD colspan=3></td><td>Q1</td><td>Q2</td><td>Q3</td><td>Q4</td>
    <td>Q1</td><td>Q2</td><td>Q3</td><td>Q4</td><td>Q1</td><td>Q2</td><td>Q3</td><td>Q4</td>
    </tr>
    <td>Task </td><td>Sub Task</td> <td> Image </td>
    </tr>
    <tr>
    <td>aaaaaa</td>
    <td> 1</td>
    <td></td>
    <td colpsan=4>-------------- (goal 1)</td>
    </tr>
    <tr>
    <td>bbbbbbb</td>
    <td> 2</td>
    <td></td>
    <td colpsan=4>--------------(Enroll completed)</td>
    </tr>
    </TABLE>
    </BODY>
    </HTML>

  • Gantt chart in demantra

    does demantra has capability to create gantt charts to enhance promotional analysis?
    If demantra has, how to create gantt chart ??
    As per my resarch, the worksheet can show following type of charts:
    Line chart, bar chart ,plot chart,pie chart and stacked bar chart.
    Regards
    Abhishek

    Hi Abishek,
    According to Demantra Implementation Guide & PTP user guide, Demantra has the capability to display the promotions associated with the currently selected combination using Gantt charts.
    More information is provided in "Working with Gantt Chart" section in Demantra Deductions & Settlement management user guide.
    Thanks,
    Rubellah Rajakumar
    Edited by: Rubellah Rajakumar on May 7, 2009 11:57 AM

  • Web Dynpro for ABAP GANTT Chart

    Hi,
    Does anyone know where I can find good documentation for creating GANTT Charts in Web Dynpro for ABAP? 
    I have seen some for Web Dynpro for Java, but would like some for Web Dynpro for ABAP.
    Thanks,
    Samir

    Hi,
    I think it's possible. Please follow the link for help.
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/68/248841a79f1609e10000000a155106/content.htm
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/47/90649d39871e1ee10000000a42189d/frameset.htm
    Regards,
    Saket.

Maybe you are looking for

  • Multiple devices with one iClould account - Please help

    My husband and I use the same iCloud account. If we both do a back-up, get new devices (we're looking at upgrading our iPhones), and log back into iCloud, will all of his stored info show up on my phone. We don't want that to happen, but we would lik

  • Dump while Executing the Report HINUINFU

    Dear All         I am getting Dump while executing the T.Code - HRPBSIN_IN_INFU (HINUINFU). As per my Configuration it should update the IT0267 and the IT0582. While debugging the We found out that its updating the IT0267 internally. But while reachi

  • How to run a FM using wf-batch

    Hi all, We are having one function module for updating production order number in a Z-Table. So whenever we save a production order this function module is automatically triggered using the user wf-batch and update the order number in the Z-Table. Bu

  • Is it possible to re-build thumbnails?

    After importanting a wedding job, I am missing many of the thumbnails in the project view.. can this be re-created. For now, the only way is to click on the image, then wait for the thumbnail to be created. but with hundreds of images like this.. it

  • How to use a scanner!

    I'm writing after 3 hours of trial and error. I've a Canon Lide 20 and I've downloaded and installed the driver and scanbox software. I confirmed that the device is connected to my mac. The problem is that the canon scanning software wants me to link