Can one Action from Jpf call another method/Action in other jpf   ?

hi ,
"can one Action from Jpf call another method/Action in different jpf "
we can call other jpf's begin from one jpf , but can we call method of other Jpf from different jpf .
i m getting error when i m trying to do this .
No module configuration registered for /pageFl
dule path /pageFlowControllers/Controller)

hi,
write
carmodel(null) in populateCar() action.
means
public void onActionpopulateCar(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
    //@@begin onActionpopulateCar(ServerEvent)
     onActioncarmodel(null);
    //@@end
Regards
Trilochan

Similar Messages

  • Can one upgrade from CS5.5 to CS6 as a Retail Product or does one need to do it as a Volume License?

    Can one upgrade from CS5.5 to CS6 as a Retail Product or does one need to do it as a Volume License?

    Well, depends on what your CS5.5 actually is. If it came as a volume license, the upgrade terms would be determined by the specifics of the volume licensing model chosen... Anyway, that's way too specific. Contact sales support by phone or web chat to haggle things out.
    Mylenium

  • Calling another method in the class from within the body of a method Im wri

    Hello out there.
    I have a question. I keep getting an error that reads as follows:
    1 error found:
    File: /Users/matthieubell/Academia/University of Waterloo/CS 125/L06/CreditCard.java [line: 80]
    Error: double cannot be dereferenced
    I think it is occuring because I am trying to call a method on an instance variable, which is not an object. But how do call a method I have already written, on another method I am writing in the general sense. I could make a particular object, but Im not shure that would get me the same result. I want to be able to call the method calcMinPayment on the instance variable currentBalance to wirte the method makePayment.
    I have a class CreditCard
    with the instance variables "private double currentBalance = 0; "
    public double calcMinPayment()
    // Add code here
    double minimumPayment;
    if (currentBalance < 50)
    minimumPayment = currentBalance/10;
    else
    minimumPayment = 50;
    return minimumPayment; // Replace this statement
    * This method will decrease the current balance on the credit card if
    * this payment meets or exceeds the minimum payment amount.
    * pre: paymentAmt > 0
    * post: The current balance should be decreased by paymentAmt if
    * paymentAmt >= the minimum payment amount. Otherwise, the payment
    * will not be recorded and an appropriate error message should be
    * displayed.
    public void makePayment(double paymentAmt)
    // Add code here
    double minimumPaymentAmount;
    minimumPaymentAmount = currentBalance.calcMinPayment();
    if (paymentAmt < minimumPaymentAmount)
    System.out.println("Sorry, but your payment must exceed the minimum payment amount.");
    System.out.println("This payment has not been recorded, please try again.");
    else
    this.currentBalance = currentBalance - paymentAmt;
    thanks for youre help
    -Matthieu

    'calcMinPayment' takes no arguments, uses a member variable (currentBalance) to compute a local variable 'minimumPayment' which it returns, ie, sends back to the caller. So you can call 'calcMinPayment' at any time.
    minimumPaymentAmount = calcMinPayment();

  • How can I use my array in another method.... Or better yet, what's wrong?

    I guess I'll show you what I am trying to do rather and then explain it
    public class arraycalc
    int[] dog;
    public void arraycalc()
    dog = new int[2];
    public void setSize(int size)
    dog[1] = size;
    public int getSize()
    return dog[1];
    This gives me a null pointer exception...
    How can I use my array from other methods?

    You have to make the array static. :)
    Although I must admit, this is rather bad usage. What you want to do is use an object constructor to make this class an object type, and then create the array in your main class using this type, and then call the methods from this class to modify your array. Creating the array inside the other method leads to a whole bunch of other stuff that's ... well, bad. :)
    Another thing: Because you're creating your array inside this class and you want to call your array from another class, you need to make the array static; to make it static, you must make your methods static. And according to my most ingenious computer science teacher, STATIC METHODS SUCK. :D
    So, if you want to stick with your layout, it would look like:
    public class arraycalc
         static int[] dog;
         public static void arraycalc()
              dog = new int[2];
         public static void setSize(int size)
              dog[1] = size;
         public static int getSize()
              return dog[1];
    }But I must warn you, that is absolutely horrible code, and you shouldn't use it. In fact, I don't even know why I posted it.
    You should definitely read up on OOP, as this problem would be better solved by creating a new object type.

  • Firefox cannot load only one website that I use often. It suddenly froze while I was on it. Now I can load only when I use another computer. All other websites load fine.

    No further detail.

    Maybe it's a blessing in disguise. This site is obviously a scam since it offers a 280% return on your capital in only 40 days. If that was true, the media would be alight with excitement, but if you do a search for investment reviews, you'll only come across a couple of very obscure sites which purport to show that the plan is 'real'.
    Sounds like another [http://en.wikipedia.org/wiki/Bernard_Madoff Bernard Madoff] scam to me. But at least he was realistic in offering only a 12% return on your invested capital.
    To troubleshoot your problem though, try running Firefox in [[Safe Mode]]. If it functions properly in that configuration, then one of your add-ons is the culprit.

  • How can one scape from the edit window of an appointment without saving changes?

    I did move accidentally an appointment with invitees and it opened the edit windows, but I can´t escape from it without sending uselessly the changes to invitees !

    mardem,
    Try iCal>Edit>Undo.

  • How to call a method of an other view in the current view

    Hi Guys,
    I have 2 views in my Project: IPrivateValidateIncidentView and IPrivateRoadMapView.  Now, a button in the IPrivateRoadMapView must call a method in the IPrivateValidateIncidentView.  I cannot seem to figgure this out.  I know that I will probably need to arrange things centrally in my Component COntroller somehow.
    I have tried to see what methods I can Invoke on IPrivateValidateIncidentView from within the Controller to see if I can call the method OnActionDoneValidate() from there, but I can only seem to get a constant with this methods name: IPrivateValidateIncidentView.WD_EVENTHANDLER_ON_ACTION_DONE_VALIDATION;
    Please help.
    Christiaan

    Hi,
    You are correct, for your requirement you need to arrange the things centrally that is in Component Controller. As in above reply you need to Create your context in Component controller and then map them to both the views. So data will be available to both the views and finally you create a method in component controller and call that method from second view. So the data changes made in controller will be reflected on First View as they have context mapping.
    Regards
    Raghu

  • Session attribute is lost while going from one action to other action

    Hi All
    I am working on struts application. The problem that I am facing is my session attribute is losing. I am doing following steps.
    1. Setting some values in ActionForm (note this action form is in session scope for each action using it) from homepage.
    2. then submit the form and go to searchation.
    3. perform some task and set some values on actionform.
    4. click a link and get back to homepage using homeaction.
    5.change on value on homepage and again perform step -1.
    till step 4 value is retained fine but as soon as we perform 5th step the values got lost.
    please if anyone can expalin why is this happening ( I am using get method on homepage.jsp)

    Hey if someone can help me

  • Can one upgrade from LP9 to LPX or is it a complete new purchase? Does it load as a separate program or does it integrate into LP9?

    It's still cheap at the price but one used to be able to purchase an upgrade. What happens now?
    Does the download integrate with LP9 or is it a complete new program/

    There are no upgrades.. or discounts...
    Logic Pro X is considered a separate program (as are all App Store sold programs these days)  to LP9 and so there is no discount if you own an earlier version of Logic Pro
    Note: The cost of LPX is actually much less than it used to cost to upgrade from say, LP8 to LP9...  so while there is no upgrade pricing, the new version costs less than it would have cost to upgrade from a previous version, in the past anyhow... and by quite some degree.
    Example: To upgrade from LP8 to LP9 cost $499 originally.... whereas the full version of LPX only costs $199
    LPX is kept as a separate program on your Mac  so if you have LP9 already installed..  you can continue to run and work with LP9 if you wish. (for creating and working with projects for example, that contained 32bit AU plugins which LPX no longer supports)  
    LPX and LP9 also do share some content between them... but LPX comes with a lot of new content that is not available in LP9.
    Note: LPX can import projects created/saved in LP9 but LP9 cannot import projects created/saved in LPX.

  • Can the ipad mini make calls to a mobile phone other than a iphone.

    Can the ipad mini be used to make calls to any mobile phone.

    The iPad Mini has no phone capabilities.

  • Can one 3rd Party add-in hide tabs added by other 3rd Party add-ins?

    I have a C++/COM add-in that produces a Ribbon with a subset of the standard Word controls. I would like this ribbon to contain only the controls I have placed there, i.e. not to contain tabs inserted by other 3rd party add-ins (e.g. Adobe PDFMaker).
    I can see how the user can remove these tabs using the Customize Ribbon functionality, but can't find a programmatic way to exclude the tabs from my own ribbon (modifying the XML to include <ribbon startFromScratch="true"> seems to affect only
    the built-in tabs). To be clear, I do not want to disable the other add-ins, only to exclude their tabs and menu items from my custom Ribbon. Can this be done?

    Hello,
    No. The Fluent UI (Ribbon UI) extensibility model doesn't provide anything for that. But you can try to unload other add-ins at runtime setting the
    Connect property of other third-party add-ins to false. The Connect property returns True if
    the add-in is active; it returns False if the add-in is inactive. An active add-in is registered and connected; an inactive add-in is registered but not currently connected.
    Or set an appropriate key in the windows registry to prevent other add-ins from loading, see
    Registry Entries for Application-Level Add-Ins for more information.
    You can read more about the Ribbon in the following series of articles in MSDN:
    Customizing the 2007 Office Fluent Ribbon for Developers (Part 1 of 3)
    Customizing the 2007 Office Fluent Ribbon for Developers (Part 2 of 3)
    Customizing the 2007 Office Fluent Ribbon for Developers (Part 3 of 3)

  • Is knowing of Class Name, which called current method, possible?

    Hallo everyone,
    My method is called from inside some method of some class. Can I know which class called my method.
    In other words I would like to know is that possible to have a name of class from which my current method is called? It's sometrhing like I need an access to the call stack.
    thanks!

    You can do the same thing before 1.4 as well:
          Throwable t;
          PrintStream ps;
          PrintWriter pw;
          String str;
          StringBuffer sb;
          StringWriter st;
          t = new Throwable();
          st = new StringWriter();
          pw = new PrintWriter(st);
          t.printStackTrace(pw);
          sb = st.getBuffer();
          str = sb.toString();You now have the stack as a String in the variable str.
    The problem is that you have to parse the String to separate methods from classes and so on. And different platform may produce slightly different string representations of the stack.
    So, it is easier in Java 1.4

  • How to call a method from a separate class using IBAction

    I can't work out how to call a method form an external class with IBAction.
    //This Works 1
    -(void)addCard:(MyiCards *)card{
    [card insertNewCardIntoDatabase];
    //This works 2
    -(IBAction) addNewCard:(id)sender{
    //stuff -- I want to call [card insertNewCardIntoDatabase];
    I have tried tons of stuff here, but nothing is working. When i build this I get no errors or warnings, but trying to call the method in anyway other that what is there, i get errors.

    Can you explain more about what you are trying to do? IBAction is just a 'hint' to Interface Builder. It's just a void method return. And it's unclear what method is where from your code snippet below. is addNewCard: in another class? And if so, does it have a reference to the 'card' object you are sending the 'insertNewCardIntoDatabase' message? Some more details would help.
    Cheers,
    George

  • How to call  a method of one view in other view

    Hi
      could any one suggest "how to call  a method of one view in other view "
    thanks
    kaushik

    Hi Kausic,
    Its not possible to call a method from view to View.
    Since view is private entity we can not pass the data directly.
    I suggest you to declare the method in Component/Custom controller and call.
    the code is,
    wdThis.wdGet<Component/Custom Name>Controller().<methodName>();
    Regards,
    <b>Ramganesan K</b>

  • How  can call a method incide  the method in jsp

    I wrote some statement inside the scriptlet(<% %>)
    then i want call another method ,that one inside the same script let..please replay...

    please help How can write a function inside the JSP

Maybe you are looking for

  • ITunes Library: Keep 2 external HDDs in sync with same music files

    I am trying to run iTunes with 2 external HDDs, keeping in sync with each other. One large one for my desktop and a second portable one to take away from home when I need to travel. What is the best way to do this? What I have done so far is changing

  • How to stop a rman backup in progress?

    OS: AIX 5.3 L and Oracle 10g R2 I got panic when my scheduled rman backup (incremental level 0 plus archivelog) run too long and I want to stop the process. I could not find the rman doc mentioning how to use any rman command to do that, instead of j

  • View last published swf from flash authoring envoirnment

    hi guys It might sound silly but how about having a shorcut/tool in flash IDE to view recently published swf file basicaly i m not updating content outside flash i.e. XML,images and I dont want to use windows explorer to run swf file and check the up

  • DBMS_JOB Jobs Not Starting in oracle 9i

    i have a job in oracle 9i for windows 2003 standar edition; however it don't have error but dont execute automatic but manual execute is good; DECLARE X NUMBER; BEGIN SYS.DBMS_JOB.SUBMIT ( job => X ,what => 'PU_P_DIARIO;' ,next_date => to_date('11/04

  • Problem in order

    experts help needed i am doing backorder processing. i have 4 items in the order. for all the items the qty is showing correctly but for the 4th item it is wrong. THE 4th item has 10 qty ordered. I had run v_v2. and checked that the order 4th item qu