Business Graphics Problem (Urgent)

Hi,
When i deploy an simple series Business Graphics application, I am getting a Graphics Rendering Problem error. Is their any setting that has to be done in IGS.
Regards,
Mahesh K.

Hi Mahesh,
In Visual Administrator, go to the default property sheet & verify the igs url given there. It should be given in the format http://<server>:<igs port>
visual admin -server - services - Configuration adapter --- configuration ---webdynpro - sap.com - tcwddispwda -- property sheet default.
I am not aware of any other configurations that we need to do for running business graphics.
Hope this helps,
Best Regards,
Nibu.

Similar Messages

  • Business Graphics Problem

    I am working with business graphics in WebDynpro.  I have created an application step by step with a tutorial I found in NWDS.  When I run it,  it gives a page with a colorful image saying "Graphics Rendering Problem".  I also ran a sample WebDynpro application which has been loaded to our engine called  "SimpleGraphics" which does the same thing.  Do I have to set something up in order to use Business graphics.  I have looked over the IGS, and it looks to be running.  Any help would be appreciated.  Thanks.
    Regards,
    Rich Heilman

    Hi Rich
    If that is your igs server URL then you need to use the same.
    In the tree on the left select Server -> Services -> Configuration Adapter
    On the right, expand Configurations -> webdynpro -> sap.com -> tcwddispwda
    Click the view/edit button
    In the tree double-click Propertysheet default
    Click IGSUrl in the popup window
    In the field Custom: enter <your IGSUrl>
    Restart the J2EE engine
    Regards
    NagaKishore V

  • Problem with Stacked Columns in Business Graphics

    Hi,
    Has anyone used the stacked columns chart type in business graphics?  Am facing a problem with this.
    I am using the SimpleGraphics example demo with 2 dataseries, the values ranging from 0-10.  It works fine if the chart type is Columns (this is default).  When I change the chart type to stacked_columns, the graph goes for a toss.  The y-axis range automatically changes to 0-1 (values as 0, 0.2, 0.4 ... 1.0) and it does not display stacked columns as expected.
    Is there any specific property(s) that need to be set for this chart type?
    Appreciate any quick response.
    cheers,
    Vittal

    Hi friend,
    See the link below it is having the solution of hiding the columns in smart forms
    Hide table columns in smart form?
    Create a table to display your values with 12 col and hide the columns based on the idea provided in the link above.
    I think this will solve your issue if you still have queries please revert back to me i will help you.
    Thanks,
    Sri Hari

  • Business Graphics Tutorial: graphics rendering problem

    Hello,
    I did the tutorial "business graphics". Deploying the project I get the error: graphics rendering problem
    Is there anything first to set up, I forgot?
    Thank You, Regards Mario

    Hi Mario,
    Go to this link .It contains steps for installing igs
    http://help.sap.com/saphelp_nw04/helpdata/en/4b/72d43ac66e1f08e10000000a114084/frameset.htm
    After installing igs see whether you can see it on the services in mmc
    Hive the listener port as 8030
    After the installation go to the default page as given below
    http://<server name>:8030
    If the igs service is running you will get a default page
    After that go to this link and do the sample application
    Regards
    Rohit

  • Business Graphic rendering problem.

    I’m running J2ee (NW2004) SP20.
    I’ve been following this simple business graphics tutorial (http://help.sap.com/saphelp_nw04/helpdata/en/e5/08b6eb35637a44830b9e6df22987aa/content.htm) and get a generic image not found red x with I try and render my simple graph.
    I have verified my IGS is setup correctly (Visual Admin) and have it referenced within my little app.  When I execute my app I get the “red x” if I look at the IGS admin I can see a call for XMLCHART and that data was transferred.  I don’t see any errors in the log files.  If I look at the source code I see the following url in the image source. 
    ../../sap.com/test/Test/~wd_key17_1202141238651/unknown.gif
    Does anyone have an idea?
    Thanks in advance.
    /Greg

    Rao -
    In my case it was a matter of accessing my server with the fully qualified url.  Initially I was accessing my site using http://hostname:port/.../application and was receiving the error.  When I started using the fully qualified url http://hostname.domain.com:port/.../application  the application started working. 
    I hope your problem is that simple to resolve.  Good luck.
    /Greg

  • Problem with Gantt table (Business graphic)

    Hi everybody,
    I got a problem with an gantt table (Business graphic) in an old project. This gantt table is used to display the timeline of used ressources. The Problem here his that, if the last row of the gantt table is filled, this row will not be displayed correctly. The line will only be filled up half of the height the row has and the row will be divided by a horizontal black line.
    If somebody has an idea about fixing this problem, that will be great.
    Andre
    Edited by: Andre Wendel on Apr 3, 2008 9:00 PM

    Great!
    Of course, hard to diagnose when there's nothing to see.
    Here's an old message in a thread from 2010. (To give credit, it's from Hilary Farrell.)
    >
    You are correct, the syntax outlined in the error message is incorrect, and I've logged bug 9799373 to track this. As a workaround, you can view sample syntax for Gantt charts on the 'Query' page of the Create wizard, in the 'Chart Query Example for Gantt' Show/Hide region below the text area for entering your chart query, and also in the Oracle APEX 4.0 User's Guide that will be available with our new release. Just in case other users hit the same issue and are unsure of the expected format:
    Chart Query Examples for Project Gantt Charts:
    SELECT NULL LINK,
    TASK_NAME NAME,
    TASK_ID ID,
    NULL PARENT_ID,
    START_DATE ACTUAL_START,
    END_DATE ACTUAL_END,
    STATUS_NUMBER PROGRESS
    FROM TASKS
    SELECT 'f?p=4000:2:'||:APP_SESSION||':::P2_ID:'||ID LINK
    TASK_NAME NAME,
    TASK_ID ID,
    PARENT_TASK_ID PARENT_ID,
    START_DATE ACTUAL_START,
    END_DATE ACTUAL_END,
    STATUS_NUMBER PROGRESS
    FROM TASKS
    SELECT NULL LINK,
    TASK_NAME NAME,
    TASK_ID ID,
    NULL PARENT_ID,
    START_DATE ACTUAL_START,
    END_DATE ACTUAL_END,
    STATUS_NUMBER PROGRESS,
    START_DATE-3 PLANNED_START,
    END_DATE+1 PLANNED_END
    FROM TASKS
    Chart Query Examples for Resource Gantt Charts:
    SELECT NULL LINK,
    RESOURCE_ID ID,
    NULL NAME,
    NULL PARENT_ID,
    START_DATE ACTUAL_START,
    END_DATE ACTUAL_END
    FROM TASKS
    SELECT 'f?p=4000:2:'||:APP_SESSION||':::P2_ID:'||ID LINK
    RESOURCE_ID ID,
    RESOURCE_NAME NAME,
    PARENT_ID PARENT_ID,
    START_DATE ACTUAL_START,
    END_DATE ACTUAL_END
    FROM TASKS
    Thanks for reporting this issue, and I'm happy you were able to successfully generate your chart.
    Regards,
    Hilary
    Can you show us the query you are using?
    Oh. And what are the data types and lengths of your data?
    Howard

  • NW 7.1 CE problems triggering onAction event for Business Graphics?

    I have ported an application that was running on NWDS 7.0 to CE 7.1. No problems with code compilation and on the web page everything is working fine in 7.1 except that I am unable to trigger the onAction event on Business Graphics (e.g., bar chart). In 7.1 the cursor is not even changing from pointer to hand when I mouseover on the bar legend as it does when I run the app in 7.0. Is this a server setting with CE7.1 or am I missing something else?

    I figured it out after some more poking around. In NW7.1 CE, the additional required step is to map the eventID of the Chart (Business Graphics) Category also to the same attribute as Category description.

  • 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

  • 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

  • Problem with Business Graphic:

    Hi Everybody!
    I am working with a UI control Business Graphic in WebDynpro Java,
    I need to change the text of the legend, and is taking an automatic value, what is the property in the Chart Designer where I can adjust this?
    Thanks in advance for your help.
    Edited by: Briger Palacios on Jul 6, 2011 11:16 PM

    Hi Briger,
    For Changing ur own legend , just write the label property of "SimpleSeries" ,which comes under  your "BusinessGraphics" .
    As many simple series will be there, that much no of legend is require, so just write your label of each simple series.
    if any doubt , plz let me knw.
    Regards
    Brajesh Kumar

  • Dynamic title in Business Graphics

    Hi to all!
    I'm working with a Business Graphics and I'd like a title in the final rendered graphic. The problem is that the text I want to show is not static, it's the name of the person who is using the application.
    The question is: Can I bind the title of the graphic to a context attribute? or is it possible to pass parameters to the graphic?
    Thanks a lot.

    Hi,
    We have achieved this thru....
    1. If you navigate to src folder of your project... src\<package structure>...
    in that there will be a file <viewname>.wdview file. Where <viewname> referes to the name of the view in which business graphics UI element is used.
    2. Open that file with notepad, and you can see the structure of BusinessGrpahics UI element specified in xml format. In that copy what ever between <BusinessGraphics.CustomizingXML>...</BusinessGraphics.CustomizingXML> including these tags also.
    3. In the wdModifyView method of view name obtain the Business Graphics UI element and set the Direct Customizing to the above copied xml(as a string)
    String customXML = "<BusinessGraphics.CustomizingXML>....</BusinessGraphics.CustomizingXML>";
    IWDBusinessGraphics bg = (IWDBusinessGraphics)view.getElement("<business graphics UI element ID>");
    bg.setDirectCustomizing(customXML);
    4. In that xml string, the value under <Elements> .. <ChartElements> .. <Title> .. <caption> points to the title. you can replace that with your dynamic value.
    -Aarthi

  • Test of Web Dynpro Event Handling : GeoMap business graphics

    Hy guru's, i have this problem: on Test of Web Dynpro Event Handling page i tried to open the GeoMap web dynpro on Business Graphics section but i received this error:
    The URL http://.../sap/bc/webdynpro/sap/wdr_test_events/ was not called due to an error.
    Note
    The following error text was processed in the system BI7 : Exception condition "COMMUNICATION_ERROR" raised.
    The error occurred on the application server bi7-saplab_BI7_08 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: IF_GIS_VIEW~UPDATE of program CL_GIS_VIEW_IGS===============CP
    Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/LBUSINESS_GRAPHICS======CP
    Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/L8STANDARD==============CP
    Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/L8STANDARD==============CP
    Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/L7STANDARD==============CP
    Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/L8STANDARD==============CP
    Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/L8STANDARD==============CP
    Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/L8STANDARD==============CP
    Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/L7STANDARD==============CP
    Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/L7STANDARD==============CP
    What can I do?
    If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system BI7 in transaction ST22.
    If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server bi7-saplab_BI7_08 in transaction SM21.
    If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 0 in transaction ST11 on the application server bi7-saplab_BI7_08 . In some situations, you may also need to analyze the trace files of other work processes.
    If you do not yet have a user ID, contact your system administrator.
    Error code: ICF-IE-http -c: 100 -u: AMARAVIGLIA -l: E -s: BI7 -i: bi7-saplab_BI7_08 -w: 0 -d: 20071119 -t: 232916 -v: RABAX_STATE -e: RAISE_EXCEPTION
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team
    Could you help me?
    Thank's a lot
    Sincerely yours
    Andrea Maraviglia

    Hi,
    did you install the IGS (see the <a href="http://help.sap.com/saphelp_nw70/helpdata/en/37/268841a79f1609e10000000a155106/frameset.htm">documentation</a>) and check if SAP note 1108034 helps?
    Regards, Heidi

  • Business Graphics Rendering Issue

    Hi Experts,
    I am trying to use Business Graphics in my Web Dynpro application. However, I am getting following message:
    Graphics Rendering Problem.
    I looked into following Blog:
    /people/sap.user72/blog/2005/03/23/business-graphics-in-webdynpro
    As per the blog, we have to look <MUX> tag in the igs.xml.  Tyhe xml should be located in \usr\sap\NTH\JC00\igs\conf\igs.xml. First of all, I can not find any path as mentioned in blog. I can not find path "\usr\sap\NTH\JC00\igs\conf".
    I have found one igs.xml in server and is located at \usr\sap\somename\somename\j2ee\JSPM\config\igs.xml.
    This XML is pasted below:
      <?xml version="1.0" ?>
      <!DOCTYPE kernelPatches (View Source for full doctype...)>
    - <kernelPatches name="BC-FES-IGS" vendor="sap.com" sequenceFile="IgsTasksSequence.xml" sequence="process">
    - <os code="*">
    - <cmdVersion extractor="SAPCAR" archiveId="IGS" cmd="igswd">
      <arg value="-version" />
      </cmdVersion>
      <sar name="IGS.SAR" pattern="IGS.*\.SAR" dir="igs" id="IGS" manifest="igsmanifest.mf" opCode="X" required="Y" />
      <sar name="SAPCAR" opCode="C" required="N" dir="igs" />
      </os>
    - <os code="WIN">
    - <cmdVersion extractor="SAPCAR.EXE" archiveId="IGS_WIN" cmd="igswd">
      <arg value="-version" />
      </cmdVersion>
      <sar name="IGS.SAR" pattern="IGS.*\.SAR" dir="igs" id="IGS_WIN" manifest="igsmanifest.mf" opCode="X" required="Y" />
      <sar name="SAPCAR.EXE" opCode="C" required="N" dir="igs" />
      </os>
    - <os code="OS4">
    - <cmdVersion extractor="SAPCAR" archiveId="IGS_OS4" cmd="igswd">
      <arg value="-version" />
      </cmdVersion>
      <sar name="IGS.SAR" pattern="IGS.*\.SAR" dir="igs" id="IGS_OS4" manifest="igsmanifest.mf" opCode="X" required="Y" />
      <sar name="SAPCAR" opCode="C" required="N" dir="igs" />
      </os>
      </kernelPatches>
    Above XML does not contain any <MUX> tag.
    My questions are -
    1) How to find out whether IGS server is installed or not in my env?
    2) Why we can't see <MUX> tag in above XML?
    Please help me in resolving the issue.
    Regards,
    Brian

    Hi Brian,
    I guess your IGS version is 7.00. the file igs.xml only exists in IGS 6.40. The IGS configuration is in the instance profile with IGS 7.00. When your instance number is 00 the default HTTP listener port of the IGS is 40080.
    Refer to note <a href="http://service.sap.com/sap/support/notes/704604">704604</a> to see how the IgsUrl is maintained. Please check if the value is correct and also try out localhost instead of the hostname.
    Best regards
    Matthias

  • Business Graphics : Display values for simple series ?

    Hi ,
    I have a some 5 simple series per category.. I am using a column chart . I would like to display the numerical values on top of each of the columns, ? How can i do it ?
    And is there any proper documentation on Business Graphics UI element other than the help.sap and weblogs on the sametopic ?
    Thanks and Regards
    Bharathwaj

    Hi ,
    Thanks for the answer.. By trial and error I had figured out the values.. but am stuck in another problem..
    I have two points created in the chart designer.. each one has its own color.. Now am using this to change the color of a single series .. depending on some value.. point 1 or point 2 will be selected..
    In this scenario ,my legend still shows me the old ones i.e just an yellow icon..
    If i add more info and captions.. for points.. I get .. the proper legend.. But the default legend set also exists. Any ideas on how to remove this .. or
    to display the proper legend in some other way..
    Thanks and Regards
    Bharathwaj..

  • Business Graphics -- IGS URL

    Hi Experts,
    I have a query related to Business Graphics UI setting for IGS URL. currently we have developed an application which uses a Business Graphics UI element.
    This application is developed in our organization and hence we have made the necessary settings for the UI. i.e the IGS URL.
    During development, we have set the URL of our development server for the IGS URL property of the Business Graphics UI.
    But my question is, tomorrow if we deploy our application on any of the customer's location which is outside our organization's infrastructure (Server), will the application render the graph properly if we just open the IGS port or will it still try to connect to the URL which we have assigned for the IGS URL property of the UI element?
    Any suggestions on this would be helpful to avoid further problems.
    Regards,
    Poojith MV
    Edited by: Poojith M V on Apr 20, 2010 7:31 AM

    http://help.sap.com/saphelp_nw70/helpdata/en/46/8cb295e6390e9ce10000000a155369/frameset.htm
    Armin

Maybe you are looking for