Gantt Chart Data not getting pouplated

Hello,
I am using Gantt charts in apex for showing up large data.
I am following this method to store huge data which is in xml(more than 32k) into a page item. (http://apex.oracle.com/pls/otn/f?p=35254:5:877211585824396::NO).
I set my session state like APEX_UTIL.set_session_state (p_name => 'P10_DATA', p_value => APEX_APPLICATION.g_x01) and pass this item into gantt chart
The problem i am facing is that even though i see that the value of P10_DATA is populated with all the data during debugging, upon opening session and checking the item's value, it displays null !!!
Note:For data with less than 32k, Gantt chart loads correctly and the item's value gets saved.
Anyine please help me with this..
Regards,
Uday

Hello,
I am using Gantt charts in apex for showing up large data.
I am following this method to store huge data which is in xml(more than 32k) into a page item. (http://apex.oracle.com/pls/otn/f?p=35254:5:877211585824396::NO).
I set my session state like APEX_UTIL.set_session_state (p_name => 'P10_DATA', p_value => APEX_APPLICATION.g_x01) and pass this item into gantt chart
The problem i am facing is that even though i see that the value of P10_DATA is populated with all the data during debugging, upon opening session and checking the item's value, it displays null !!!
Note:For data with less than 32k, Gantt chart loads correctly and the item's value gets saved.
Anyine please help me with this..
Regards,
Uday

Similar Messages

  • Problem with Gantt chart data (not a newbie)

    Post Author: wbvczar
    CA Forum: Charts and Graphs
    I am pulling data from an SQL 2000 database that stores the date as UNIX time in a string field.  Once I pull the data into Crystal via a Command, I then create a formula to convert to DateTime  format.  The problem is that when I enter this formula into the Chart Expert, it wants to count it instead of seeing it as a Date field. Is the problem because the original field format is not a DateTime field in the database?

    Post Author: wbvczar
    CA Forum: Charts and Graphs
    The formula (actually a function) is quite detailed (and lengthy) to compensate for daylight saving time changes.  I have posted it below, but I can verify that it is not splitting out the date and time separately.//Function  (numberVar v1)//date(1970,01,01)//Truncate((v1/(606024))-(5/24))Function (numbervar v1)//formula to adjust for UNIX time//HD stores dates as number of seconds since 1/1/1970 in Universal or GMT time. //convert from seconds to a date, //then convert to EST //finally, validate date for daylight savings time  // convert ARS date from # of seconds since 1/1/1970 in Universal (or GMT) timedatetimevar GMTdate := datetime(1970,01,01)(v1/(606024));//this equation tells the system when daylight savings time starts: datevar DaylightStarts :=                                                   if DayOfWeek ( Date (Year (Today),3 ,8 ) ) = 1 then Date (Year (Today),3 ,8)  else if DayOfWeek ( Date (Year (Today),3 ,9 ) ) = 1 then Date (Year (Today),3 ,9)  else if DayOfWeek ( Date (Year (Today),3 ,10) ) = 1 then Date (Year (Today),3 ,10) elseif DayOfWeek ( Date (Year (Today),3 ,11) ) = 1 then Date (Year (Today),3 ,11) elseif DayOfWeek ( Date (Year (Today),3 ,12) ) = 1 then Date (Year (Today),3 ,12) else if DayOfWeek ( Date (Year (Today),3 ,13) ) = 1 then Date (Year (Today),3 ,13) elseDate (Year (Today),3 ,14 );    //this is when it ends: datevar DaylightEnds :=                                                            if DayOfWeek ( Date (Year (Today),11 ,1 ) ) = 1 then Date (Year (Today),11,1 ) else if DayOfWeek ( Date (Year (Today),11 ,2 ) ) = 1 then Date (Year (Today),11,2 ) else if DayOfWeek ( Date (Year (Today),11 ,3 ) ) = 1 then Date (Year (Today),11,3 ) else if DayOfWeek ( Date (Year (Today),11 ,4 ) ) = 1 then Date (Year (Today),11,4 ) else if DayOfWeek ( Date (Year (Today),11 ,5 ) ) = 1 then Date (Year (Today),11,5 ) else if DayOfWeek ( Date (Year (Today),11 ,6 ) ) = 1 then Date (Year (Today),11,6 ) else Date (Year (Today),11 ,7 );//The timeadj equation adjusts things for daylight savings & time zone // if today is less than the 1st Sunday in April, or greater than or //equal to last Sunday in October then adjust 5 hours, else if DST then 4numbervar timeadj :=if (GMTdate < DaylightStarts) or (DaylightEnds <= GMTdate) then 5 else 4;//put it all together and we have datedate(GMTdate-(timeadj/24))

  • Gantt chart is not showing the topmost task properly

    Hi,
    I have tried to create a gantt chart similar to [http://www.anychart.com/products/anygantt/gallery/sample_02.html]
    , except the connectors are not necessary. I could do this by dropping some parts out from the custom XML, but the parent tasks are always displayed with the same style as the child tasks. I want to make the parent periods display so that they are different from the child periods like in the chart example, where they are gray and thinner. How is that possible ?
    Tiina

    Hi Tiina,
    Firstly, just to explain the current behaviour, the timeline bars in Gantt charts generated in APEX have a default style called defaultStyle applied to them. This style controls the appearance of the various components of the timeline region, such as the actual bar colour, the progress bar colour, etc. The default style needs to be applied to the <task> tags within the chart XML i.e. the tags containing the data for your Gantt chart. In order to allow our users to control the appearance of the timeline items via attributes on the Chart Attributes page, we update the default Style with values selected on the Chart Attributes page and then we reference that style in the <task> tag, as follows:
    <project_chart>
      <tasks>
        <task id="7782" parent="" name="Charts Integration" actual_start="2009.03.21 12.03.00" actual_end="2009.09.21 12.09.00" baseline_start="2009.03.18 12.03.00" baseline_end="2009.09.26 12.09.00" progress="60" style="defaultStyle"/>
      </tasks>
    </project_chart>....where style=&quot;defaultStyle&quot; is the reference to the style. If you look in the XML you'll see where the default Style has been defined. The <tasks> tags are generated at runtime, and populated with the resultset for the chart series query. If we didn't apply a default style to these tags, then users would be required to manually generate the <tasks> tags themselves in order to apply a style to their Gantt chart data.
    In AnyChart, no style has been applied to the example you selected - http://www.anychart.com/products/anygantt/gallery/sample_02.html - only default AnyChart settings are being used here. Due to the existence of style=&quot;defaultStyle&quot; in your Gantt data, you'll have to make the necessary changes within the </styles> tags of your XML. These changes can be made via the options exposed on the Chart Attributes page or by customizing the XML. I know this isn't exactly the same as the AnyChart example, but you can achieve something similar by just updating the Chart Attribute settings, as done on this example: http://apex.oracle.com/pls/apex/f?p=36648:50. I hope this helps.
    Regards,
    Hilary

  • Google Charts are not getting displayed in Firefox ver 4.0.1

    Google Visualisation charts are not getting displayed in Fire Fox latest version. Please have a look at the below url.

    Thanks for the link. That one doesn't use the Flash player, so the problem must be somewhere else.
    If you use NoScript or other security add-ons, make sure google.com or code.google.com is allowed to run scripts.
    Could you try disabling graphics acceleration and see whether that makes any difference?
    orange Firefox button ''or'' Tools menu > Options > Advanced
    On the General mini-tab, uncheck the box for "Use hardware acceleration when available"
    This will take effect after you restart Firefox.

  • In VA01  In Schedule line Delivery date not getting populated

    Hello,
    We have developed enhancement for VA01 tcode.
    Depending upon the quatity entered for a material it should show one more item as free good.
    If quatity is 10 for a line item 10 then it should show item 20 by default same mateerial and quatilty as 1.We have done this it is working fine.
    But if we select free good item in our case it is 20 and click on schedule line item buttom all quaitity fields getting populated.but delivery date not getting populated for only free good.for line item 10 it showing properly.
    Can any one please suggest what i need to do in order to display delivery date for free good.
    Thanks in advance.
    Regards.

    Thanks for your response.
    Actually i have seen technical settings for that field.it is rv45a-etdat.this field has value till MV45AFZZ.seen in debugger.
    Looks like it is clearing some where after the above include.Any suggisitions welcome.Thanks again.

  • Data not getting populated in Payslip in ESS Portal

    Hi All
    I am tryig to display Payslip in Portal. Have done all the necessary configuration in Benefits and payments->Salary statement->HRFOR/ EDTIN features.
    Correct Payslip form is visible but data is not getting populated in the payslip.
    Have tested the Payslip in PC00_M40_CEDT transaction with the variant i have set for HRFOR/EDTIN features and Payslip data is displayed correctly.
    Have checked for PZ11_PDF transaction but i get a message saying it cannot be accessed through Easy access.
    Can anyone pls let me know what might be the reason for data not getting populated in Payslip in Portal?
    what is role of PZ11_PDF transaction in Payslip display in Portal?
    Regards
    Asha

    Hello,
    Do one thing for executing the PZ11_PDF trsaction please follow following steps.
    1. Once you log in SAP system with same User - Id which you r using on Portal .
    Once log in PUT "/N" in the command box . Then put the trasaction "PZ11_PDF" and execute it will
    Call the salary statement .
    Or
    Once you log in SAP system put the trasction "/nsbwp" then give the trasaction "PZ11_PDF" it will
    call the salary statement ..
    give inputs once you done
    .....The issue with  Authorisations please check it ...
         Add this object in ESS role "S_SERVICE' ...
        and this object in ESS role "P_PERNR" ---infotype 0008
    Edited by: Vivek D Jadhav on Jun 15, 2009 11:49 AM

  • Data not getting populated in ESS Payslip in portal

    Hi All
    I am tryig to display Payslip in Portal. Have done all the necessary configuration in Benefits and payments->Salary statement->HRFOR/ EDTIN features.
    Correct Payslip form is visible but data is not getting populated in the payslip.
    Have tested the Payslip in PC00_M40_CEDT transaction with the variant i have set for HRFOR/EDTIN features and Payslip data is displayed correctly.
    Have checked for PZ11_PDF transaction but i get a message saying it cannot be accessed through Easy access.
    Can anyone pls let me know what might be the reason for data not getting populated in Payslip in Portal?
    what is role of PZ11_PDF transaction in Payslip display in Portal?
    Regards
    Asha

    Asha,
    Maintain Feature EDPDF which determines the SMARTFORM being used to make the payslip available for employees. This is more of a HR related issue and I believe if you post this in the ESS or HR Forum you would be able to resolve this issue.
    Good Luck!
    Sandeep Tudumu

  • Data not getting fetched from Quotation to Contract

    Hi,Myself new to TM. I have a ticket mentioning data not getting fetched from quotation to contract. How to solve it? Please help...
    Message was edited by: Michael Appleby

    Please add the version of the TM product and which SPs have been installed.  Also more information on the quotation and contract.
    What do you mean by ticket?  It you mean an error message, from where are you reading the message?
    Regards, Mike
    SAP Customer Experience Group - CEG

  • Contact person Rel.ship Data not getting updated in B2B Web User Mngt

    Hi CRM Gurus,
    Need some help on Web User Management functionality.
    Sub: Contact person Relationship data not getting updated when we change the company (to wich contact person belong to) in ISA CRM 5.0 Web User Management.
    we are currently on CRM ISA 5.0 and using Web User Managment for our B2B scenario. New creation of users is working fine. But when we want to change the company (Sold to pary) for the existing contact person, the relationship data in CRM is not getting updated and the below are the details.
    Contact person No: XXXX (has a Relationship: "Is contac person for YYYY company in CRM)
    Company/Sold to Party: YYYY (has a relationship "Has contact person XXXX in CRM).
    When I chage the contact person's (XXXX) company  from  YYYY to ZZZZ,
    - Relationships of the new assignment for ZZZZ in CRM not getting updated.
    - Old Records in YYYY is not getting deleted (i.e. relationships.
    - There is No relationship data appear in XXXX.
    Appreciate any inputs on the same.
    Thanks,
    Rahul >>>

    Hi Rahul,
    I'd suggest you running a session trace / ABAP debugging to see if some information is not getting passed from the Java stack onto the ABAP stack. An alternate move would be to create a new OSS customer message.
    Cheers,
    Ashok.

  • Adhoc Query data not getting displayed on Portal

    Hi,
    I have a problem with custom Adhoc query data not getting displayed on the portal.
    It was getting displayed initially but after a user made some changes to the query its not getting displayed.
    The query is displaying data perfectly on R/3 but on portal ..Its giving the message no data found.
    Can anyone help me on this.
    Also if anyone can tell me how do i debug an Adhoc query from potal.
    Is there any tool to debug an Abap program from portal.
    I dont want to use trace,
    Thanks
    GT
    Message was edited by: GT

    Hi GT
    find out the EXACT query u want to launch if it's display
    in BW buisness explorer then change the iview property
    for that query in portal . right click on iview
    BEx Web Application Query String -> assign correct query
    regards,
    kaushal

  • Team view data not getting refers for some user

    Hi,
    We are facing an issue in team view app for mss,  manager's are seeing details of employees not belonging to their Org Unit/ data not getting refreshed. This seems to be the Cache related issue where the data of perviously logged in user is displayed to the current user till browser cache are cleared manually.
    User don't have permission to clear browser cache. Is there any work around.The issue is coming only for some users.I have enable the 'ABAP HTTP Security session Enabled' property of the system used.
    Regards
    Pallavi

    Hi Karthik,
    in the first view I execute the BAPI and in the second view I show the results. In the second view I also submit the modified data via another BAPI.
    As I execute and display result of same BAPI in two different views I have bound the same model node to both of these views. Let me give you some sample code for understanding what have I done.
    In the first BAPI's search action handler I have written:
              Zsr_Packnr_Validate_Components_Input input = new Zsr_Packnr_Validate_Components_Input();
              wdContext.nodeZsr_Packnr_Validate_Components_Input().bind(input);
              input.addT_Version(new Zsr_Packnr_Field_Values());
              input.addT_Zsr_Genbr(new Zsr_Packnr_Field_Values());
    input.setZsr_Gmc(globalMaterialCode);
              input.setZsr_Mrc(mrc);
              input.setZsr_Ctry(country);
              input.setZsr_Dc(distributionChannel);
              input.setZsr_Div(commercialSegment);
    wdContext.nodeOutput_Validate().invalidate(); //as u suggested
              wdContext.currentZsr_Packnr_Validate_Components_InputElement().modelObject().execute();
              wdContext.nodeOutput_Validate().invalidate();
    In the second BAPI I just display the output node from the same Model context node (its mapped to the second view too).
    But as I said whenever I update some values in the result set and submit it the data gets submitted properly. But when I press the search button again, the previous set of data gets populated, not the just updated data.
    If anybody has some idea on why the second time search BAPI execution still shows the previous set of result it will be a great help to me.
    Thanks for all your help.
    Shubhadip

  • Gantt Chart component not showing the duration (Safari and FireFox on OS X

    Hi,
    I created a Gantt Chart component that should show the duration of several project tasks in a graphical way. I did not specify subtasks, only tasks.
    Because this is a rather simple thing to do (see http://docs.oracle.com/cd/E18941_01/tutorials/jdtut_11r2_58/jdtut_11r2_58_3.html), and apparently the graphical part of the Gantt chart is not shown on my Mac, I would like to know whether someone has tried this on a Windows machine and got it working?
    Kind regards,
    Philip

    In Safari, the "sample" page loads and it shows the graphical part of the Gantt. In Firefox the sample page does not load:
    This XML file does not appear to have any style information associated with it. The document tree is shown below.
    <partial-response><noop/></partial-response>
    Thanks Shay!
    Maybe the WLS is causing the problems at my side? I also noted the left-right mouse swipe movements to scroll in a panel does not work when using my local JDev and IntegratedWLS, but it does work on your sample page.
    Kind regards,
    Philip
    Edited by: verscph on Mar 15, 2012 9:52 AM

  • Gantt Chart - #DATA# value

    Hi All,
    I am using Oracle Apex version 4.2.2.00.11.
    I do have a gantt chart in one of my application and that is working fine, in this gantt chart we are not using any custom XML generation logic.
    Now we got another requirement from client, in this we are going for custom XML generation logic because of the nature of data.
    They do expect the similar chart which we have already, now my requirement is, how can i look at the XML generated in my first Gantt Chart? because the XML part contains the parameter as, #DATA# and this contains the answer am searching for.
    Can anyone please help me to pull out the XML generated(#DATA#) by Apex in my first chart?
    Thanks in advance.
    With Regards,
    Sakthi.

    Run you page in debug mode. Then automagically a link appears below your chart "Show XML". Click that one 'et voila' ....

  • Gantt chart date format?

    Hi,
    If i define format string on a view object's date attribute and use this attribute on a gantt chart, I get an error:
    avax.el.ELException: java.lang.ClassCastException: java.lang.String cannot be cast to java.util.Date
         at javax.el.BeanELResolver.getValue(BeanELResolver.java:266)
         at javax.el.CompositeELResolver.getValue(CompositeELResolver.java:143)
         at com.sun.faces.el.FacesCompositeELResolver.getValue(FacesCompositeELResolver.java:72)
         at oracle.adfinternal.view.faces.bi.renderkit.gantt.ProjectTaskbarsRenderer.encodeAll(ProjectTaskbarsRenderer.java:281)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1187)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:335)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:751)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:415)
         at oracle.adfinternal.view.faces.renderkit.rich.table.BaseColumnRenderer.renderDataCell(BaseColumnRenderer.java:1133)
         at oracle.adfinternal.view.faces.renderkit.rich.table.BaseColumnRenderer.encodeAll(BaseColumnRenderer.java:104)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1187)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:335)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:751)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:415)
         at oracle.adfinternal.view.faces.renderkit.rich.TreeTableRenderer.encodeChild(TreeTableRenderer.java:744)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer.renderDataBlockRows(TableRenderer.java:1852)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer._renderSingleDataBlock(TableRenderer.java:1552)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer._handleDataFetch(TableRenderer.java:964)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer.encodeAll(TableRenderer.java:494)
         at oracle.adfinternal.view.faces.renderkit.rich.TreeTableRenderer.encodeAll(TreeTableRenderer.java:597)
         at oracle.adfinternal.view.faces.bi.renderkit.gantt.GanttChartTreeTableRenderer.encodeAll(GanttChartTreeTableRenderer.java:105)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1187)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:335)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:751)
         at org.apache.myfaces.trinidad.component.UIXCollection.encodeEnd(UIXCollection.java:527)
         at oracle.adfinternal.view.faces.bi.renderkit.gantt.GanttChartTreeTable.encodeEnd(GanttChartTreeTable.java:89)
         at org.apache.myfaces.trinidad.render.RenderUtils.encodeRecursive(RenderUtils.java:70)
         at oracle.adfinternal.view.faces.util.rich.InvokeOnComponentUtils$RenderCallback.invokeContextCallback(InvokeOnComponentUtils.java:97)
         at org.apache.myfaces.trinidad.component.UIXCollection.invokeOnComponent(UIXCollection.java:1024)
         at oracle.adf.view.faces.bi.component.gantt.UIGantt.invokeOnComponent(UIGantt.java:1718)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1312)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1406)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1312)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1406)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1312)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.invokeOnComponent(ContextSwitchingComponent.java:188)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1312)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1406)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1312)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1406)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1312)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1406)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1312)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1406)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1312)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1406)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1312)
         at oracle.adf.view.rich.component.fragment.UIXInclude.invokeOnComponent(UIXInclude.java:123)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1312)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1406)
         at oracle.adf.view.rich.component.rich.RichDocument.invokeOnComponent(RichDocument.java:159)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:731)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:675)
         at oracle.adfinternal.view.faces.util.rich.InvokeOnComponentUtils.renderChild(InvokeOnComponentUtils.java:29)
         at oracle.adfinternal.view.faces.streaming.StreamingDataManager._pprComponent(StreamingDataManager.java:616)
         at oracle.adfinternal.view.faces.streaming.StreamingDataManager.execute(StreamingDataManager.java:465)
         at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._encodeStreamingResponse(DocumentRenderer.java:2608)
         at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:969)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1187)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:335)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:751)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.__encodeRecursive(UIXComponentBase.java:1494)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeAll(UIXComponentBase.java:771)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:942)
         at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:271)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:202)
         at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:193)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:685)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:261)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:193)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at net.kinvent.javax.RequestAgentFilter.doFilter(RequestAgentFilter.java:28)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56Any workarounds?

    Just found another issue. Gantt chart seems to take into account users timezone from trinidad config when rendering tasks on timeline.
    However, when you rollover a task, start and end date are displayed in system time. ProjectGantt has no "timeZone" property to override this behavior.

  • Data Not getting transferred in the Cube for 2LIS_03_BF

    Hello Gurus,
    I have installed the cube 0IC_C03 from standard business content. While executing the data load , the data is seen in PSA but does not get updated in Cube
    The info package is on mode "In PSA and then at once in InfoCube"
    Regards
    Lalan

    Hi,
    It is the problem with Process keys . Take a look on the links:
    Re: Problem extracting 2LIS_03_BX into 0IC_C03
    Re: Records Not Added
    Re: Inventory Management
    Re: 0PROCESSKEY
    With rgds,
    Anil Kumar Sharma .P
    Message was edited by: Anil Kumar Sharma
    Message was edited by: Anil Kumar Sharma

Maybe you are looking for

  • Show your tasks in the calendar view - Outlook Web App

    Hi, Is it possible to show your tasks in the calendar view in Outlook Web App 2013 ? Some explanations of what I want to do :-) We use Project Server so user can encode their work, this tasks are sync with an Exchange Server 2013 so tasks can be view

  • Nik Software Plug-ins not working with LR3

    Hello, I have both LR 2.7 and LR3 running on my computer.  When I installed LR 3, it load the Nik software plug-ins into the external editor section like LR 2.7.  However, when I try to use a Nik plug-in in LR 3 I get an error message that the " File

  • Can't create file with filename contains user-defined character

    Dear all, I got a question about directory listing and file creation. My development OS is Win2K traditional chinese version and my JDK is 1.4.0 Internationation version. My program copy each of file into another directory. I call File.lists() to get

  • How to use external application, webclipping portlet in webcenter ?

    I'm just following this [http://biemond.blogspot.com/2008/01/external-application-in-webcenter-11g.html|http://biemond.blogspot.com/2008/01/external-application-in-webcenter-11g.html] to integrate an application into webcenter application as a extern

  • BAM APIs and TPE in BizTalk

    Hi - i have been assigned work related to tracking data using BAM (its like Purchase Order, Sending/receiving Invoice, for Property related work) I know TPE is used to track only at Ports level which is not always helpful and if there is looping invo