Business Graphics is shown backward

Hi,
I have a problem with Web Dynpro , when i create a Business Graphics this is shown backward , i follow differents tutorial to create this but the result is always the same, in this link you can see like is show my Business Graphics http://www.imagengratis.org/images/9sss.gif
If someone can help me .
Thanks ,

Please , someone can help me , i was thinking that can be a problem with the igsUrl , but this is ok and the IGS is running.

Similar Messages

  • My Busines Graphics is shown backwards

    Hi,
          I have a problem with Web Dynpro , when i create a Business Graphics this is shown backward , i follow differents tutorial to create this but the result is always the same, in this link you can see like is show my Business Graphics http://www.imagengratis.org/images/9sss.gif
    If someone can help me .
    Thanks ,

    Please , someone can help me , i was thinking that can be a problem with the igsUrl , but this is ok and the IGS is running.

  • How to use series in business graphic ui element

    Hi All,
    How to use the series in business graphic ui element? my requirement is i have to display the sales in selected months in graph(these values dont know at design time).
    Regards
    Srikanth

    Hi,
    Use the dynamic node  and bind this node to the BG source node and series nodes.
    Create a node and bind this node to the BG source and the value that you want to shown in series has to be bound to that attribute of the node and similarly with the category.
    Check out for the dynamic node creation and bind this node to the BG.
    Regards,
    Lekha.

  • Legend not appearing for Chart Type columns/bars in business graphics

    Hi Experts,
    I'm not able to make the legend appear in web dynpro screen.As such graphs is coming but the legends are not appearing at runtime. When i customize the graph using t-code 'BS_ANLY_CD'  or right-click on business graphics, the legends are appearing in customizing preview but not in runtime.
    Could anybody help me out in this issue?
    Below is the screenshot of the same.
    Thanks in advance.
    Regards,
    Bob.

    Its solved .Solution is below.
    You just need to add the label description for both the series then the legend will automatically come as shown below.

  • Business Graphics: Plot Area Coloring

    experts!
    How do business graphics customization works?  (2004s)
    requirement: A column graph and a parabolic graph should be shown in a single graph. The background for this graph should be colored to show a range, say acceptable values in green and others in red.
    thanks,
    nikhil

    Hi Nikhil,
    Check the following link on Chart Designer by SAP
    http://help.sap.com/saphelp_nw70/helpdata/EN/86/243f403f0a9354e10000000a155106/frameset.htm
    I hope this will be helpful to you

  • Customizing Property of Business Graphics UI Element

    Hello Web DynPro Developers,
    I'm trying to implement a dynamicly created Business Graphic. In order to set the properties for the "Series" (which will normaly be set through the Chart Designer) i try to deliver a XML Customizing File with the customizing properties.
    The API Documentation says that this property requieres a  URL which points to a valid XML file.
    After setting the Customizing property to a URL with an XML Configuration, the J2EE Engine does not try to retrieve the XML document (traffic watch).
    Is this a not implemented feature? How to set the configuration of Business Graphic dynamically?

    Dear Kai,
    Thanks a lot for your response.
    1. According to your suggestion (note 531668), it has been found that XMLCHART is already installed on our Integrated IGS server.
    2. According to note 1028690, it has been found that "IGS 6.40 with patch level 19 or higher" should be available, but in our case we have "IGS 6.40 with patch level 16". Now what I would like to inquire is that does upgradation have any side effects on server?
    For your information I would like to clear you that I want to use Vrinda font (its a standard font), but at present font shown in the chart is Arial.
    Do we need to install some other Interpreter (eg. GFWCHART)? or some thing else is required to show the desired standard font?
    Regards,
    Nittin

  • Business Graphic onAction

    Hi Exports,
    I have requirement where i need to implement the Business Graphics on Action Method and Display the Data Relevent to the  Series / Category.
    I have tried implementing on action method it is working fine ,but i am not able to get the Selected Series/Category Element
    Please help me if someone already did this
    Thanks & Regards,
    Pavan Kumar Marla

    Hi Pavan,
    Under the Business Graph UI add the Category as usual, add a single Series. Under the Series add a Point and for the Point add a Value of type NumericValue.
    Create a Node for Category Say Vn_Category and an Attribute Under it say Va_CategoryName and bind Description property of Category to Vn_Category-->Va_CategoryName .
    Create another node structure as shown below for Series,
    Vn_Series
        --Vn_Point(Child Node)
    Va_Value(Type Int)
    Va_PointIndex(Type String)
    Va_ToolTip(Type String)
    Set the Singleton property of Vn_Point node as false.
    The PointSource property of Series to be bound to Vn_Series-->Vn_Point.
    The ValueSource property of Point to be bound to Vn_Series>Vn_Point, Tooltip to Vn_Series>Vn_Point>Va_ToolTip and eventid property to Vn_Series>Vn_Point-->Va_PointIndex.
    The Value property of NumericValue to Vn_Series>Vn_Point>Va_Value, and make sure Type is defined as "Y".
    Create so many series(parent node) elements as many series you need in the graph and using each series(parent node) element create so many point(Child node) elements as many bars or as many categories are there in the graph.
    Example:
    //Creating 4 Series
    IPrivateKpiChartView.IVn_SeriesElement elSeriesElement1 = null;
    IPrivateKpiChartView.IVn_SeriesElement elSeriesElement2 = null;
    IPrivateKpiChartView.IVn_SeriesElement elSeriesElement3 = null;
    IPrivateKpiChartView.IVn_SeriesElement elSeriesElement4 = null;
    elSeriesElement1 = wdContext.nodeVn_Series().createAndAddVn_SeriesElement();
    elSeriesElement2 = wdContext.nodeVn_Series().createAndAddVn_SeriesElement();
    elSeriesElement3 = wdContext.nodeVn_Series().createAndAddVn_SeriesElement();
    elSeriesElement4 = wdContext.nodeVn_Series().createAndAddVn_SeriesElement();
    //Populating 5 Categories and corresponding values,
    IPrivateKpiChartView.IVn_CategoryElement elCategoryElement = null;
    IPrivateKpiChartView.IVn_PointElement elPointElement1 = null;
    IPrivateKpiChartView.IVn_PointElement elPointElement2 = null;
    IPrivateKpiChartView.IVn_PointElement elPointElement3 = null;
    IPrivateKpiChartView.IVn_PointElement elPointElement4 = null;
    for (int index = 0; index < 5; index++) {
    elCategoryElement = wdContext.nodeVn_Category().createAndAddVn_CategoryElement();
    elCategoryElement.setVa_CategoryName("Category"+index);
    elPointElement1 = elSeriesElement1.nodeVn_Point().createAndAddVn_PointElement();
    elPointElement1.setVa_PointIndex("0s"+index);
    elPointElement1.setVa_Value(index+1); //The value to be displayed on the graph.
    elPointElement1.setVa_ToolTip("Series 1");
    elPointElement2 = elSeriesElement2.nodeVn_Point().createAndAddVn_PointElement();
    elPointElement2.setVa_PointIndex("1s"+index);
    elPointElement1.setVa_Value(index+2);
    elPointElement2.setVa_ToolTip("Series 2");
    elPointElement3 = elSeriesElement3.nodeVn_Point().createAndAddVn_PointElement();
    elPointElement3.setVa_PointIndex("2s"+index);
    elPointElement1.setVa_Value(index+3);
    elPointElement3.setVa_ToolTip("Series 3");
    elPointElement4 = elSeriesElement4.nodeVn_Point().createAndAddVn_PointElement();
    elPointElement4.setVa_PointIndex("3s"+index);
    elPointElement1.setVa_Value(index+4);
    elPointElement4.setVa_ToolTip("Series 4");
    Using the snippet in my previous replay, u can extract the selected series point's value and the corresponding category.
    Also you can refer the wiki link [WIKI|http://wiki.sdn.sap.com/wiki/display/WDJava/WebDynproDynamicBusiness+Graphics]
    Regards,
    Vishweshwara P.K.M.
    Edited by: Vishweshwara P.K.M on Nov 16, 2011 4:28 PM

  • Business Graphic in a pdf file.

    I have to create a downloadable pdf file containing a dynamic business graphic.
    Can you suggest the best technique to achive that?
    Thank you in advance.
    Livio.

    Hi Sukalyan,
    I finally succeeded.
    I made a Web Dynpro View containing a BG UI element, where I drew my graphic. Then I got a .gif image of the graphic with the following code:
    public void wdDoModifyView(IWDView view, boolean firstTime) {
       IWDBusinessGraphics bg = (IWDBusinessGraphics) view.getElement("myBusinessGraphicsUIElem");
       byte[] img = bg.getImageAsByteArray(null, null);
       String img64 = Base64.encode(img);
    As shown in the code, the image is encoded in a base64 string and (not shown) is inserted in a node context, in an attribute of type String. The node is shared with an Interactive Form, where there is an Image Field.
    Just bind the base64 string to the Image Field, and that's all.
    Regards,
    Livio.

  • Team Calendar: Business graphic not showing the correct language

    Hello,
    We are using the Team Calendar application for two different languages: Spanish and catalan.
    When spanish locale ('ES') is set in the business graphic the weekly day short descriptions are correct shown in spanish "Lu", "Ma", "Mi",...
    Althought when catalan locale ('CA') is set, the business graphic shows the days in english not in catalan "Mon", "Tue", "Wed"...
    Did anyone has a similar problem?
    Any idea on how to improve the business graphic to accept more locales?
    Thanks,
    Gabriel.

    Hi,
    the Catalan locale will be added to the forthcoming IGS 7.00 patch, see note 1105634.
    If you use IGS 6.40 you have to install patch 20.
    Regards, Kai

  • Refresh the Business Graphics Data on click of next page event of a table

    Hi Experts,
    We are using Business Graphics UI element in Web dynpro Java to display a table data.
    We are limiting the graphics data to 12 table entries at a time.
    Now, I just want to know how can we refresh the Business Graphics data when the user clicks on the Next Page option at the bottom of the table.
    This is applicable if we have more than 12 table entries and we've restricted the visible row count to 12.
    So, for more than 12 entries; when the user selects the next page, I want the next set of data to be displayed in the Business Graphics UI element.
    But I am not able to get the action for the Next Page event.
    Please note that we are on Netweaver 7.01.
    Kindly suggest as how can we achieve this functionality.
    Kind Regards,
    Anurag

    check this
    Web Dynpro Java Table Paging Unleashed: Optimizing Heavy Table Performance

  • Business Graphics - Bar Chart - How to make the height extendable

    Hi Experts,
    I have created Business Graphics UI element for my WD application which fetches data from R/3. I am displaying
    1) Cost Element in Y-axis and Cost in X-axis.
    2) I have set ChartType = Bar, height = 300, width = 830
    When the no of cost elements is upto 7-8, the graph is getting displayed correctly.
    However when the no of cost elements increases to more than 12, the graph becomes un readable. The system displays lot of texts in Y-axis.
    I want to make sure that if no of cost elements increases, the Y-axis of graph should extend.
    How we can do so?
    Regards,
    Gary

    I could not got any solution of this issue. Finally I convinced the customer to display only top 10 records. Any way higher level managers won't have time to see the graphs of all data.
    One way of resolving the issue is like this - create say 3 Business Graphic UI element. The height of Business Graphic UI element can be set as 300, 600, 900 etc.
    For 10 records use Business Graphic UI element  of height 300.
    For 20 records use Business Graphic UI element  of height 600.
    For 30 records use Business Graphic UI element  of height 900.
    Use the 'Visibility' data type to hide / unhide the Business Graphic UI of different height.

  • Edit customisation in Business graphics is not working

    Hi Experts,
    I created business graphic UI element of chart type "Speedo meter" . I am trying to chnage the colors of the chart by using
    'EDIT CUSTOMISATION' .When i change the clors in preview colors are chnaging but when i test my application it is nit showing the whatever i did in edit customisation ( ni color change ) . Please tell me do i need to configure anything ?
    Thanks in advance,
    Setu

    Hi,
    please refer below link .
    [http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/ca932ebc-0901-0010-68a0-b4dd81a4bf81&overridelayout=true]
    Regards,
    Priya

  • Business Graphics API in WEBAS J2EE

    Hi,
    i have a business graphic integrated into my webdynpro application. I checked the api documentation for business graphics and found out, how to change the type of the business graphic and the number of dimensions programmatically.
    On the API, i cannot find out any further possibilities of modifing the chart programmatically. I wonder about this, because the business graphic UI - element in NetWeaver Developer studio provides much more configuration possibilities on charts.
    For example, i would like to use the averagre functions or adapt the number of labels on the chart axis. But all dynamically.
    Has anyone experience, with such advanced business graphics features and nows if it is somehow possible to get to theses features by using the NetWeaver API?
    Thank you very much in advance.
    Regards
    Christoph

    As I understand, your user management is through database, so when a user is created in your application, the parameters pass through the Action Handler -> service class-> DAO. So a better way would be write an additional class with the user management implementation of BO with a constructor or a method which would take the required user creation parameters and call it in the service class just under the user creation method of your DAO.
    As the user in your system passes some information from the front end, the same can be used to create user in BO.

  • Business Graphics and WebEnterprise

    I have a two part question.
    First, what is the best way to create business graphics such as line, bar,
    and point graphs? OLE to Excel, OCX, some third party commercial graphics
    library such as Brahma Software's Beacon?
    Second, once I have a business graphic what is the best way to display these
    graphics on a web page? A number of Forte field widgets such as ellipse,
    polyline, and point do not have a corresponding HTML element and therefore
    the Forte WebEnterprise WindowConverter class cannot convert these windows.
    Is there a way to save Forte images as BMP/JPG images?
    Thanks,
    Douglas Wheeler (mailto:[email protected])
    BORN Information Services, Inc. (http://www.born.com)
    Tel: 612.404.4379 Fax: 621.404.4441
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    exactly!
    many ways to do this
    1.U can use WDCopyService(Source ,Target)  here Source : return node of model data
                                                                               Target : Your temporary value node which bound to BG.
    Note : Each time when ever model data get updated(CRUD) u have to call this node.
    2. Use Mapping type node and bind it to BG ui element  exe : when we create any node It has 4 options one of them is Mapping select this and provide the model node
      (mapping of node with model node is replica of the content there in model node, here u don't have to worry about updated content since its replica and get changed eveytime when model operations is performed)
    Best Regards
    Satish Kumar

  • Problem with Business Graphics

    Hai,
    I am using Business graphics , I Used to display the simple series in a <b>coloumns</b> graph.
    I want to display the total amount of the graph in top of every coloumn..
    I want to display the value of the coloumn at the top of the coloumn.
    i need the above graph as
    3
    2
    1
       |----
    How to display the values in graph like this.....
    regards,
    Message was edited by: Naga Raju Meesala

    hai,
      my context structure is like this
        +ABC
           series2(double)
           series3(double)
           series4(double)
           series5(double)
           series6(double)
    My UIElement Structuer
         +BG1
            Category1
             SimpleSeries2
             SimpleSeries3
             SimpleSeries4
             SimpleSeries5
             SimpleSeries6
    code is like this..
    IPrivateFBGAppView.IAbcNode aNode = wdContext.nodeAbc();
         IPrivateBGAppView.IAbcElement elm;
    elm = wdContext.createAbcElement();
         elm.setCategoryText("Cat");
            elm.setSeries2(32);     
            elm.setSeries3(23);
            elm.setSeries4(45);
            elm.setSeries5(32);
         elm.setSeries6(18);
         al.add(elm);
    regards,
    Message was edited by: Naga Raju Meesala

Maybe you are looking for

  • Invoking Asynchronous Web Service from BPEL Process

    Hi, I have been working on the BPEL Process Manager for some time and now facing problem in invoking asynchronous web service from a BPEL Process. I have implemented a web service in Java using Axis but wasn't able to invoke it. I have gone through a

  • IPhone no longer syncs with iTunes

    I upgraded my computer to Leopard today and everything seems to be working properly. However, when I plug in my iPhone it doesn't start and show up in iTunes. Is there something I've missed?

  • Steps to convert access point from LightWeight mode to Autonomous mode

    I need steps to convert the following access point from Lightweight mode to Autonomous mode AIR-AP1242AG-E-K9 Regards, Majid

  • External monitor stopped working!!

    My external monitor just stopped working today as soon as i upgraded to Mac OS 10.6.4 from 10.6.2. When I unplug it and plug it back the screen goes blue very briefly but then nothing happens. I tried the detect display button, I tried resetting the

  • SQL plus pop up message dialog

    Dear all, Did anyone come across any experience like that: When I execute a SQL statment that may need return a several thousands line in SQLPlus, If I used SQLPlus version 3.3.4.00 (Oracle 7), a pop up message dialog will come up like "Query is Exec