Business Graphics in ADS doesn't display on subsequent calls

We have this bizarre problem with Business Graphics in ADS.
We are embedding Business Graphics in an Adobe form and we find that the Business Graphics will not be displayed on second (subsequent) call(s) to the ADS, which can be simulated by clicking on the Refresh button in the web browser.
The Business Graphics will only be displayed in the first call to the ADS.
Has anyone encountered this?

the problem is the URL that does not contain the jsessionId as during the second call. The browser has already a cookie and  so the encodeRedirectUrl-method does not add the parameter.                                                                               
You can enforce this with the following call:                
String url = "forceEncoding:" + source.getUrl();                             
urlToBeUsed = ((IWebContextAdapter)WDWebContextAdapter.                      
getWebContextAdapter()).encodeRedirectURL(url);

Similar Messages

  • Contact name doesn't display when someone calls?

    I have a BB curve 8520 and whenever someone rings me it just displays their number and not their name so I never know who it is that's calling. How do I sort this out? 
    Solved!
    Go to Solution.

    There could be any one of three solutions... Try these:
    1. Make sure you set your own country code at Phone Dialer Screen > Options > Smart dialing.
    Set your country code in this format: "+xx" where xx = your country code. Some countries have two or three digit Country Codes. Do not place the '+' in your contact's entry.
    * In the US, set this Country Code as "+1", and place your loca area code in the proper box (this normally the default setting in a new BB).
    2. At the same location, change the National Number Length to the number of digits for your country (since some countries will have less than 10 as set as the default in the BB). Find out the total digits, minus the country code. Do not place the '+' in your contact's entry.
    * For example, some countries have a total number to 8 (plus 3 for country code). You would enter "8".
    3. You may have "Content Protection" set on your Address Book.
    Look at Options > Security > General Settings. Scroll down to Content Protection > Include Address Book = NO.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Business Graphics - Series Label

    Hi,
    I have 1 Category and 4 series in a Business Graphics. I want to display the Series Labels dynamically, and i have to map to the Context Variables for the Labels. But, i am not seeing any option to map the Label property to the Context Variable.
    Any Ideas? Please let me know.
    Thanks

    Hi,
    I assume you are currently using the SimpleSeries in your application. Try to use Series with Points und Values. It is more complicated, but gives you more possibilities such as binding labels etc.
    Hope that helps
    Jens

  • Static Business Graphic to Adobe Form

    There is a View with an static BGR binding to a node.
    At runtime I can see the graphic.
    When I press a button is launched another view with an Interactive Form.
    So, my question is:
    Is there a method (or something) that let me create the XSTRING wiht the graphic automatically, that I will use in the node binding to the Interactive Form?
    Best regards,

    Hello Gastón,
    I think with Netweaver 7.02/7.20, business Graphics UI element is provided with a property called imageData. Using this property you receive the image of the chart rendered, in a XSTRING format. this can be passed on to interactive form to display the chart.
    Might be we can wait for other experts to comment on this.
    BR, Saravanan

  • 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

  • I want to display total count on the top of a Column in  business graphics

    Hi All ,
        How can I display total count of the column say for example no. of employees in a series of column chart type in business graphics.
    Any type of help would be much appreciated.
    Thanks
    Uday

    Hi Vishweshwara,
    following is the code i wrote. please check the correctness of the code.
    int seriescount = 0;
    for(int i=0;i<nodesize;i++){
    IGraphDataElement catele = gdNode.createGraphDataElement();
    switch(i){
    case 0:   
       if(wdContext.currentContextElement().getQ().equals("Q1")){
         catele.setCategory("Q1");
           catele.setKRA_Series1(Q1_KRA);
           catele.setApp_Pln_Series2(Q1_AP);
           catele.setRev_App_Series3(Q1_RA);
           catele.setEnd_Rev_Series4(Q1_ERP);
           catele.setApp_Procss_Series5(Q1_AIP);
           catele.setApp_overall_Series6(Q1_AOP);
           seriescount = seriescount+1; break;}
            break;
    case 1:       
       if(wdContext.currentContextElement().getQ().equals("Q2")){
           catele.setCategory("Q2");
           catele.setKRA_Series1(Q2_KRA);
           catele.setApp_Pln_Series2(Q2_AP);
           catele.setRev_App_Series3(Q2_RA);
           catele.setEnd_Rev_Series4(Q2_ERP);
         catele.setApp_Procss_Series5(Q2_AIP);
         catele.setApp_overall_Series6(Q2_AOP);
            seriescount = seriescount+1; break; }
                 break;
    case 2:       
    if(wdContext.currentContextElement().getQ().equals("Q3")){
         catele.setCategory("Q3");
         catele.setKRA_Series1(Q3_KRA);
         catele.setApp_Pln_Series2(Q3_AP);
         catele.setRev_App_Series3(Q3_RA);
         catele.setEnd_Rev_Series4(Q3_ERP);
         catele.setApp_Procss_Series5(Q3_AIP);
         catele.setApp_overall_Series6(Q3_AOP);
         seriescount = seriescount+1; break;}
                 break;
    case 3:   
    if(wdContext.currentContextElement().getQ().equals("Q4")){
         catele.setCategory("Q4");
            catele.setKRA_Series1(Q4_KRA);
         catele.setApp_Pln_Series2(Q4_AP);
         catele.setRev_App_Series3(Q4_RA);
         catele.setEnd_Rev_Series4(Q4_ERP);
         catele.setApp_Procss_Series5(Q4_AIP);
         catele.setApp_overall_Series6(Q4_AOP);
            seriescount = seriescount+1; break;}
                 break;
    case 4: if(wdContext.currentContextElement().getQ().equals("All")){
           wdContext.nodeGraphData().invalidate();
         wdContext.currentContextElement().setGraphVisibility(WDVisibility.NONE);
         wdThis.onActiondropdownaction(wdEvent);
    }default:
    wdContext.nodeGraphData().addElement(catele);
    Thanks
    Uday

  • Business Graphics 3D display

    Hi,
    I have created a Webdynpro Application with Business Graphics. I am trying to create a 3D display of Bar charts which is working fine with developer user id. When the same application is executed by an End User it displays in 2D. Can some one suggest how to handle this?
    Thanks in Advance.
    Regards,
    Sridhar M R

    Hi Gayathri,
    Please cehck this..
    Different color in business graphics
    Unable to change graph color
    Cheers,
    Kris.

  • 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..

  • Is there a Java Graphic Package that doesn't depend on DISPLAY?

    Hi
    Is there a Java Graphic Package that doesn't depend on DISPLAY?. I need to generate some images on the web and I can't guarantee that the DISPLAY variable is set correctly.
    Regards,
    N�stor Bosc�n

    Hello,
    Previously to JDK 1.4 the DISPLAYwas mandatory and most of the production Web sites were running a virtual X server (XVFB) take a look to this document
    However using JDK 1.4 or after you should not need to set the display anymore. Java contains now a headless that you set the Java properties java.awt.headless to true (java -Djava.awt.headless=true ...)
    Regards
    Tugdual Grall

  • Business graphic UI - display plotted value in tooltip

    Hi,
    In Business graphic UI element, there are few simple series. there are some values being plotted using those series.
    for example, sales for year 2001 is 89, sales for year 2002 is 91, sales for year 2003 is 78. I want to display the values 89, 91,78 in the tooltip when the mouse is hovered over these series.
    Regards
    seventyros
    http://learnsaponline.blogspot.com
    Edited by: seventyros on May 3, 2011 10:50 AM

    Hi,
    This is not true.
    Please refer the help  [http://help.sap.com/saphelp_nw70ehp1/helpdata/en/ed/258841a79f1609e10000000a155106/content.htm|http://help.sap.com/saphelp_nw70ehp1/helpdata/en/ed/258841a79f1609e10000000a155106/content.htm]
    tooltip binding attribute type is WDY_MD_TRANSLATABLE_TEXT.

  • 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

  • MSI 970a-g46 motherboard starts up but doesn't display anything.

    Hello, I'm having problems with a new motherboard I got from Amazon, specifically the 970a-g46. The following are my specs in use with this motherboard:
    CPU: AMD Phenom 2 x4 965
    GPU: nVidia GeForce 560 GTX
    Ram: 8gb Kingston HyperX Fury 1866mhz.
    PSU: Corsair 650TX (650 Watts)
    Compatability-wise, everything checks out so I wasn't expecting problems at first. All the other parts excluding the ram I've used before. Here's exactly what happens:
    I power up the computer after everything is installed and connected. The 4 phase LEDs turn on which tell me the CPU is powered up and working (so I assume). I don't get any beeps or buzzs mainly because I don't see any speaker/buzzer on this board. The monitor blinks and while it is connected to my GPU, it doesn't display anything, it's just a black screen. I can leave it on for a few minutes and I'll still not see anything happen. An important observation here is that my keyboard which has LEDs will turn on after a short period of time in boot-up (with my older set-up that is). This does not happen ever regardless of how long I leave my computer on on this new mobo.
    I've gone over and checked/tested numerous things:
    * The PCI-E and ATX cables for the GPU, motherboard and CPU are all connected and secured (I've tried both 4-pin and 8-pin connections for the CPU, neither help).
    * I've tried jumping the CMOS multiple times to no avail.
    * I tested the ram on another computer and it worked just fine on that one.
    * I've tested the motherboard without a GPU and it still does nothing (though I think that's because this motherboard doesnt have its own integrated GPU for some reason).
    So far the only possible reasons why my computer is not working is because of my PSU (very unlikely as it's only a year old and it's a Corsair, which I've heard is very reliable in the long-run), GPU (It is quite a few years old but even without the GPU my computer still doesn't go past boot-up), CPU (possible due to its age and how many freaking time I've reseated it (probably around 8 times) so I wouldn't doubt it, but before I put it into this motherboard I did check its pins and they were all there and placed nice and smoothly into the socket.) and finally the motherboard (it's possible that this is just a defected motherboard and giving me a super hard time which would be a first in all the years I"ve spent computer building).
    The best case scenario of course is me giving some kind of oversight to how I transferred over the parts and connectors. I might've missed something obvious to please any advice/insight on how I can solve this problem would be greatly appreciated
    EDIT: Some other things I did but forgot to mention:
    * Checked ground nut things and ensured they matched the specifications of the motherboard ATX; only 6 are under the board and each one is aligned up with the holes on the board as designed.
    * Tried booting up without powering the CPU. Only one phase LED light came on, still the same problem (for an obvious reason this time now).
    * Re-seated GPU multiple times, re-connected cables multiple times.
    What I have NOT done is re-seat the CPU because I am almost out of acetone so I would need to get another supply of that which won't be until tomorrow. I also have not re-seated everything back on my older motherboard to check if it still works. Tomorrow I'll most likely do that and if I find that the old motherboard works flawlessly then that tells me that the new motherboard I got is either defected or there's some compatability issue I"m missed out on.
    EDIT 2: Just found a speaker and plugged it into the motherboard. Booted it up and I got no beeps whatsoever. So this mobo is giving me no video activity (there is a signal it's just blank), and no beeps from the motherboard. I have no idea what that could mean at this point.
    EDIT 3: I decided to test a few things with the new speaker I just got. First I removed ram and tried running, I got 3 beeps which I assume is the beep sequence of faulty/no ram. Removed the power to CPU and the GPU itself individually, gave no beeps this time.

    Quote from: rhradacut on 06-January-15, 16:49:14
    What's the serial number of your MB? Needed to determine what BIOS may be on the MB. Exactly which version of the CPU is it? There were several different 965 CPUs and they required different BIOS versions, 1.2, 1.9,2.2 depending on which CPU you actually have.
     Also another problem may be that native memory supported by your CPU is DDR3-1333, not 1866
     None of the supported CPUs have integrated graphics, any MB graphics would be in the chipset, not CPU. Examples would be 785G, 880G
    Thank you very much rhradacut! The problem was that the mobo for whatever reason was forcing 1866mhz on my CPU when it only supported up to 1600mhz. I had to install a spare ddr3 module to downclock it so that I could access the BIOS and manually set the DRAM timing to 1600mhz for it to work. That's a very strange problem that I figured would've been auto-resolved by the hardware, and would also be a big problem if I didn't have any spare DDR3 ram to work with.
    Once again thanks for helping out on solving my problem.

  • 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.

  • 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.

  • 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

Maybe you are looking for

  • Error while generating Web Service from a function module.

    Hi Experts, I am trying to create a web service from function module by doing the steps as mentioned in the below document: http://www.sdn.sap.com/irj/scn/index;jsessionid=(J2EE3417800)ID1146834250DB10778842957931285337End?rid=/library/uuid/80fa3dff-

  • How do I make a pdf that can submit a form to the email selected in a combo box?

    I'm trying to be able to have the user of a pdf I'm creating, select an email in a combo box and then hit send and have it send to that email address that was selected. Thanks for the help!

  • Im new, and trying to set up the keyboard to logic studio.

    i have read some parts of the manual, and its HUGE and it doesnt tell my how to set it up. i have a yamaha DGX-630-YPG-635 (if thats any help) and logic studio. i know this is vague. what cables do i need, what software do i need, what pages in the m

  • Serial numbers in sales order/delivery

    Hi All I have a question question on Bar code number generation. Please note that this is NOT a question on bar code printing or issuing output to printer. One of our customers requires serial numbers for all the products that we supply to them and t

  • Video in IBM ThinkPad A21P

    Has anyone installed Solaris 8 on an IBM Thinkpad A21P with an ATI Mobility 128 AGP Display Adapter? I could not find the correct adapter in kdmconfig and am wondering what adapter to use? Thanks