Copy/Paste the report in word.

Hi all,
I am generating a jsp report using Reports 10g. Is there any way to copy the content in report(report is in htmlcss format) and paste it in word doc with the exact alignments? I am able to copy/paste but the alignment is not proper. Is there any way...or it is the limitation in reports?
Kindly help me out. It is quite urgent as our client is urging us on this issue.
Regards
Priya

u can create text file from report file that is same as report file
and then u can convert it to .doc file so it is ur word file
so, for creating text file u have to set system parameter
desname : path of ur file and name ex: D:\aa.txt
destype : file
mode : character
so u can create text file

Similar Messages

  • I'm in trouble with copy paste some text from Word to DW mx 2004

    I'am a new developer in webdesign. I'm doing my first site to
    a cliente. I'm in trouble with copy paste some text from Word to DW
    mx 2004. In the Edit / Preferences / General category i have the
    spelling dictionary in Portuguese (Brasilian). If I wrote the text
    in Portuguese directly from DW i can see the letters with ( ç
    ã é ... ) and in the browser testing ( IE 6.0.2 with sp2
    and FireFox 1.0.7 ), but with copy paste from the text in Word in
    Portuguese when i bring it to DW i can see the ( ç ã
    é ... ) in the beginnig but in the Browsers testing i can't,
    and then after a while i lose the ( ç ã o ...). Can
    anyone help me !?
    I need the work finish in next monday. Thanks a lot.

    Your line breaks will most likely be incorrect if you don't turn on the Japanese Composer.
    It is almost absolutely impossible to accomplish your goal without having a font - any font - installed on your system that has that glyph. However, if it's showing up in Word, than means that you must have that glyph installed, right? What font are you trying to use in InDesign? You might already know that Word will auto-substitute fonts when it encounters a missing glyph, so we really don't know what font is being used to render that one glyph. The whole sentence might be in MS Mincho but one glyph might be pulled from another font if MS Mincho doesn't have that glyph.
    That being said, you're going to break it if you don't know how to set Japanese type in ID. It's not something where you can just copy text out of email and paste into your English layout.

  • It is possible to copy paste the Flex AmChart component

    Hi
    It is possible to copy paste the Flex AmChart component to word or powerpoint.
    Thanks in advance.
    With regards
    Karthy

    1. To take a snapshot of a graph
    import mx.graphics.ImageSnapshot;
    [Bindable]
    public var balanceSheetImage:String;
    var snapshot:ImageSnapshot =
    ImageSnapshot.captureImage(balanceSheet); // balanceSheet is a Flex chart instance
    balanceSheetImage = ImageSnapshot.encodeImageAsBase64(snapshot);
    snapshot = ImageSnapshot.captureImage(earnings);
    earningsImage = ImageSnapshot.encodeImageAsBase64(snapshot);
    2. Copy to the clipboard
    Flash Player
    System.setClipboard(text);
    AIR
    http://livedocs.adobe.com/flex/3/html/help.html?content=CopyAndPaste_6.html
    You have more flexibility for that part if you use AIR than if you use Flash Player. With Flash Player, it will be only text based information, with AIR, it can be a binary format like a bitmap
    3. Someone explains here how to get that Base 64 encoded XML image to Powerpoint
    http://tech.groups.yahoo.com/group/flexcoders/message/157794

  • OIM custom web page developed shows up on copy pasting the URL in browser

    Hi experts,
    I am facing this weird issue. I have developed a custom web page to generate password after adding custom menu item in OIM.
    The web page shows up on copy pasting the URL in browser. Only System admins after loggin in should get this menu item and page after clicking on it.
    http://xxxx:7778/xlWebApp/generatePassword.do
    But any1 can access this page currently. I have changed the action class to check for valid session,so clicking reset doesnt trigger the code.
    So atleast the functionality is protected.
    But the page still shows up on copy pasting the URL. How do i prevent this from happening ??
    Any suggestions and pointers would be appreciated.
    Regards,
    Confused developer.

    My action class does extend tcAction class.
    Does my action class need initialisation code i.e. below lines of code ??
                   ConfigurationClient.ComplexSetting config = ConfigurationClient
                             .getComplexSettingByPath("Discovery.CoreServer");
                   final Hashtable env = config.getAllSettings();
                   tcSignatureMessage moSignature = tcCryptoUtil.sign("xelsysadm",
                             "PrivateKey");
                   ioUtilityFactory = new tcUtilityFactory(env, moSignature);
    1 more question :
    Should i check for valid HttpSession() in the execute function() of the action class ??
    Can you share code for a sample custom action class please ??
    Thanks in advance.

  • Copy & paste the images in server side folder

    Hi ,
    I want to copy & paste the images in server side folder .
    Have you any idea than please send me.
    Thanks.
    Have a nice day

    [http://java.sun.com/docs/books/tutorial/essential/io/].

  • SP2-0042 when copy paste the *

    Hi,
    Did you notice this annoying enhancement in 10g : you cannot copy-paste the listing of the current line because of the star marking the current line.
    SQL> l
      1  select
      2  *
      3  from
      4* dualif you want to copy-paste the code above in your sqlplus session, it was working in 7,8,9. But no longer in 10!
    SQL>   1  select
    SQL>   2  *
    SQL>   3  from
    SQL>   4* dual
    SP2-0042: unknown command "4* dual" - rest of line ignored.Regards
    Laurent

    Bump

  • Extract All Embedded Files in All Folders and Save Each? Copy/Paste from PDF to Word?

    I have most of what I need here, but I’m missing 2 important pieces. 
    #1)  I want to copy/paste from all PDF files in a folder and paste the copied data into a single Word file. 
    It works fine if I have ONLY Word docs in my folder.  When I have PDF files and Word files, the contents of the Word files are copied in fine, but the contents of the PDF files seem to come in as Chinese, and there is no Chinese in
    the PDF, so I have no idea where that’s coming from.
    #2)  I want to extract all embedded files (in all my Word files) and save the extracted/opened file into the folder.  Some embedded files are PDFs and some are Excel files.
    Here the code that I’m working with now.
    Sub Foo()
    Dim i As Long
    Dim MyName As String, MyPath As String
    Application.ScreenUpdating = False
    Documents.Add
    MyPath = "C:\Users\001\Desktop\Test\" ' <= change this as necessary
    MyName = Dir$(MyPath & "*.*") ' not *.* if you just want doc files
    On Error Resume Next
    Do While MyName <> ""
    If InStr(MyName, "~") = 0 Then
    Selection.InsertFile _
    FileName:="""" & MyPath & MyName & """", _
    ConfirmConversions:=False, Link:=False, _
    Attachment:=False
    Dim Myshape As InlineShape
    Dim IndexCount As Integer
    IndexCount = 1
    For Each Myshape In ActiveDocument.InlineShapes
    If Myshape.AlternativeText = PDFname Then
    ActiveDocument.InlineShapes(IndexCount).OLEFormat.Activate
    End If
    IndexCount = IndexCount + 1
    Next
    Selection.InsertBreak Type:=wdPageBreak
    End If
    On Error Resume Next
    Debug.Print MyName
    MyName = Dir ' gets the next doc file in the directory
    Loop
    End Sub
    If this has to be done using 2 Macros, that’s fine. 
    If I can do it in 1, that’s great too.
    Knowledge is the only thing that I can give you, and still retain, and we are both better off for it.

    Hi ryguy72,
    >>When I have PDF files and Word files, the contents of the Word files are copied in fine, but the contents of the PDF files seem to come in as Chinese, and there is no Chinese in the PDF, so I have no idea where that’s coming from.<<
    Based on the code, you were insert the file via the code Selection.InsertFile. I am trying to reproduce this issue however failed. I suggest that you insert the PDF file manually to see whether this issue relative to the specific file. You can insert PDF
    file via Insert->Text->Object->Text from file.
    If this issue also could reproduced manually, I would suggest that you reopen a new thread in forum to narrow down whether this issue relative to the specific PDF file or Word application.
    >> I want to extract all embedded files (in all my Word files) and save the extracted/opened file into the folder.  Some embedded files are PDFs and some are Excel files.<<
    We can save the embedded spreadsheet via Excel object model. Here is an example that check the whether the inlineshape is an embedded workbook and save it to the disk for you reference:
    If Application.ActiveDocument.InlineShapes(1).OLEFormat.ClassType = "Excel.Sheet.12" Then
    Application.ActiveDocument.InlineShapes(1).OLEFormat.DoVerb xlPrimary
    Application.ActiveDocument.InlineShapes(1).OLEFormat.Object.SaveAs "C:\workbook1.xlsx"
    Application.ActiveDocument.InlineShapes(1).OLEFormat.Object.Close
    End If
    And since the Word object model doesn't provide API to save the embedded PDF, I would suggest that you get more effective response from PDF support forum to see whether it supports automation. If yes, we can export the PDF as embedded spreadsheet like code
    absolve.
    Hope it is helpful.
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I can't copy paste from pdf to word due to Unicode character problem.

    I was able to copy paste from a pdf document on word and all of a sudden it won't let me paste anymore. Well, I can paste the text but it come up as 'square' thingy. The spanner icon lights up and says This document contains unicode characters that might not display correctly in the earlier version of the office. I'm using Office/Word 2008 on my Mac book air..
    I just dont understand why all of a suddent it wont past from the same pdf I was using to copy text from.
    Thanks.

    If you don't get an answer here, there's a forum devoted entirely to Word problems at
    http://answers.microsoft.com/en-us/mac/forum/macword

  • How do I copy/paste Japanese characters from Word to ID CS5.5?

    I'm using ID CS5.5 as my layout program and helping my girlfriend lay out a children's book she's working on. She's a Spanish professor at a local university. So far, we've done the text in English, Spanish, French, Portuguese, and German. But she also wants to provide the book in Japanese, so had one of her colleagues, who is from Japan, translate it and provided the translation to me in the body of an e-mail, which I copied and pasted into Word. However, when I pasted it into the InDesign layout, I get the pink boxes with the "x", indicating that particular font isn't installed. I understand this. I selected one of the Japanese characters and checked the info in Word, finding that it is CJK Unified Ideograph, character code 69D8, keyboard shortcut 69D8, Alt+x. Here is the character: 様
    Here is one of the sentences in Japanese:
    カルロスです。ぼくにはしんゆうがいて、ジャバリとジョッシュといいます。ぼくらはいつもいっしょにあそびます。みためはちがうけど、にているとこもたくさんあります
    Is it absolutely impossible to accomplish our goal without having the particular Japanese typset installed on my system that he's using? It's showing up here and in Word. ????? I've done a search and did a lot of reading, but didn't find my exact issue, so just wanted to start fresh and hopefully get some helpful input. If this has been discussed before, I apologize, but didn't find it.
    Thanks
    DC

    Your line breaks will most likely be incorrect if you don't turn on the Japanese Composer.
    It is almost absolutely impossible to accomplish your goal without having a font - any font - installed on your system that has that glyph. However, if it's showing up in Word, than means that you must have that glyph installed, right? What font are you trying to use in InDesign? You might already know that Word will auto-substitute fonts when it encounters a missing glyph, so we really don't know what font is being used to render that one glyph. The whole sentence might be in MS Mincho but one glyph might be pulled from another font if MS Mincho doesn't have that glyph.
    That being said, you're going to break it if you don't know how to set Japanese type in ID. It's not something where you can just copy text out of email and paste into your English layout.

  • Copy Paste of Report Writer iViews "Change description"

    Hi. I have mad a copy paste of some report writer iViews. Even though I change the Description and name of the copied iView (in the Property Category info area)it still keeps the original description in the Portal catalog. How can this be changed?
    BR Kurt

    Hi. It is EP6 SP10 see more details below.
    Portal: 6.0.10.1.0
    EP 6.0
    Support Package 10
    Patch 1
    Hotfix 0
    SAP J2EE Version and Patch Level:
    J2EE Version: 6.40
    Patchlevel: 88028.313
    JDK Version:
    java version "1.4.2.06"
    Best regards Kurt

  • Copy/paste not work for Word attachments?

    Update went fine, and I love it - but apparently I can't copy from a Word doc. Is this normal?

    I just experienced the exact problem as you. I was trying to copy and paste the equations in picture format from word document into the email. I was able to see the equations display correctly on my iPhone; however, both my gmail using firefox and my adviser's email can't read the equation pictures at all.

  • Why do I loose after copy paste the live paint areas?

    Hello.
    can anybody help me?
    If I copy paste something I loose the live paint area.
    I´m using the adobe illustrator CC. With CS5 I didn´t have this problem.
    thanks for help!
    ciao
    Lisa

    Hello.
    I have an object.
    I filled the object with the different colors with live paint function. (Select path, live paint, make)
    I select this object, copy it and paste it in another file.
    I loose colors in the object.
    I hope my explanation is not too complicated.
    thanks for your help!
    ciao

  • Copy Paste HTML to Excel Word issue

    Web site used for business has "printable excel view". In prior versions of Firefox I could copy and paste into word or excel. In version 4, it locks up Word with
    Problem signature:
    Problem Event Name: APPCRASH
    Application Name: WINWORD.EXE
    Application Version: 11.0.8328.0
    Application Timestamp: 4c717ed1
    Fault Module Name: WINWORD.EXE
    Fault Module Version: 11.0.8328.0
    Fault Module Timestamp: 4c717ed1
    Exception Code: c0000005
    Exception Offset: 002ec4dd
    OS Version: 6.1.7601.2.1.0.256.48
    In Excel 2003 in does nothing when I click paste. However I can paste with Unicode or text but not HTML.... When I say nothing I mean nothing happens. Tried thru IE and that works like 3.6 worked, just fine.

    I reinstalled, removed, restarted, tried the Table add on, nada zip will get it to work.
    Do not get a crash, but you right click, select paste and the page blinks, but nothing is on the page. IE works just like before 5.0. all versions of 4 did work.

  • How can I Copy/paste the pixels within a frame in a video layer to another frame? (It duplicates the whole frame instead.)

    I'm making a handdrawn animation in the timeline using video layers, so each video layer contains the frames for the animation. The method works great..except for this -
    If lasso select a section of one frame and try to paste into another frame, it duplicates the the whole frame and pastes it with an arbitrary long frame duration for some reason (not the same duration as the frame its copied from)....not at all what I'm trying to do. Any work around? I've tried all the variations of 'paste special' to no avail.
    Thanks.

    Images and other object can either be floating or be inline. Yours are floating and will not move with the text. Inline object will move with the text but can't be outside the text layer. It doesn't help if you have created section in the document. Floating images doesn't care. Nor will it help if you create several documents that you want to merge later. Doesn't make any difference.
    My suggestion is that until your text is finished you have the images inline. Then as a last editing you can start make the images floating and move them a little.

  • Automatically create Object, Character & Paragraphs style when you copy & paste the same item.

    InDesign could create styles automatically. If I am copying and paste an object or paragraph - that means I will be using it in multiple pages and consequently be making changes to it. I know I can always create a syle for all my elements, but having that feature build-in would be great. Especially for the designers like me who works on small documents. Great Forum!
    Thanks!

    InDesign make it really easy for you to create styles. I just believe that having it as an automatic feature (of course, an optional feature) would save time when working in small - mini publications, where there is really no need to create syles . Just my thought.

Maybe you are looking for