Value disappearing while navigating from Page2 to Page1

Hi Friends,
Scenario: I am navigating from page1 to page2. While doing so am retaining the AM state. The problem is when i navigate from page2 to page1 the new values that i have entered in page1 disappears but the queries which i executed while loading page1 is retained and those values are displayed.
I double checked whether i have executed/instantiated a query but its negative. Also i checked the row count of the view object, its giving the same count.
Can u all please help me in resolving a solution?
Thanks,
KR
Edited by: KR on Jun 3, 2013 11:01 PM

Hi Sandeep,
I have all protected all the VO execution with condition check.
Since you have asked... i am posting my controller code for page1 below...
public void processRequest(OAPageContext pageContext, OAWebBean webBean) {
super.processRequest(pageContext, webBean);
System.out.println("In PR : " + pageContext.getParameter(EVENT_PARAM));
System.out.println(pageContext.getSessionId());
OAFormValueBean awid = (OAFormValueBean)webBean.findChildRecursive("AwardHeaderId");
String mode = pageContext.getParameter("mode");
System.out.println("mode : "+mode);
OAApplicationModule oaam = pageContext.getApplicationModule(webBean);
String attach = (String)pageContext.getTransactionValue("add");
System.out.println("Attach : " + attach);
String tenderNumber =
pageContext.getParameter("tendno");
if (attach == null && "Create".equals(mode) && !"itemReturn".equals(mode)) {
System.out.println("Inside attach");
Serializable[] tenderNo = { tenderNumber };
oaam.invokeMethod("executeTenderDetails", tenderNo);
oaam.invokeMethod("executeAwardDetails", tenderNo);
oaam.invokeMethod("initNotes");
oaam.invokeMethod("executeNotesHistory", tenderNo);
oaam.invokeMethod("initAttach");
System.out.println("Awid : "+awid.getValue(pageContext));
pageContext.removeTransactionValue("add");
System.out.println("add Trans : "+pageContext.getTransactionValue("add"));
System.out.println("End");
OAViewObject vo = (OAViewObject)oaam.findViewObject("XxdmIcmAwardNotesHistVlVO1");
System.out.println("Fetched RowCount : "+vo.getFetchedRowCount());
In the if clause, i have checked *!("itemReturn".equals(mode))*.
This condition fails because i have set mode to be itemReturn when navigating from page2 to page1.
Thanks,
KR

Similar Messages

  • Error with getAttribute( ) function, while navigating from parent to child

    Hi,
    I have been trying to develop a small project with two task flow(TF).
    Both the TF contains only one page.
    Both of my pages are made from different VO,s.
    from the Parent page (P1) if i select a row and navigate to Child Page (P2), i need to filter the result in P2 using the selected row in P1.
    From P1 when i selected a row and navigate to P2 by clicking a button, i have used a Bean to get the parameters from the selected row and Passed the same to TF2.
    I made an AMImpl method and binded it to P2, such that whenever my P2 render this AMImpl method will be executed.
    Inside the AMImpl method i am trying to run the VO query of P2 with new selected criteria from TF1 ie.P1.
    i also have few more functionalites in P2 like when i select a row and clicks on a button i will some some info on a pop-up for the corresponding selected row.
    When i run the page P2 individually,all works fine. But when i navigate from P1 to P2 none of the functions are working, i.e when i click on the button on P2 to see popup its showing that Attribute is Null in the selected row, even though the attribute is not null. After navigation in P2 this function getAttribute( ) is returning null. but when i run P2 individually the same function is returning all required fields without error.
    Actual AMimpl.java method code :
    RowKeySet selectedRows =
    Table.getSelectedRowKeys(); //Table is a "Rich Table" i declared outside the method and binded to my actual table on P2
    Iterator selectedRowsIterator =
    selectedRows.iterator();
    DCBindingContainer dc =
    (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
    DCIteratorBinding iterBinding =
    dc.findIteratorBinding("P2Iterator");
    RowSetIterator rowSetIterator = iterBinding.getRowSetIterator();
    Key selectedRowkey =
    (Key)((List)(selectedRowsIterator.next())).get(0);
    Row selectedRow = rowSetIterator.getRow(selectedRowkey);
    String parameter1ForCurrentRow =
    selectedRow.getAttribute("parameter1").toString(); // -->this particular line is returning null while navigating from P1 to P2, but the same line returns actual value if the run P2 individually
    Kindly guide me how to achieve this.
    Regards
    Siva

    Hi Timo
    thanks for your reply.
    The reason I am doing this is to avoid the numerous instances of VO2 (Child VO) that will get created for every row of VO1. (eg: 100 rows of Vo1 means 100 instances of VO2 created & executed ).
    I am trying to avoid that by Binding and executing the params to a single child VO instance, only on the click of a button.
    Please advise if my assumption about as many child instances of VO2 being created and executed is incorrect and ADFBC does some kind of Lazy instantiation / loading of the child VO until the point of execution of the UI code where it is bound to ?

  • Animatioin get distbub while navigation from previous page and next page

    animatioin get distbub while navigation from previous page and next page

    To get the value from dropdown list:
    For example:
    <b>In Layout</b>
           <htmlb:dropdownListBox id                = "country"
                                   nameOfKeyColumn   = "land1"
                                   nameOfValueColumn = "landx"
                                   selection         = "<%=country%>"
                                   onSelect          = "displayregion"
                                   table             = "<%=iland%>" />
    <b>Oninputprocessing:</b>
            CALL METHOD REQUEST->GET_FORM_FIELD
              EXPORTING
                NAME  = 'country'
              RECEIVING
                VALUE = country.
    <i>*Reward each useful answer</i>
    Raja T

  • Error while navigating from a report in OBIEE

    I get the below error while navigating from one report to another report
    Odbc driver returned an error (SQLExecDirectW).
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred.
    [nQSError: 16001] ODBC error state: 37000 code: 1101 message: [Microsoft][ODBC SQL Server Driver][SQL Server]Could not allocate a new page for database 'TEMPDB'
    because of insufficient disk space in filegroup 'DEFAULT'. Create the necessary space by dropping objects in the filegroup
    , adding additional files to the filegroup, or setting autogrowth on for existing files in the filegroup..
    [nQSError: 16015] SQL statement execution failed. (HY000).
    Any inputs on this is highly appreciated.
    Thanks,
    Vasavi

    Hi Vasavi,
    There is no Temp space in Data base to run queries .Please contact your DBA to increase your db size
    thanks,
    saichand.v
    Edited by: Saichand Varanasi on Jul 14, 2010 7:35 AM

  • Blank Screen while navigating from one screen to another in a web applicati

    Blank Screen while navigating from one screen to another in a web application.
    While navigating through the screens of the web-based application, I get blank screen at times. The application menu bar is still visible and the header and footer jsps are also still available. The main processing frame alone goes blank. Once I get the blank screen, I am able to choose from the menu option and contine navigating through the screens.
    The application has been deployed on WebSphere Application Server v6.0 and uses JDK 1.4.2. I have checked the application, server and systemerr logs. And there are no exceptions in any of the log files. There is no difference in the logs for a normal flow and the flow when the blank screen occurs.
    The blank screen does not occur always. It occurs around 3 out of 10 times. If you consider a particular page, mostly it loads normally and very few times, the blank screen occurs.
    Compression filter is being used and it gets invoked for every request. Size before and after compression also gets printed in the logs.
    Could this be causing any issue in terms of memory handled or could any jsp timeout be happening, though there are no exceptions in the logs.

    Well, since no one has any ideas, here is my two cents worth:
    Can you turn off compression and see if the problem goes away? If not, I suggest creating a small separate project with the same functionality as that part of the program that causes problems and see if you can duplicate it. Use System.out.println() in the java code and out.write() in the JSP pages throughout the java and JSP code to write to the log file or console as each section is run to see what section is causing problems. You can also consider commenting out sections of code in your JSP page to see if you can isolate the problem.
    I had a similar problem with the screen being blank and this is what I found:
    My JSP page had an include tag in it that included another JSP page. The outer JSP page was drawn and waited for the included JSP page to be drawn. The logic took several minutes to run and something timed out. The inner JSP page was never drawn. No log entry occurred. It appears that it was not Apache or Tomcat that caused the problem, but some firewall or similiar such device. If you have a firewall or similar device, see if the person who maintains it can temporarily set its timeout to a very long time (15 minutes) to see if the problem goes away. Apache and Tomcat probably also have a timeout feature too. You will have to read up on their configuration settings on how to set them.
    By the way, each of those devices probably has its own log file you can read to see if its reporting an error.

  • [ADF-11.1.2] Security 401 error ONLY while navigating from 1 BTF to another

    Hi,
    I have 2 BTF in my Security-Enabled ADF application. First BTF has a Task Flow Call to another BTF.
    I then created 2 web pages for each BTF. Page A for first BTF and B for second BTF.
    If I open any page, it ask for Authentication and display the page with BTF content on web browser.
    The only Problem is, if I click on the button on first BTF which has a navigation to second BTF, it throws me following error.
    Note: All Task Flows and web page has 'View' permission for 'authenticated-role' Rule. Can someone please explain if I can open 2 BTF separately, then why it is throwing 401 error while navigating from 1 BTF to another. Am I missing assigning any permission ?
    javax.servlet.ServletException: ADF_FACES-60101:HTTP Error Status Code: 401."
         at oracle.adfinternal.view.faces.config.rich.XmlHttpServletResponse._logException(XmlHttpServletResponse.java:140)
         at oracle.adfinternal.view.faces.config.rich.XmlHttpServletResponse.sendError(XmlHttpServletResponse.java:106)
         at oracle.adfinternal.view.faces.config.rich.XmlHttpServletResponse.sendError(XmlHttpServletResponse.java:100)
         at oracle.adfinternal.controller.util.JsfInterfaceImpl.sendResponseError(JsfInterfaceImpl.java:477)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.handleException(ControlFlowEngine.java:725)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:934)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:824)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.routeFromActivity(ControlFlowEngine.java:554)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.performControlFlow(ControlFlowEngine.java:158)
         at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleAdfcNavigation(NavigationHandlerImpl.java:115)
         at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleNavigation(NavigationHandlerImpl.java:84)
         at org.apache.myfaces.trinidadinternal.application.NavigationHandlerImpl.handleNavigation(NavigationHandlerImpl.java:50)
         at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:130)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)
         at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:159)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:1129)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:353)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:204)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:312)
         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:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:173)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:121)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:293)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:199)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:180)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)

    I upgraded to 11.1.2.2... and the good news is.. it throws me more appropriate error message:-
    ADFC-0619: Authorization check failed: '/WEB-INF/task-flow-name' 'VIEW'.
    ADF_FACES-60097:For more information, please see the server's error log for an entry beginning with: ADF_FACES-60096:Server Exception during PPR, #2I was using template taskflow from another adf application, but I failed to give permission to that task flow template because I didn't check "Show task flows imported from ADF libraries".
    I gave permission to task template and is working fine now.. :)

  • Itunes store freezes while navigating from time to time.

    While navigating in the itunes store from time to time the whole itunes app freezes and i have to force the process to close under windows 7.
    How can i resolve this issue?

    and after installing the brand new 9.2 version guess what???? the problem is still there! thanks Apple!

  • Page hangs While Navigating from JTT to OA

    In our product Oracle Trade Management we are facing the following issue while trying to navigate to an OA page from a JTT page. Please note that the page hangs for sometime and we have noticed following exception:
    java.lang.RuntimeException: java.sql.SQLException: Missing descriptor
    at oracle.apps.jtf.base.session.JTFCDB.getJTFCookieString(JTFCDB.java:414)
    at oracle.apps.jtf.base.session.JTFCookie.getBrowserCookie(Unknown Source)
    at
    oracle.apps.jtf.base.session.ServletSessionManager.addSessionCookie1(ServletSe
    ssionManager.java:4240)
    at
    oracle.apps.jtf.base.session.ServletSessionManager.addSessionCookie(ServletSes
    sionManager.java:4211)
    at
    oracle.apps.jtf.base.session.ServletSessionManager.endRequest(ServletSessionMa
    nager.java:2495)
    at pages._jtfcrmchrome._jspService(__jtfcrmchrome.java:1894)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
    at
    weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecu
    rityHelper.java:227)
    at
    weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.
    java:125)
    at
    weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
    at
    weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:183)
    at
    weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatche
    rImpl.java:523)
    at
    weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.
    java:253)
    at weblogic.servlet.jsp.PageContextImpl.forward(PageContextImpl.java:159)
    at pages._jtfcrmchrome._jspService(__jtfcrmchrome.java:1312)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
    at
    weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecu
    rityHelper.java:227)
    at
    weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.
    java:125)
    at
    weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
    at
    weblogic.servlet.internal.ServletStubImpl.onAddToMapException(ServletStubImpl.
    java:416)
    at
    weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:326)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at
    weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(Unknown Source)
    at
    weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at
    oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:332
    at
    weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at
    weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun
    (WebAppServletContext.java:3715)
    at
    weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(Web
    AppServletContext.java:3681)
    at
    weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.
    java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at
    weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletCon
    text.java:2277)
    at
    weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.ja
    va:2183)
    at
    weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    The sample code used in JTT page to build Hyperlinks, which takes us to OA page is give below:
    String l_strOfferNameHyperlink = oracle.apps.asf.util.FunctionUtil.getURL(omoPage,"OZF_FS_OFFR_UPDT")+"&qpListHeaderId="+l_strObjId;
    String l_StrPageIdsUrl = "&"+omoPage.getPageIDsURL().substring(1);
    l_strOfferNameHyperlink += l_StrPageIdsUrl;
    l_strOfferNameHyperlink += "&PAGE.OBJ.objType=OFFR";
    l_strOfferNameHyperlink = oracle.apps.jtf.admin.adminconsole.SideBarMetaData.getURL(l_strOfferNameHyperlink,0,0);
    We modified the code as per the OA dev guide and bug no: 04548959
    l_strOfferNameHyperlink = PageUtil.get(omoPage).getURLNoCookie("OZF_FS_OFFR_UPDT",false)+"&qpListHeaderId="+l_strObjId;
    String l_StrPageIdsUrl = "&"+omoPage.getPageIDsURL().substring(1);
    l_strOfferNameHyperlink += l_StrPageIdsUrl;
    l_strOfferNameHyperlink += "&PAGE.OBJ.objType=OFFR";
    l_strOfferNameHyperlink = oracle.apps.jtf.admin.adminconsole.SideBarMetaData.getURL(l_strOfferNameHyperlink,0,0);
    l_strOfferNameHyperlink = oracle.apps.jtf.base.session.ServletSessionManager.getURL(l_strOfferNameHyperlink);
    Pls let us know what is the better way to handle the navigation from JTT to OA to avoid this issue.
    Thanks,
    Nirma

    Calling OA Page from JSP page
    Call OAF Page from JSP
    -Anand

  • Dynamically filter the values while navigating from Rep1 to Rept2(Answers)

    Answers Report:
    Users want to Navigate from Report1 to Report2 and they want to control the parameters while they are passsing to Report2 like by filtering the prompt Values.IS prompted works fine but users want to filter the report2 by answers prompt before navigating to report 2.
    When i navigate from Report 1 to Report 2 its directly going to Report 2 by passing the parameters,but users want the Prompt before they go to report 2 to filter the selections.
    Thanks in Advance.

    Hi,
    Apart from Page section of the Pivot table, we can use the Report Navigations.
    1.First Create an answers request(Report 2) and in that create Column Filter Prompt(by involving all the required columns).Save the report.
    2.Place the report in either one page of a shared dashboards(except My Dashboard) or in a new dashboard .If there are any other pages in the dashboard.Please go to the Page Options -> MyDashboard [Dashboard Properties] and Hide the Dashboard.
    3.Go to the Report 1.Choose a coumn on which the User wants to drill down(or navigate from). Go to the Properties ->Column Format -> Value Interaction -> Navigate -> Browse -> Dashboards(Select the Dashboard Page in which you have placed the Report 2)
    This can be a possible solution.
    Regards..

  • Error while navigating from one transaction to another

    Hi All,
    We are on Ep7. I have imported roles in srm as worksets into portal and assigned them to portal roles. Functionality of iViews is fine but when user tries to go back to the begining or to another transaction , a logoff popup is thrown.
    Steps:
    1. User logs in to portal
    2. Choose Approval iview (bbpapproval), then a list of pending approvals are shown.
    3. User choses one of them to take action, some where during this process if he clicks on "Back to approval" link on the top, a logoff  popup is coming up.
    Same result when clicked on "check status" after completing a shopping cart. Everything is fine if user goes directly to "check status" iview through navigation area instead of from "shop" iview.
    portal is terminating current session but failing to create new session and take user to the appropriate scree.
    Any advice is greatly appriciated.
    Thank you
    Ravi

    Hi Franklin,
    This means some where in the post query/or any other trigger you are assigning value to a filed which is a database item.Change the field property to non database item
    Best Regards
    Rajesh Alex

  • Value date while posting from FRFT_B

    Hi
    When I am posting from FRFT_B (Bank to Bank transfer) value is date is displaying in this transaction(FRFT_B) but when we posted document , value date is not updating in FI document hence we are not able to see value date.
    Can some one hlpe is there is any  configuration missing.
    Regards
    Nagendra

    Hi Nagendra, the FRFT_B will check the GL account master record to transfer the value date. You need to check the account master record. From customizing > Financial Accounting>General Ledger Accounting >G/L Accounts >  Master Data >G/L Account Creation >Change G/L Accounts Individually.
    , and there check the option "relevant for cash flow.

  • Picture disappears while editing from main screen view in iPhoto.

    Does anybody have any idea why this happens?  Certain pictures will disappear from the main view and I can't edit them at all since I can't see it.  I can see them in the thumbnail and once I exit the edit screen I see it again.  If I revert it shows again too. 
    This doesn't happen with all pictures only a few and I don't know why.  Any help would be appreciated.

    Apply the two fixes below in order as needed:
    Fix #1
    1 - launch iPhoto with the Command+Option keys held down and rebuild the library.
    iPhoto 8 (09) and earlier- run the options indicated
    iPhoto 9 (11) and later- run  Option #4 to rebuild the database
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    1 - download iPhoto Library Manager (iPhoto 8 or earlier or IPhoto 11 and later) and launch.
    2 - click on the Add Library button and select the library you want to add in the selection window..
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the
    File ➙ Rebuild Library (iPhoto 8 or earlier)
    or
    Library ➙ Rebuild Library (iPhoto 9 or later)
    menu option to rebuild the library.
    4 - In the next  window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments.  However, books, calendars, cards and slideshows will be lost. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • JDeveloper : Problem while navigating from one to another page.......

    Hi,
    I am using JDeveloper 11.1.1.4.0.
    Assume that Eo name : EmployeesEO. I want to display all employees those who r all under coreesponding Department. For that i have created ViewCriteria Named as EmployeeByDepartment for DepartmentId in EmployeesVO. where clause in Viewcriteria is:
    *( (Employees.DEPARTMENT_ID = :Departmentid ) )* .
    Then exposed that viewCriteria in AM for EmployeesVO Instance.
    Now i created taskFlow where I created two jsff page. In page 1 just i drag and drop EmployeeByDepartment viewcriteria from datacontrol [DataControl->EmployeesVO1->NamedCriteria]. Then i drag and drop EmployeesVO1 from Datacontrol to Page 2 as ADF Form.
    Now while clicking Search Button in page 1 it should navigate to Page 2 and also it should display Employee details those who r all under same Department.
    How can i achieve??
    Regards,
    Praveen.

    First question: which component do you use (af:query or anything else)?
    next question if you use af:query why not show the result on the same page (query with table)?
    Timo

  • What are the methods called while navigating from one applet to another one

    Hi All,
    Could any one brief me about "When you navigate from one applet to another what are the methods called ?".
    Thanks in advance.
    Best Regards,
    N.Madhusudhanan.

    http://forum.java.sun.com/thread.jsp?forum=421&thread=426771&tstart=0&trange=100

  • Error message while navigating from Dashboard to BI Publisher

    Hi,
    We have a environment setup as , Using Ebusiness application authentication for OBIEE and Bi publisher.
    But when we navigate from OBIEE to BI Publisher we are facing an error as java exception:connection refused.
    i had seen everything but the issue is not getting resolved.
    Can any one please help me out with the issue and for more analysis if you need anything else please let me know.
    Thanks.

    Some formats that play in iTunes are not compatible with the 1st generation iPod shuffle, Aiff and Apple Lossless for instance. Apple Lossless is not supported on the 2nd generation shuffle: iPod shuffle: Compatible audio formats
    I don't use a shuffle but it has a function that other iPods don't have, on-the-fly conversion, the option to "Convert higher bit rate songs to 128 kbps AAC". You should check this out, this should save you converting your lossless files in iTunes. You can find details on pages 12 and 13 of the manual: iPod shuffle User Guide
    Quote: "If this option is selected, songs encoded in AIFF or Apple Lossless format are
    converted to 128 kbps when transferred to iPod shuffle (the song files in iTunes aren’t
    affected). Otherwise, iPod shuffle doesn’t play songs encoded in those formats"

Maybe you are looking for

  • How can I desactivate an "-3 error" message box?

    Hi everyone, The last time I ran my program I got  the error message : -3 at an unknown place  (see .png). I had already run it several times  (for something like 40h each time) without any problem. I have only connected and configured the error mess

  • How can I be able to upload my imovie to facebook?

    I update my iPhone to IOS 6.0.1 but still can't upload to facebook I even try to export to camera roll then upload to facebook also can't upload,can anyone help me on this?

  • How to call function BAPI_GOODSMVT_CREATE ?

    Hi all, I want to create a material document by calling the function BAPI_GOODSMVT_CREATE I don't know what to pass although I know I have to export something (GOODSMVT_HEADER and GOODSMVT_CODE) in my ABAP. But what should I actually pass to the func

  • Slow render problem

    I have a question. I have a 2.33 Intel Duo Core IMac with 3 GB of ram. I have a 42 minute video to render. Should it take 12 hours to render ? If so, this is really going to slow down my process because I have 3 videos to render and need to do other

  • Creative Muvo TX SE

    Is there any way to increase the volume more, past models i had went to 40 in volume, this only goes to 25. Also is it possible to browse through folders and tracks while listening to music?. thanks