Calling action unixActions2.2.0.18.0  touchFile

Hi,
I try to install Oracle 9.2.0.4 for 64-bit Linux platform on Suse 9.0.
I have DELL Poweredge 2850 . I performed pre-installation tasks
next I executed ./runInstaller from Disk1 . I see Universal Installer but when
installation comes to the 18 percent and UI tries to install "Installing
Oracle Reguaired Files 32-bit 9.2.0.1.0" my installation do not go further
. Maybe you can help me?
I present below the end of my log file.       
copyAsText = null
        JarLoc = /tmp/OraInstall2006-03-10_04-22-02PM/temp36
        gpEntries = [[libvsn_ee9.a ->%ORACLE_HOME%/lib32/libvsn9.a 2214 plats=2=>[46] langs=2=>[en,fr,ar,bn,pt_BR,bg,fr_CA,ca,hr,cs,da,nl,ar_EG,en_GB,et,fi,de,el,iw,hu,is,in,it,ja,ko,es,lv,lt,ms,es_MX,no,pl,pt,ro,ru,zh_CN,sk,sl,es_ES,sv,th,zh_TW,tr,uk,vi]]
, [libntcps9.a ->%ORACLE_HOME%/lib32/libntcps9.a 52696 plats=2=>[46] langs=2=>[en,fr,ar,bn,pt_BR,bg,fr_CA,ca,hr,cs,da,nl,ar_EG,en_GB,et,fi,de,el,iw,hu,is,in,it,ja,ko,es,lv,lt,ms,es_MX,no,pl,pt,ro,ru,zh_CN,sk,sl,es_ES,sv,th,zh_TW,tr,uk,vi]]
, [naeet.o ->%ORACLE_HOME%/lib32/naeet.o 6029 plats=2=>[46] langs=2=>[en,fr,ar,bn,pt_BR,bg,fr_CA,ca,hr,cs,da,nl,ar_EG,en_GB,et,fi,de,el,iw,hu,is,in,it,ja,ko,es,lv,lt,ms,es_MX,no,pl,pt,ro,ru,zh_CN,sk,sl,es_ES,sv,th,zh_TW,tr,uk,vi]]
        DllGroup = false
Calling action unixActions2.2.0.18.0  touchFile
        source = /oracle/DP5/920_64/lib/ldflags
Thanks in advance
Steven

Problem resolved when
export LD_ASSUME_KERNEL=2.4.21
Thanks a lot,mj

Similar Messages

  • EJB is not throwing exception to calling Action class in Unix environment

    Hi
    We are using Weblogic Server 9.2.3.0.
    One of our EJB is not throwing exception to calling Action class in Unix environment. Its working fine in Windows.
    Somehow the EJB is swallowing the exception.
    any idea? I suspect it may be environmental issue?
    thank you

    Hi
    We are using Weblogic Server 9.2.3.0.
    One of our EJB is not throwing exception to calling Action class in Unix environment. Its working fine in Windows.
    Somehow the EJB is swallowing the exception.
    any idea? I suspect it may be environmental issue?
    thank you

  • Calling Actions in ABAP Programming.

    Hi,
    Is it possible to call ACTIONS in ABAP programming?
    Regards,

    Hi Pushpa,
    The receiver type is the workflow you want to start, when the event occurs, of corresponding object type.
    I Never had the need to develop at workflow level, but search a little in the foruns and you'll find a lot of info about this. I also advice you to open new threads when asking new questions: It's more appropriate and will bring you more answers
    Kind regards,
    Garcia

  • Calling actions and release compound path (CS4)

    Is there any way to call an action using Illustrator script?
    I can call actions in Photoshop so why is it not working for Illustrator?
    Also, how to script 'release compound path' in Illustrator. Usual method not working...
    Juz0

    Can you NOT just move the compoundPathItem's pathItems to another location before/after? Kind of like this…
    #target illustrator
    var docRef = app.activeDocument;
    with(docRef) {
         with(compoundPathItems[0]) {
              var x = pathItems.length;
              for (var i = x-1; i >= 0; i--) {
                   pathItems[i].move(compoundPathItems[0], ElementPlacement.PLACEBEFORE);

  • Looking for an idea to call action listner or other way to call java code

    Hi
    I'm building some project on JSF2
    I'm Looking for an idea to call action listner or other way to call java code from link(not commandlink)
    and i got a sign out button which i want to invalidate the session when its clicked...
    i cant do a redirect to a jsp... its a "special" link that does the log out , so i cant use the link for the session invalidation
    I dont want to use commandLink cause i need to put it into a form, and i don't to make my code uglier...
    any ideas?
    Im using JSF 2 (new to it)

    Under the constraints you have given the only thing I can think of is some kind of "pretty url" technique combined with JSF. Google can help you out. (Although that might be overkill for what you need.)
    Other than that I think you are looking at straight Java or JSP solutions that do not involve JSF.

  • Is there any way to call 'Action' in web.xml ?

    Dear All,
    My requirement is like, in my Deployement descriptior (web.xml) I would like to call "action" instead of calling welcome page(*.jsp).
    Iam using JBOSS with Jetty5.0 Servlet Container.Is there any way to call action in my deployment descriptor?
    Thanx in advance

    You can, but you have change your server configuration file. I am using Sun App server where we have a default-web.xml file in the config directory where it specifies which default file will be loaded, instead of calling the welcome.jsp. In Sun App server there is a parameter called <welcome-file-list> where you can specifiy which one to be loaded. I strongly believe there must be something like that in JBoss. Check out all the xml files in the JBoss config directory where you can find a solution to it.

  • Application specific button on FPM toolbar to call action triggered in view

    Hello,
    In the content area of my FPM is an ALV with some buttons, e.g. clicking one of the button opens up certain ALV column for editing (for simplicity, I omit the details besides simply enable the columns).
    With FPM, I want the button to be placed in the toolbar as a application specific button. How do I achieve the same functionality e.g. from PROCESS_EVENT method calling an action (to open up certain ALV column for editing) via the application specific button placed on the toolbar communicating with the action/method found in the view controller ? Thank you.
    Regards
    Kir Chern

    Hi Arvind,
    I tried as follows :
    - Create an event in the component controller, say 'MA'
    - Within PROCESS_EVENT, raise the event as follows :
      data : lo_fpm type ref to if_fpm,
             lo_event type ref to cl_fpm_event.
      create object lo_event
         exporting
            iv_event_id = 'MA'.
       lo_fpm = cl_fpm_factory=>get_instance( ).
       lo_fpm->raise_event( io_event = lo_event ).
    - In the view controller, create an event handler which subscribe to the event, MA of the component controller.
    However, the code in the event handler is never executed despite the event being raised. Not sure how FPM event flow works here.
    Can anyone advise ? Thank you.
    Regards
    Kir Chern

  • SMP 3.0 - OpenUI AndroidComponent - Call action in agentry

    Hi All,
    I have a customized WorkManager 6.1 where I added an extra screenset to test the openUI functionality.
    The screen is displayed correctly but from the android component I can't call the method 'executeAgentryAction(String name)'.
    It returns the ActionEnableType.NoOperation. (The name used for the action is copied from the customized application action, so a type is not in question).
    What do I wrong?
    By the way, the method 'getExtensionString' is called, so there is communication between agentry client en android openUi component.
    The following Android(java) code is used:
    package com.sap.mobile.platform.client.openui.extensions;
    import android.content.Context;
    import android.view.LayoutInflater;
    import android.view.View;
    import android.view.View.OnClickListener;
    import android.widget.Button;
    import com.sap.mobile.platform.client.openui.adapters.ButtonDisplayAdapter;
    import com.sap.mobile.platform.client.openui.models.ButtonDisplayModel;
    import com.sap.mobile.platform.core.openui.ActionEnableType;
    import com.sap.mobile.platform.core.openui.ActionResult;
    import com.syclo.agentry.client.android.R;
    public class Hoofdzekering extends ButtonDisplayAdapter implements OnClickListener {
      ButtonDisplayModel _model;
      Context _context;
      View _view;
      String retString;
      * (non-Javadoc)
      * @see
      * com.sap.mobile.platform.client.openui.adapters.StringDisplayAdapter#initialize(com.sap.mobile.platform.client
      * .openui.models.StringDisplayModel, android.content.Context)
      @Override
      public void initialize(ButtonDisplayModel model, Context context) {
      _model = model;
      _context = context;
      @Override
      public View getView() {
      LayoutInflater inflater = (LayoutInflater) _context.getSystemService( Context.LAYOUT_INFLATER_SERVICE );
      _view = inflater.inflate(R.layout.hoofdzekering, null);
      // Add click event to buttons
      Button button = (Button) _view.findViewById(R.id.button1);
      if (button != null) {
      button.setOnClickListener(this);
      button = (Button) _view.findViewById(R.id.button2);
      if (button != null) {
      button.setOnClickListener(this);
      button = (Button) _view.findViewById(R.id.button3);
      if (button != null) {
      button.setOnClickListener(this);
      return _view;
      @Override
      public void onClick(View v) {
      retString = null;
      int id = v.getId();
      if (id == R.id.button1) {
      retString = new String("Storing coupes");
      else
      if (id == R.id.button2) {
      retString = new String("Hoofdzekering");
      else
      if (id == R.id.button3) {
      retString = new String("Storing tot Coupes");
      ActionEnableType aet = _model.getAgentryActionEnableState("DefectOpenUIHoofdzekeringClicked");                                                         
      if (aet.name().equalsIgnoreCase(ActionEnableType.ActionEnable.name()))
      ActionResult ar = _model.executeAgentryAction("DefectOpenUIHoofdzekeringClicked");
        // Method triggered from agentry when asking for values! (Reading values).
      @Override
        public String getExtensionString(String key)  {
            if (key == "ClickedButton") {
                return retString;
            return "";

    Hi Bill,
    Thanks for explaining.
    As I said in my question, it couldn't be a typo in the action name because I copied it. Tried several different options but it keeps with the message  'ActionEnableType.NoOperation'.
    I thought let's create an additional 'new' action with a simple name (So I have 2 actions for the openUI field). When I implemented and tested it suddenly both actions worked. Don't ask me why because I don't know.
    Regards,
    Patricht Willems

  • Not able to call action of a button

    Hi All
    RIght now i am facing a very strange issue.
    In my applictaion if on my page i drop a buttion and add action for that button.
    If i add a SOP(System.out.println()) in that action i am able to see that in my back end means action is called. But on one specific page when i add a button and add action its not working.
    I am not able to see the SOP on a specific page means action is not called.
    Any idea why button on that specifci page is not called ?
    Thanks in advance,
    Vikas

    Which page?
    Which jdev version?
    Which UI technology you are using?
    What's the difference to the other pages?
    How do you get to the page in question?
    Timo

  • Calling action listener for a BUTTON component in java bean page

    Hi,
    I have made it like this.
    public void handleButtonPressed(ActionEvent event){
    System.out.println("success!!!!!");
    //code for calling actionlistener
    FacesContext fctx = FacesContext.getCurrentInstance();
    ELContext elctx = fctx.getELContext();
    Application application = fctx.getApplication();
    ExpressionFactory exprFactory = application.getExpressionFactory();
    MethodExpression methodExpr = null;
    methodExpr = exprFactory.createMethodExpression(elctx, "#{exbean.handleButtonPressed}",null,new Class[] { ActionEvent.class });
    MethodExpressionActionListener actionListener = null;
    actionListener = new MethodExpressionActionListener(methodExpr);
    button.addActionListener(actionListener);
    Even after making the listener Function as Void wHen i click the button i m getting the error saying."ARGUMENTS MISMATCH,ADF_FACES60097"??
    can you help me out?
    and in the msg log i m getting this
    "SkinFactoryImpl> <getSkin> Cannot find a skin that matches family portal and version v1.1. We will use the skin portal.desktop.
    <MethodExpressionActionListener> <processAction> Received 'javax.el.PropertyNotFoundException' when invoking action listener '#{exbean.handleButtonPressed}' for component 'null'
    <MethodExpressionActionListener> <processAction> javax.el.PropertyNotFoundException: Target Unreachable, identifier 'custombean' resolved to null"
    I Have tried with this giving Void TYPE as an argument
    methodExpr = exprFactory.createMethodExpression(elctx, "#{exbean.handleButtonPressed},Void.TYPE,new Class[] { ActionEvent.class });
    I M getting the same error.
    Edited by: chaya on Dec 22, 2011 2:47 PM

    yeah but i m creating button itself dynamically by java code....
    //code
    UIComponent button;
    button = findComponentInRoot("cb1");
    RichPanelGroupLayout pgl;
    pgl = (RichPanelGroupLayout)button.getParent();
    List<UIComponent> children;
    children = pgl.getChildren();
    RichPanelGroupLayout pgll;
    pgll = new RichPanelGroupLayout();
    RichInputText it;
    it = new RichInputText();
    it.setLabel("New textbox " + (children.size()));
    RichCommandButton but = new RichCommandButton();
    but.setPartialSubmit(true);
    but.setText("Delete");
    /*calling actionevent*/
    FacesContext fctx = FacesContext.getCurrentInstance();
    ELContext elctx = fctx.getELContext();
    Application application = fctx.getApplication();
    ExpressionFactory exprFactory = application.getExpressionFactory();
    MethodExpression methodExpr = null;
    methodExpr = exprFactory.createMethodExpression( elctx,"#{inbean.actionPerformed}",null, new Class[] {ActionEvent.class});
    MethodExpressionActionListener actionListener = null;
    actionListener = new MethodExpressionActionListener(methodExpr);
    but.addActionListener(actionListener);
    /*end of call*/
    children.add(pgll);
    children.add(it);
    children.add(but);
    AdfFacesContext.getCurrentInstance().addPartialTarget(pgl);
    //code to call method
    public void actionPerformed(ActionEvent event) {
    System.out.println("entered sec bean");
    return " ";}
    this way i m trying to create a button programatically and tryin to add actionlistener which is not working.
    the actionlistener is throwing error.... with the line
    methodExpr = exprFactory.createMethodExpression( elctx,"#{inbean.actionPerformed}",null, new Class[] {ActionEvent.class});

  • Manually call action servlet from JSP

    Hi All,
    I have a struts form that uploads a file (which works perfect with no problem). IN this form i have a <html:submit> button.
    My problem is, if I have a field say Employer field; and i would like to search the employer address as soon as the focus leaves the employer text field and display it in the same form. I wrote a javascript onchange="javascript:getEmpaddress(this)"my javascript is:
    function getEmpaddress(objForm) {
         document.objForm.action = "/searchForm";
         document.objForm.submit();
    return true;
    }this form is not submitting... anyone having a clue on this?
    PS: for the the upload part, i have written seperate action & form
    for the employer search i worte seperate action & form
    and registered them both in my struts config file
    Regards
    smallpost

    You can call the servlet via RequestDispatcher (include or forward method):
    RequestDispatcher dispatcher=getServletContext().getRequestDispatcher("/servlet/ServletName");
    dispatcher.include(request,response);In the request you can store the data with setAttribute methode.
    And in the servlet you can get this data via request.getAttribute methode.
    Regards,
    Geri

  • Calling Action listener in Custom component

    Hello,
    I am currently developing my own component containing an hyper-link and I am stuck with the Renderer. What should I put in the href of my "a" tag (<a href="???">) in order to call an Action listener ? I would like my renderer to do something similar to <h:commandLink actionListener="#{myBean.myActionListener}".
    Could you help me?
    Gerald.</a>

    Hello,
    Did you achieve this??? I'm also planing to put very similar to your thought. If you have a solution on your requirement, pls mail me to [email protected]
    Thanks in Advance.
    regards,
    Ram

  • Can we use call method or call action in dynpro.

    hi all,
    In the view of a web-dynpro, can we call one action inside another action..?
    or can we call a method inside an action..
    if so plz help...
    thanks in advance,
    jithin.

    Hi Jithin,
    Suggest you that, you keep your logic in a method which you are using for create(event).
    the same method you can call in modifyview so that after you create again the modifyview will get trigger and then it fills your dropdown.
    or
    after create functionality is done then call a method to fill the dropdown.
    try to modularize your code using methods then you can
    re-use it.
    still you need any clarificatinos let me know.
    Regards,
    Mahesh

  • Calling action on navigation bean skips setters on form bb

    Hi,
    I'm new to these forums so please bare me out :)
    I'm trying to always save the current form on a navigation event. Using facelets, so the navigation is general over all pages. I'm using t:panelNavigation2 for this (tomahawk) with commandNavigation2 items. The current form is always defined in an ui:define block.
    I'm trying to always call the save action on the current page before handling navigation. The way I was thinking is this:
    I put an updateActionListener in all the commandNavigation2 tags, which set the next navigation-rule outcome on my HistoryManager. Then in another manager I call an action handleNavigation, which sorts out the current bean and calls save on it. The problem is that at the time handleNavigation is called, the properties i defined in my bean are not set yet. Normally when I call some sort of action on the pages backing bean, all properties are set first.
    Is there some way to force this? To make myself a little clearer (I hope) here's my code:
    public class ApplicationManager {
       private HistoryManager historyManager;
       private String nextBean;
       public String handleNavigation() throws BeanNotFoundException {
          Map requestMap = FacesUtils.getExternalContext().getRequestMap();
          FormBaseBb bean = (FormBaseBb) requestMap.get(historyManager.getCurrentForm());
          bean.save();
          historyManager.setCurrentForm(nextBean);
          return nextBean.substring(0, nextBean.length() - 2);
       public void setNextBean(String nextBean) {
          this.nextBean = nextBean;
       public HistoryManager getHistoryManager() {
          return historyManager;
       public void setHistoryManager(HistoryManager historyManager) {
          this.historyManager = historyManager;
    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
         xmlns:ui="http://java.sun.com/jsf/facelets"
         xmlns:f="http://java.sun.com/jsf/core"
         xmlns:h="http://java.sun.com/jsf/html"
         xmlns:t="http://myfaces.apache.org/tomahawk">
    <f:loadBundle var="general_msg"
         basename="nl.tempel.tipharma.logic.jsf.resource.general_messages" />
    <f:loadBundle var="admin_msg"
         basename="nl.tempel.tipharma.logic.jsf.resource.admin_messages" />
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title><ui:insert name="window_title">TI Pharma</ui:insert></title>
    <style type="text/css" media="all">
              /* <![CDATA[ */
                   @import url(css/layout_common.css);
                   @import url(css/layout_complex.css);
                   @import url(css/navigation_left.css);
                   @import url(css/content.css);
              /* ]]> */
         </style>
    </head>
    <body>
    <div id="master_container"><h:form id="f">
         <div id="master_header">&#xA0;</div>
         <div id="top_navigation"><ui:insert name="top_navigation">
              <div class="top_link_active">Form</div>
              <div class="top_link_inactive"><h:commandLink
                   action="information" styleClass="top_link" value="Information" /></div>
              <div class="top_link_inactive"><h:commandLink
                   action="#{authenticationBb.logout}" styleClass="top_link"
                   value="Log Out" /></div>
         </ui:insert></div>
         <div id="nav_line">&#xA0;</div>
         <div id="main_wrapper">
         <div id="navigation_wrapper"><t:panelNavigation2
              id="panel_navigation" layout="list" styleClass="navigation_list"
              itemClass="item" activeItemClass="active_item"
              openItemClass="open_item">
              <t:commandNavigation2 action="#{applicationManager.handleNavigation}"
                   activeOnViewIds="/form_general.xhtml" value="1. General data"
                   immediate="false">
                   <h:outputText value="1. General data" />
                   <t:updateActionListener property="#{applicationManager.nextBean}"
                        value="#{formGeneralBb.beanName}" />
              </t:commandNavigation2>
              <t:commandNavigation2 action="#{applicationManager.handleNavigation}"
                   value="2. Project content" immediate="false">
                   <h:outputText value="2. Project content" />
                   <t:updateActionListener property="#{applicationManager.nextBean}"
                        value="#{formSummaryAndGoalsBb.beanName}" />
                   <t:commandNavigation2 action="#{applicationManager.handleNavigation}"
                        activeOnViewIds="/form_summary_and_goals.xhtml"
                        value="a. Summary and goals" immediate="false">
                        <h:outputText value="a. Summary and goals" />
                        <t:updateActionListener property="#{applicationManager.nextBean}"
                             value="#{formSummaryAndGoalsBb.beanName}" />
                   </t:commandNavigation2>
                   <t:commandNavigation2 action="#{applicationManager.handleNavigation}"
                        activeOnViewIds="/form_milestones.xhtml" value="b. Milestones"
                        immediate="false">
                        <h:outputText value="b. Milestones" />
                        <t:updateActionListener property="#{applicationManager.nextBean}"
                             value="#{formMilestonesBb.beanName}" />
                   </t:commandNavigation2>
                   <t:commandNavigation2 action="#{applicationManager.handleNavigation}"
                        activeOnViewIds="/form_characterization.xhtml"
                        value="c. Characterization" immediate="false">
                        <h:outputText value="c. Characterization" />
                        <t:updateActionListener property="#{applicationManager.nextBean}"
                             value="#{formCharacterizationBb.beanName}" />
                   </t:commandNavigation2>
                   <t:commandNavigation2 action="#{applicationManager.handleNavigation}"
                        activeOnViewIds="/form_publications.xhtml" value="d. Publications"
                        immediate="false">
                        <h:outputText value="d. Publications" />
                        <t:updateActionListener property="#{applicationManager.nextBean}"
                             value="#{formPublicationsBb.beanName}" />
                   </t:commandNavigation2>
              </t:commandNavigation2>
              <t:commandNavigation2 action="#{applicationManager.handleNavigation}"
                   value="3. Project budget" immediate="false">
                   <h:outputText value="3. Project budget" />
                   <t:updateActionListener property="#{applicationManager.nextBean}"
                        value="#{formCostsResearchersBb.beanName}" />
                   <t:commandNavigation2 action="#{applicationManager.handleNavigation}"
                        activeOnViewIds="/form_costs_researchers.xhtml"
                        value="a. Costs researchers" immediate="false">
                        <h:outputText value="a. Costs researchers" />
                        <t:updateActionListener property="#{applicationManager.nextBean}"
                             value="#{formCostsResearchersBb.beanName}" />
                   </t:commandNavigation2>
                   <t:commandNavigation2 action="#{applicationManager.handleNavigation}"
                        activeOnViewIds="/form_costs_materials.xhtml"
                        value="b. Costs materials & Supplies" immediate="false">
                        <h:outputText value="b. Costs materials & Supplies" />
                        <t:updateActionListener property="#{applicationManager.nextBean}"
                             value="#{formCostsMaterialsBb.beanName}" />
                   </t:commandNavigation2>
                   <t:commandNavigation2 action="#{applicationManager.handleNavigation}"
                        activeOnViewIds="/form_investments.xhtml" value="c. Investments"
                        immediate="false">
                        <h:outputText value="c. Investments" />
                        <t:updateActionListener property="#{applicationManager.nextBean}"
                             value="#{formInvestmentsBb.beanName}" />
                   </t:commandNavigation2>
                   <t:commandNavigation2 action="#{applicationManager.handleNavigation}"
                        activeOnViewIds="form_partner_contribution.xhtml"
                        value="d. Partner contribution" immediate="false">
                        <h:outputText value="d. Partner contribution" />
                        <t:updateActionListener property="#{applicationManager.nextBean}"
                             value="#{formPartnerContributionBb.beanName}" />
                   </t:commandNavigation2>
                   <t:commandNavigation2 action="#{applicationManager.handleNavigation}"
                        activeOnViewIds="/form_external_grants.xhtml"
                        value="e. External grants" immediate="false">
                        <h:outputText value="e. External grants" />
                        <t:updateActionListener property="#{applicationManager.nextBean}"
                             value="#{formExternalGrantsBb.beanName}" />
                   </t:commandNavigation2>
              </t:commandNavigation2>
              <t:commandNavigation2 action="#{applicationManager.handleNavigation}"
                   activeOnViewIds="/form_submission.xhtml" value="4. Submission"
                   immediate="false">
                   <h:outputText value="4. Submission" />
                   <t:updateActionListener property="#{applicationManager.nextBean}"
                        value="#{formSubmissionBb.beanName}" />
              </t:commandNavigation2>
         </t:panelNavigation2></div>
         <div id="content_wrapper">
         <div id="page_title"><ui:insert name="page_title">INSERT PAGE TITLE</ui:insert>
         </div>
         <div id="page_content"><ui:insert name="page_content">INSERT CONTENT</ui:insert>
         </div>
         <div id="page_footer"><ui:insert name="page_footer" /></div>
         </div>
         </div>
    </h:form></div>
    </body>
    </html>And then i have some form where i call properties in some form backing bean. They just aren't set before this action gets called.
    The only thing I can think of as a workaround right now is to define the navigation in every page and implement a custom EL function to handle navigation. This just seems like much of a hassle and I can't imagine there's not another soultion to this problem.
    Any help would be greatly appreciated! Thanks in advance.
    Regards,
    Jan

    After some further investigation I think this is a definite bug. All works fine when I use a commandButton or commandLink to accomplish the same. When I debug this in eclipse i notice that in the apply model values phase properties get set to null, although the form fields have some data in them.
    It looks like the apply model values phase or even the apply request values phase is completely skipped.
    Message was edited by:
    jteb

  • Except. /BOBF/CX_FRW_FATAL while calling action of standard object

    We are getting following dump when we are calling an action of standard business object.
    This dump comes only in background execution and we are calling this action in Asynchronous RFC.
    Details:
    Runtime Errors         UNCAUGHT_EXCEPTION
    Except.                /BOBF/CX_FRW_FATAL
    ABAP Program           /BOBF/CL_FRW==================CP
    Application Component  AP-RC-BOF-RNT
    Details of error:
    While executing action "DELETE_TEAM_MEMBER" of
    node "MP_TEAM" of business object "/CPD/PWS_BO_MP" an
    exception has occurred. The method "EXECUTE" of class
    "/CPD/CL_PWS_MP_A_TEAM" didn't call
    "END_MODIFY" and the subsequent framework call of "END_MODIFY"
    led to the exception chain below. Root cause may be a lock situation or...
    Please open a ticket to the responsible component
    "CA-CPD-WS"!
    I have checked few blogs and threads but could not get much help.
    Has anyone faced this issue before?

    Hi Mrugesh,
    In most of the cases the root cause for this dump is a locking conflict inside an BO implementation class (action, determination). In your specific case it seems that the action implementation tries to modify a node instance that is currently locked in another session.
    As proposed in the application information of the dump, I recommend to open a OSS message on the corresponding application component CA-CPD-WS.
    Best regards,
    Carsten

Maybe you are looking for

  • Can you know about FCKeditor.....please let me know (some what urgent)

    hi all Goodmorning .... Here iam struggiling with a problem..... Did any know about FCK editor....If yes please let me know....i have a lot confusion in this....please it is very urgent for me to work on that.... can any body please help to get out f

  • Problem with calculated attribute

    I have created a calculated attribute on an Entity that derives its value from two persistent attributes. I am only interested in displaying the calculated attribute and not the attributes it is derived from. If I put the calculated attribute in a Vi

  • How do I get the old search toolbar back?

    Yesterday, I'm assuming Firefox updated without asking or telling me, and now the way that my search toolbar functions is totally different. I don't like it. I want to be able to use the old search bar, where you can click the arrow by the magnifying

  • Loading images using TOAD

    Hi, can someone help me? I'd like to create a simple database that contains images. I've already used the Oracle DB tutorial, but at the moment it's difficult for me to load an image correctly using TOAD. Can someone give me a simple code (mine does'

  • PO printing in two languages Chinese & English

    Hello everybody: Previously, we print out purchase orders in Chinese, and the communication language in all vendor master datas are all maintain as ZH - Chinese. But from now on, we want chinese and english texts both should be printed out in the sam