Can previously entered data be shown again when user executes the wda app?

hi,
like in an  abap code in se80 ...where in user comes to know the previously entered data on the screen" by pressing backspace"...is it possible to have the same functionality in web dynpro abap?..
thanks and regards,
sahai.s

Sashi,
There is no standard functionality to achieve this, but we can achieve manually, if you store the all screen element values in a node, and bind the elements with that attributes, then automatically elements will contain the same values. i think this is the only one way.
Kris,
I think life span property will be used for memory consumption. If we select when visible...the memory takes when visible, if we select framework cotrolled, until we close the application memory for view will takes.
Regards
Srinivas

Similar Messages

  • How to show the data in table format when user click the Graph

    Hi,
    I have a graph in my report. If user click the graph is there a way to show
    the data behind it?
    Thanks.
    Regards,
    Jun

    Hi All,
    Any idea how to do this?
    Thanks.
    Jun

  • How to display previously entered data in TableModel

    This post is continued from the last one. I was having problem displaying previously entered data into TableModel. someone suggested whether my TableModel is persistent.
    I am sorry to say I am not sure how to make TableModel persistent. Can someone tell me what to do.
    Following is my implementation of TableModel:
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.table.*;
    import java.util.*;
    import java.io.*;
    public class UsersModel implements TableModel {
    public static final String[] colNames ={
    "Usernmae",
    "Location"
    public static final Class[] colClasses ={
    String.class,
    String.class,
    public static final int
    USERNAME_COL = 0,
    LOCATION_COL = 1;
    //used to hold a list of TableModelListeners
    protected java.util.List tableModelListeners = new ArrayList();
    protected java.util.List data = new ArrayList();
    public static void main(String []args){
    new UsersModel();
    }//end main
    public UsersModel(){
    public void add(Users u){
    data.add(u);
    and when I need to add new users, I do it in the following way:
    Users u= new Users(n,l);
                        model.add(u);
                                  table.setModel(model);
    I hope someone can help

    Please post the entire class, this certainly won't compile because it does not implement all the TableModel methods. Also, why not base it off of AbstractTableModel?

  • Can we enter data in any standard table directly through custom form??

    Dear All,
    Can we enter data in any standard table directly through custom form??
    I have create custom form in R.12. I want to insert data in quality standard table directly through custom form. Need experts guideline.
    Awaiting regards,

    Hi,
    Can we enter data in any standard table directly through custom form??
    I have create custom form in R.12. I want to insert data in quality standard table directly through custom form. Need experts guideline.
    Awaiting regards,
    I would not recommend touching the standard tables at all unless you are being guided by the SR. For a record to be in the standard table it should go through series of validations based on the what operation you are performing and some times datas are dependent upon the other tables, and also some times the same records are hit to so many other tables simultaneously.
    Therefore I would not recommend this brother.
    Thanks &
    Best Regards,

  • How can I enter data in an input schedule on a member in the EPM Add-On that is not a base member?

    Hello, all,
    how can I enter data in an input schedule on a member in the EPM Add-On that is not a base member?
    E.g. I want to implement a top-down-planning scenario and I have the following hierarchy:
    Europe
         Germany
         France
         UK
         Spain
         Italy
    How can I enter a value on Europe in an input schedule in order to allocate this value afterwards?
    Thanks in advance and best regards
    Gerd

    Gerd,
    It should be something like below -
    EuropeInput
    Europe
         Germany
         France
         UK
         Spain
         Italy
    EuropeInput shall be kept out of hierarchy and should be a base level member. Users will enter the numbers in this member. In your script logic, you will make use of this member to allocate the data in Bas(Europe) i.e. Germany, France, etc.
    Effectively, after allocation the same data will be rolled up to Europe.
    Many top-down planning would use such work-around as BPC doesn't allow writing to parent node.
    Regards,
    Ashish

  • How can I partition an external hard drive with data in it? When I select the drive, the partition option is grayed out.

    I am having a problem partitioning an external hard drive with data in it. 
    When I select the partition, everything is grayed out.  I can't add a a partition for some reason.  When I asked this question to other people, they told me to select my partition "io" to do it from there.
    As you can see, I can't seem to partition it form there either.  I ran the Verify Disk utility but the volume came out okay.
    Any ideas as to what the problem would be?
    Thanks!
    Luis

    Select the main hard drive entry (topmost one.) Click on the Partition tab. Shrink the existing partition by grabbing the sizing gadget in the bottom right corner and pushing up until you free up enough space for your second partition. Be sure you do not shrink to less than the space currently occupied by your files. Click on the Add[+] button to create a new partition in the free space. Click on the Apply button and wait until the partitioning is completed.

  • While using my Iphone 5, all of a sudden  black and white stripes where on the screen. I have tryed to turn the phone off and on again, but there are only the stripes. I can't use it, and nothing happens when I push the buttons. Can someone help me?

    While using my Iphone 5, all of a sudden  black and white stripes where on the screen. I have tryed to turn the phone off and on again, but there are only the stripes. I can't use it, and nothing happens when I push the buttons. Can someone help me?

    Try resetting your phone, hold the home and sleep/wake button down until the apple symbol comes up, then release. If that doesnt work, you may have damaged your phone and need to take it to an apple genius bar.

  • I don't have any controls ( , edit, delete, etc) on my calander or reminders and can't enter data.

    I don't have any controls (+, edit, delete, etc.) on reminders and calender. I can't enter data.

    Go to Settings>iCloud>Calendar>On. Toggle the setting on and off. Do the same thing for the Reminders app - toggle the setting on and off.

  • Auto filling forms based off of previously entered data.

    Looking for a way to create a feild that will auto fill based on previously entered data.  For example.
    First________
    Middle_______
    Last_________
    Ideally i could take someones names they enter and auto fill a feild for Last, First, Middle or even a Last, First, Middle Initial.
    any thoughts??
    Thanks!

    Played around with this today...been very busy with other work and got this to work for Last, First mi
    // Get the field values, as strings
    var i = this.getField("first").valueAsString;
    var j = this.getField("middle").valueAsString;
    var k = this.getField("last").valueAsString;
    // Set this field's value if both fields are not blank
    // otherwise, set this field to blank
    if (i && j && k) {
         event.value = k + ", " + i + " " + j.slice(0, 1);
    } else {
         event.value = "";
    I am brand new to this and was curious are these "var i , j, and k" just for this field.  Or will these continue to be how I refer to the first , middle and last fields?
    Also, other than just playing around with this, is there another way to learn this stuff?  I find it fascinating.
    all the best

  • In base component when user change the serial number we need to set date time in Extra attribute filed

    HI Team,
    In ibase component when user change the serial number we need to set date time in Extra attribute filed..if we click edit ,User change serial number after save we need to set date time in  Extra Attribute 4 field .
    Component - PRDGENSET
    In this component there is no attributes,so where we need to implement and how to implement please help.
    Thanks
    kalpana

    Hi Abi,
    Thanks for your reply..see i debugged..i have put break point in method SET_S_STRUCT method if press enter in serial number ,debuggeris triggered..in SET_S_STRUCT method value getting serial number..so how to write the logic here...
    In GET_S_STRUCT method iam getting all attributes  but serial number is not filled..So could you please help here what to do..
    in set_S_STRCUT method value iam gettin serial number...in collection wrapper iam geting zrealtions if i open attributes_ref -if i pass Attribute value in run time its getting displayed.so how to write the logic based on serial  number please help some coding.
    Thanks
    kalpana

  • I have created a spreadsheet on numbers for ipad with a list of customers as a drop down menu. How can i make their address appear underneath when i select the customer?

    I have created a spreadsheet on numbers for ipad with a list of customers as a drop down menu. How can i make their address appear underneath when I select the customer?
    iselect the customer?

    Hi bazza,
    We won't be able to put the address from a formula into the same cell that you enter the customer's name. We can put the address in the cell under the customers name.
    First let's take James advice and concatenate the address in the address table.
    Here is the formula in G2
    =CONCATENATE(B2&"
    ",C2&"
    ",D2&"
    ",E2)
    It shows this way because after I clicked on B2 and typed [&"] (no brackets) I typed option-return
    This gives you your new line. Then I typed the closing ". I repeated this for the rest of the address.
    Next we want to bring this to your order sheet. I prefer using the two formulas OFFSET and MATCH instead of VLOOKUP.
    base tells OFFSETwhere to start counting from. Click A1.
    row-offset is for the row. we will use MATCH() -1 to give us the row.
    What MATCH does is give you the row number where something is found and you can specify an exact match. I usually construct the MATCH formula first and then cut and paste it into OFFSET. MATCH looks like this: MATCH(A2,Table 1::A,0). A2 is what we are looking for, Table 1A::A is where we are looking (the entire column A), and 0 means we want an exact match. Can you see it inside the OFFSET formula? Notice that we had to subtract 1 from its result.
    column-offset tells OFFSET which column A=0 so we want 6.
    we ignore "rows", "colomns" we don't need them.
    If this seems like too much, just break it down into small pieces.
    quinn

  • My daughter has and ipod touch with free texting I would like to delete it and open a new app for her with a new number..I deleted the old number and when we downloaded the new app it gave her the same number how can I change text

    My daughter has an ipod touch with free texting, she received an inappropriate mssg and I would like to delete it and download it again to receive a new number. when I download the new app it gives her the same number?  can i do this?

    Have you tried the developer's support web site?  Withut you providing the name of the app makes it very hard for us to give specific recommendations.  The only one that i can thin of is to purchase the app using a diffeent iTunes account.

  • Is there a way to access the passcode previously entered to access a wi-fi network that the MacBook Pro automatically remembers and stores?

    Is there a way to access the passcode previously entered to access a wi-fi network that the MacBook Pro automatically remembers and stores?

    You can view stored passwords in Keychain Access in the utilities folder in Applications.

  • Java API that extracts data form Internet Explorer (when user highlights)

    Hi all,
    Need advice on "How to extract data from Internet explorer when user highlights a word (or paragraph)"?
    Sample code will be greatly appreciated.
    Thanks in advance
    regards
    DIlip

    Hi tolmank ,
    Really appreciated your prompt reply.
    Thanks again
    Regards
    Dilip

  • Hello there - how can I share my iTunes library between two users on the same computer? I put the library in a shared folder between both and have selected this library on both as well, but when I update iTunes with music etc it only appears on one?

    Hello there - how can I share my iTunes library between two users on the same computer? I put the library in a shared folder between both and have selected this library on both as well, but when I update iTunes with music etc it only appears on one?

    Thank you Joe - I tried this but it's only showing a teensy amount of music - the stuff on the second users account as opposed to the giagntic library on the 'main' account. I actually went to a Genius Bar and they said that apple doesn't really want you to share music between accounts - parents don't want to hear their kids music etc. Which seemed strange, but it might be the case sadly   Thanks anyway!

Maybe you are looking for

  • Reports For Payments

    Hi AII We have ImpIemented ECC 6 0 with PS and Investment management  (For CapitaI Investment Projects) ,MM and FICO in our present Project Customer is interested in having a report Purchase order wise Advance payments/Subsequent and Invoice Booking

  • How to see which programs are attached to which desktop?

    I have used the option to attache software programs to different desktops in Mountain Lion.  When I hava not used a specific program in a while and then need to, I cannot always remember which desktop I anchored it to.  I know I can go to the launch

  • How to center a flash content in fullscreen mode

    I tried this for a flash exe file : import flash.display.*; stage.scaleMode = StageScaleMode.SHOW_ALL; stage.displayState = StageDisplayState.FULL_SCREEN; but i get a full black screen. any ideas what i am doing wrong.

  • Problem in length display of the infoobject?

    Good morning Folks, I got an issue with the output length of the infoobject(say - zlmpred - Char(60)). BW Version - 3.5. For this infoobject am using a transfer routine to populate the data from flatfile. Something like this, if TRAN_STRUCTURE-/BIC/Z

  • How do I connect my HP Deskjet 3050 to my portable hotspot on my cell phone?

    I know how to use my hotspot on my cell phone as well as know what the password is to connect to other devices, however, I cannot figure out how to change the password on my HP Deskjet 3050 so it uses that to connect and allow me to print and scan.