Copy from clipboard and paste in Web Dynpro table

Hi
I have a client requirement where the client wants to copy the table from some already existing application and paste the data  directly in web dynpro java table.  It is similiar to copy the data from clipboard and paste it directly in web dynpro table.
I would like to know is it feasible. If yes, please provide some links or guide me on achieving the same.
Thanks
Harsimran

Hi
I think one way you can do it,
  1 . try to export the table dato to excel sheet.(copy and paste to excel)
   2. Importing the excel data to WD table.
  for more details about reading excel data, there is many blog on sdn just check it.
Hope will help you
Thanks

Similar Messages

  • Drag and Drop between Web Dynpro Tables on Cell Basis

    Hi Experts,
    I need to develop a Drag and Drop Functionality as follows:
    I have two tables. I want to drag a row of the first table and drop it in a particular cell of the second table.
    Is it possible to implement this using the Web Dynpro Drap and Drop Functionality?
    If not, does anybody have an idea of how to implement this using other concepts (Flash Integration, Building up a Grid of Images and defining those as drop tragets, etc..)??
    Valuable Advice is highly appreciated!
    THANKS, Johannes

    Thanks for the Video.. It gives some information about Drag and Drop, but still, it does not say what I need to know.
    Again:
    I need to know if there is a way to drag particular cells in a Web Dynpro Table to other locations in that same table. Plus: I need to know if there is a way to drag and drop rows of one table into particular cell of another table.
    Similar to what we do in our Outlook Calendars: We have a week in view and we see our appointments as blocks within that week view. Now, we can drag and drop these blocks to other locations. That is what I need to implement!
    Does anybody have an idea?
    THANKS, Johannes

  • Copy from safari and paste somewhere words is hard to use

    I want ot copy a art clip from safari and then paste it somewhere  I have word but it is very hard to use   I have numbers and the art clip can not be sized
    so where can I paste the art clip and be able to put in text and size, color, text, etc  then print

    Insert a Shape into Numbers first (from the drop down Shapes menu in the top of Numbers).
    Then drag the image from Safari into the Shape you have created (not into a cell in Numbers).
    You can then resize the shape and if you click on the shape you can adjust the mask which will control how much of the image you can see.

  • Copy from Doc1 and paste in Doc2

    HI ALL,
    Requirement:
    My requirement is copy all pageitem from Source Document(doc1) and paste in Target Document(doc2).
    [Note: doc1 contains many pages]
    Trying Code:
    It will paste Ist page only. Not repeated for next process.
    var doc1 = app.documents[0];
    var doc2 = app.documents[1];
    for(i=0; i<doc1.pages.length; i++)
        //var myPages = Pages[i]
        //alert(Pages[i])
        doc1.pages[i].pageItems.everyItem().select(SelectionOptions.ADD_TO);
        app.copy ();
        app.activeDocument = doc2;
        app.pasteInPlace ();
    Kindly check and advise.
    Thanks in advance
    BEGINNER

    Try something like this:
    var doc1 = app.documents[0];
    var doc2 = app.documents[1];
    for(i=0; i<doc1.pages.length; i++)
        if(doc2.pages.length < i+1){
            doc2.pages.add();
        //alert(Pages[i])
        doc1.pages[i].pageItems.everyItem().duplicate(doc2.pages[i]);

  • Copy and pasting - maintaining content integrity when copy from pdf and pasting to word doc

    My firm is currently using an older version of Acrobat to transfer portions of medical report to a word document format. We are only taking select excerpts and not exporting the whole document. As of now, i copy and paste the needed piece to word but the integrity of the transfer is terrible. Many misspelled words, wrong spacing, characters replacing letter, etc...We are curious if this issue could be resolved by upgrading to the latest version of Acrobat. Thanks for your help!

    If you could give the version of Acrobat and post some before and after screen shots it would help us understand the issue (yes, avoid any personal info). Was the original PDF created as a scan? If so, is it clearscan or searchable? There are many issues that are hard to comment on because we don't know how the PDF was produced or what has been done to it in the meantime. It may be that an upgrade would help, but not necessarily. If you have a spare machine available, you could always download and install the trial to see if it would resolve the issue -- I would not install the trial over your current version.

  • [solved]How can I copy from urxvt and paste in firefox?

    I can't copy anything from urxvt to firefox,but I can copy from firefox to urxvt.
    I use fluxbox,anyone can help me?

    zen_guerrilla wrote:
    Add these lines to your .Xdefaults:
    URxvt*perl-ext: default,mark-urls
    URxvt*urlLauncher: firefox
    and source it with xrdb ~/.Xdefaults. Then double-click on the url on urxvt, press Ctrl and right click the url. Select 'run firefox' and you're good to go.
    ...or you can just middle-click the link and it'll open in firefox.

  • Copy from word and paste in Firefox

    When I copy rich text with links and stuff from word into firefox... only the plain text is pasted. So all the links and other styles don't show.

    No, it's not a form. I'm pasting in the text editor from hotmail, gmail, etc... The same pasting works normally in IE and Chrome.

  • I have to paste/special/text when copying from Firefox and pasting in Word or Excel

    When copying data from a table on IE, I just have to paste (ctrl-v), and the data is pasted into appropriate separate cells.
    In Firefox, I have to "paste special" and click "text" to separate the fields. Otherwise, all the data is pasted into a single cell or in the case of Word, one paragraph.
    Is there a setting that can be designated to allow paste as in IE or as within Word or Excel?

    The [https://addons.mozilla.org/firefox/addon/1852/ Dafizilla Table2Clipboard] extension should help with this.

  • How do you use the "copy style" clipboard and "paste style" glue bottle?

    I just know that it will seem obvious when somebody tells me, but I'm having no luck finding out how to use these tools.  I keep thinking/hoping that they will work like a formatting paintbrush (in microsoft word or google docs) but that's not the case.  I get that you can redefine styles thorugh the paragraph, character and list styles pull out list or menu.  But a formatting brush type tool would allow more flexibility.  thanks

    Thats not really easy..  maybe you find some informatione here: https://dev.twitter.com/discussions/11386

  • Import data from excel/csv file in web dynpro

    Hi All,
    I need to populate a WD table by first importing a excel/CSV file thru web dynpro screen and then reading thru the file.Am using FileUpload element from NW04s.
    How can I read/import data from excel / csv file in web dynpro table context?
    Any help is appreciated.
    Thanks a lot
    Aakash

    Hi,
    Here are the basic steps needed to read data from excel spreadsheet using the Java Excel API(jExcel API).
    jExcel API can read a spreadsheet from a file stored on the local file system or from some input stream, ideally the following should be the steps while reading:
    Create a workbook from a file on the local file system, as illustrated in the following code fragment:
              import java.io.File;
              import java.util.Date;
              import jxl.*;
             Workbook workbook = Workbook.getWorkbook(new File("test.xls"));
    On getting access to the worksheet, once can use the following code piece to access  individual sheets. These are zero indexed - the first sheet being 0, the  second sheet being 1, and so on. (You can also use the API to retrieve a sheet by name).
              Sheet sheet = workbook.getSheet(0);
    After getting the sheet, you can retrieve the cell's contents as a string by using the convenience method getContents(). In the example code below, A1 is a text cell, B2 is numerical value and C2 is a date. The contents of these cells may be accessed as follows
    Cell a1 = sheet.getCell(0,0);
    Cell b2 = sheet.getCell(1,1);
    Cell c2 = sheet.getCell(2,1);
    String a1 = a1.getContents();
    String b2 = b2.getContents();
    String c2 = c2.getContents();
    // perform operations on strings
    However in case we need to access the cell's contents as the exact data type ie. as a numerical value or as a date, then the retrieved Cell must be cast to the correct type and the appropriate methods called. The code piece given below illustrates how JExcelApi may be used to retrieve a genuine java double and java.util.Date object from an Excel spreadsheet. For completeness the label is also cast to it's correct type. The code snippet also illustrates how to verify that cell is of the expected type - this can be useful when performing validations on the spreadsheet for presence of correct datatypes in the spreadsheet.
      String a1 = null;
      Double b2 = 0;
      Date c2 = null;
                        Cell a1 = sheet.getCell(0,0);
                        Cell b2 = sheet.getCell(1,1);
                        Cell c2 = sheet.getCell(2,1);
                        if (a1.getType() == CellType.LABEL)
                           LabelCell lc = (LabelCell) a1;
                           stringa1 = lc.getString();
                         if (b2.getType() == CellType.NUMBER)
                           NumberCell nc = (NumberCell) b2;
                           numberb2 = nc.getValue();
                          if (c2.getType() == CellType.DATE)
                            DateCell dc = (DateCell) c2;
                            datec2 = dc.getDate();
                           // operate on dates and doubles
    It is recommended to, use the close()  method (as in the code piece below)   when you are done with processing all the cells.This frees up any allocated memory used when reading spreadsheets and is particularly important when reading large spreadsheets.              
              // Finished - close the workbook and free up memory
              workbook.close();
    The API class files are availble in the 'jxl.jar', which is available for download.
    Regards
    Raghu

  • I used to copy from emails then paste to my word processor, now there is no edit option on firefox. why?

    there isn't an edit option in firefox. therefore i can't copy from email and paste to word processor. why?

    You can find the Copy, Paste, and Cut buttons next to Firefox > Edit (and in its sub menu) and in the regular Edit menu on the menu bar (press F10 if the menu bar is hidden).<br />
    The buttons next to Firefox > Edit are enabled if there is something to do with them, just like with the toolbar buttons.<br />
    You can find the Copy, Paste, and Cut toolbar buttons in the toolbar palette in the Customize window and drag them on a toolbar.<br />
    Press F10 or press and hold the Alt key down to bring up the "Menu Bar" temporarily.

  • How do I display, copy, and paste a web address from an open Safari window please?

    I'm new to Mac and Safari. 
    I'm used to being able to just cut and paste a web address from a page I'm on into a discussion, but I don't see an address bar to copy from.
    I'm sure it is there somewhere, which toolbar or keyboard shortcut am I missing, please?
    Gordon_M

    Hello:
    While Safari is open, go to the menu bar>view.  Select "customize toolbar."  You may use the default, or customize it to yoru liking.
    Then when you wish to copy an address, you simply click on the favicon and go to edit>copy.
    Barry

  • If I want to paste from clipboard on a Flex web app, which element and class should I use?

    I want to have this function: copy image from somewhere, and paste in an area in  Flex app, can I realize that?
    which element to support? canvas?
    which class can implement this?
    thanks!

    With System.setClipboard("Text this in clipBoard"); this we can use for Text, but I am not sure for setting Images in ClipBoard or no.
    You can refer this
    http://www.flexets.com/show-image-from-clipboard

  • Just got my Mac air and i would like to make a file to store some web addresses for my new business with rodan and fields and I can't do it. Made the file but i cant copy and paste the web addresses in the file to save them. Please help and thank you.

    Just got my Mac air and i would like to make a file to store some web addresses for my new business with rodan and fields and I can't do it. Made the file but i cant copy and paste the web addresses in the file to save them. Please help and thank you.

    Yes - well you have to make the file in a word processing Application.
    You could use TextEdit (it's free) Pages (words only), or Numbers (data base) (they are part of iWorks - and may or may not be free (included) on your machine.  You could use MS Office (it is not free) You could use any Open source word processor that plays well with Office (NeoOffice, StarOffice) they are free.
    That's how you create content and copy/paste URLS. Then you save the file to the desktop. If you are going to make more than one file... you make a folder on the desktop and save, or drag the file(s) into it.
    You attach it to your e-mail client which will compress it and e-mail it. An excellent reference is to use Help, from the menu bar, also from inside any application. From your library or book store the OS X for Dummies has a lot of useful information (you don't read it cover to cover but look up chapters about what you'd like to do)
    You can also make appointments at your local Apple store for individualized help (if a store is nearby)

  • If I copy and paste a web address, it does not become an underlined link..How to fix?

    I sell items on ebay. When I copy and paste a web address it does not become an underlined CLICK ABLE LINK.
    It does in automatically in Internet Explorer. I prefer using Firefox.
    How can I fix this ???
    Ron
    PS The same thing happens if I try to email a link to someone.

    Just above the textarea that you use to enter the message text on the "Compose New Mail page" there is usually a button bar with buttons to add text formatting like Bold and Italic.<br />
    That toolbar may also have a button to turn a text link into a clickable hyperlink (look for a chain like button).<br />
    You can select the text and click that button to turn the link into a clickable hyperlink.<br />
    If you can't find the button then hover them all to check the tooltip of each (e.g. Insert hyperlink).<br />

Maybe you are looking for