How to convert XML file to PDF

Hi there,
Does anyone know by any chance, how to covert XML file to PDF? Thanks

Hello,
You can convert most of the files in PDF by using the Print menu.
Open the file you want to save in PDF and choose in the menu bar File > Print....
You will see a will the Print window and at the left, click on the PDF button.
Choose in the menu “Save as PDF...”
Insert the name and you can also set security settings (like a password) and click on the “Save” button.
Hope this will help.
EDIT : (oups, dsimagry posted as the same time of me)

Similar Messages

  • How to convert XML file to an internal table ?

    Hi All,
    I want to do a batch input program. The source data would be given as an excel file . I would like to know how to convert XML file to internal table properly. Please help me out..
    Thanking you in advance ..
    Shankara Narayanan T.V

    Hi Shankar,
    use 'ALSM_EXCEL_TO_INTERNAL_TABLE' FM.
      CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
             EXPORTING
                  filename                = p_file1
                  i_begin_col             = '1'
                  i_begin_row             = '5'
                  i_end_col               = '40'
                  i_end_row               = '16'
             TABLES
                  intern                  = it_intern
             EXCEPTIONS
                  inconsistent_parameters = 1
                  upload_ole              = 2
                  OTHERS                  = 3.
        IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    LOOP AT it_intern.
          AT NEW row.
            CLEAR it_intern.
          ENDAT.
            CASE lv_flag.
        Production Version
              WHEN  1.
                it_master-matnr      =   it_intern-value.     
              WHEN  2.
                it_master-werks      = it_intern-value.
              WHEN  3.
                it_master-verid      = it_intern-value.
              WHEN  4.
                it_master-text1      = it_intern-value.
              WHEN  5.
                it_master-fdate     = it_intern-value.
          AT END OF row.
            APPEND it_master.
          ENDAT.
        ENDLOOP.
    -Anu
    Message was edited by:
            Anupama Reddy

  • How to convert XMl file to XSD file

    how to convert XMl file to XSD file ?
    i have a xml file format  it has to be converted to xsd file through ABAP .
    Regards
    Anbu B

    i got the answer....
    Regards
    Anbu B

  • Convert XML file into PDF file

    <b>XML to PDF</b>i want to Convert XML file into PDF file pl. any one can suggests API's

    Hi,
    There are many ways to convert XML files to PDFs through java.
    One of the easiest way is by using iText.jar which have classes for conversion.
    The following are the required steps
    1. Create a document object for the XML file ( Using DOM or SAX parser).
    2. Parse the xml document and extract the content to write in PDF.
    3.Create a itext Document object.
    4.Get a PdfWriter instance for the PDF file.
    5.Write in the pdf the extracted text using the document object.
    Refer <a href="http://itextdocs.lowagie.com/examples/com/lowagie/examples/general/HelloWorld.java">here</a> for a simple pdf writer example.
    Refer <a href="http://java.sun.com/developer/codesamples/xml.html">here</a> for examples of XML Parsers.
    Regards,
    Uma

  • How to convert JPG files to PDF

    Suggestions on how to convert JPG files to PDF using Adobe?

    You would either need the PDF Pack service, or Adobe Acrobat or Photoshop.

  • How to convert *.pmd files to *.pdf files?

    How to convert *.pmd files to *.pdf files?

    Depends on your setup. Please give full details; messages here are not charged by the word.

  • How to convert WIM files to PDF?

    I am trying to recover files saved from a back up cd. The files I'm trying to access are saved as a WIM file. I have no idea how to convert them to a pdf or image file.  Please help me.

    WIM is an image file format and you can mount that file and extract the PDF files you are looking for inside the image:
    Start a command prompt (cmd.exe) and run the command:
    Dism /Mount-Image /ImageFile:C:\temp\install.wim /index:1 /MountDir:C:\temp\offline
    After that, you will have all files inside that WIM file in the C:\temp\offline location.
    Blogging about Windows for IT pros at
    www.theexperienceblog.com

  • How to convert xml file to xsl using java

    Hi all,
    I have an XML file with which i need to convert(transform) it to an xsl file using java.
    I am new to converting xml file to xslt.Please send me if u have code .
    Thanks in advance
    regards
    Ram

    You seem to be asking the wrong question. An XSL file can be used to transform an XML file, but transforming an XML into an XSL does not make sense. The API for running XSL transforms on the Java platform is described here:
    http://java.sun.com/javase/6/docs/api/javax/xml/transform/package-summary.html

  • How to convert a file from pdf to txt in java

    hi,
    in my project ,I want to convert a file from pdf to txt using java api. If anyone
    have any idea about it plz help me.

    Google has several ideas. :)

  • How to convert  XML file to excel file

    To convert XML file to excel file. what are the jar files required. also tutorial to convert XML File to excel file

    Gotta use your own imagination.
    I'd have a root tag <excel-spreadsheet>. Under that I'd have a <worksheet> tag for each worksheet. Under that I'd have a <row> tag for each row. Each <row> tag would have <column> tags, with "name" attribute, and the spreadsheet entry as the value.
    The problem is that you can't really map everything that will go into a spreadsheet into this stream (e.g., graphs, stray cells, etc.) It maps well to tables, but that's it.

  • How to convert xml file into internal table in ABAP Mapping.

    Hi All,
    I am trying with ABAP mapping. I have one scenario in which I'm using below xml file as a sender from my FTP server.
    <?xml version="1.0" encoding="UTF-8" ?>
    - <ns0:MTO_ABAP_MAPPING xmlns:ns0="http://Capgemini/Mumbai/sarsingh">
      <BookingCode>2KY34R</BookingCode>
    - <Passenger>
      <Name>SARVESH</Name>
      <Address>THANE</Address>
      </Passenger>
    - <Passenger>
      <Name>RAJESH</Name>
      <Address>POWAI</Address>
      </Passenger>
    - <Passenger>
      <Name>CARRON</Name>
      <Address>JUHU</Address>
      </Passenger>
    - <Flight>
      <Date>03/03/07</Date>
      <AirlineID>UA</AirlineID>
      <FlightNumber>125</FlightNumber>
      <From>LAS</From>
      <To>SFO</To>
      </Flight>
      </ns0:MTO_ABAP_MAPPING>
    AT the receiver side I wnat to concatenate the NAME & ADDRESS.
    I tried Robert Eijpe's weblog (/people/r.eijpe/blog/2005/11/21/xml-dom-processing-in-abap-part-ii--convert-an-xml-file-into-an-abap-table-using-sap-dom-approach)
    but couldnt succeed to convert the xml file into internal table perfectly.
    Can anybody help on this. 
    Thanks in advance!!
    Sarvesh

    Hi Sarvesh,
    The pdf has details of ABAP mapping. The example given almost matches the xml file you want to be converted.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/xi/3.0/how to use abap-mapping in xi 3.0.pdf
    Just in case you have not seen this
    regards
    Vijaya

  • Convert xml file into .pdf and .html

    hi all,
    can any one let me know how can i show xml file values into pdf and html by using java
    thanks in advance

    sreeks27 wrote:
    hi all,
    can any one let me know how can i show xml file values into pdf and html by using java
    thanks in advanceTake a look at Apache FOP:
    http://xmlgraphics.apache.org/fop/

  • How to convert HTML files to PDF files.

    Hi,
    I have an urgent requirement explained below:
    I need to convert my HTML files to PDF file from JAVA program.
    Please help me with your suggestions.
    Your help is highly appreciated.
    Thanks &Regards
    Ramavardhan

    Try FOP and XSL style sheets. Although RPWithey is
    correct that there is nothing to magically change a
    viewable HTML file to PDF you can convert a single
    HTML file to XML and use FOP to create a PDF. You will
    need to manage the transition though.
    If you want to change a random HTML file into PDF
    dynamically this would take quite a bit more work. You
    might be able to use JTidy to convert the HTML to XML
    and then FOP to get to PDF but it will likely not be
    formatted the way you wish.That's true - FOP does do that, doesn't it. It must have to make certain assumptions about the appearance of the output. If the output from the stylesheet is an HTML file, you might be able to bypass that bit altogether. I haven't really looked at FOP, although I've read the overview. Check it out at http://xml.apache.org/fop/index.html.
    RObin

  • How to convert XML file to WSDL file

    Hi SAP gurus
    I am trying to create a wsdl file from a BAPI.
    I have followed all the steps and finally using transaction WSADMIN, I create the webservice. When I select SAVE AS (in the explorer window) it gives me an option with .XML.
    However, when I try to bring it up in Altova XML spy so that i can test it by calling this webservice (SOAP call) looks like the wsdl doesn't ahve the necesarry header etc.,
    Is there a tool to create wsdl out of this xml. Any help will be highly appreciated.
    Tks
    Ram

    Thanks Lim for the response
    Yes I have already done that. I even used 'wsconfig' and 'wsadmin' and as the last step it displayed the wsdl file in the interent explorer and that is when I did File -> SAVE AS and created a .XML file.
    When I open this from ALTOVA XML SPY, to test the webservice, it gives me the error as follows
    "Could not find a definition element in the WSDL file"
    Following is the FILE THAT I AM USING IN ALTOVA
    =================================================
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
         <SOAP-ENV:Body>
              <m:ZBAPIQC xmlns:m="urn:sap-com:document:sap:rfc:functions">
                   <CONVERT>X</CONVERT>
                   <LS_BEHAVE_WHEN_ERROR>P</LS_BEHAVE_WHEN_ERROR>
                   <LS_QUOTATION_CFGS_INST>
                        <item>
                             <CONFIG_ID>000001</CONFIG_ID>
                             <INST_ID>00000001</INST_ID>
                             <OBJ_TYPE>MARA</OBJ_TYPE>
                             <CLASS_TYPE>001</CLASS_TYPE>
                             <OBJ_KEY>C-1100</OBJ_KEY>
                        </item>
                   </LS_QUOTATION_CFGS_INST>
                   <LS_QUOTATION_CFGS_REF>
                        <item>
                             <POSEX>000010</POSEX>
                             <CONFIG_ID>000001</CONFIG_ID>
                             <ROOT_ID>00000001</ROOT_ID>
                        </item>
                   </LS_QUOTATION_CFGS_REF>
                   <LS_QUOTATION_CFGS_VALUE>
                        <item>
                             <CONFIG_ID>000001</CONFIG_ID>
                             <INST_ID>00000001</INST_ID>
                             <CHARC>TEST</CHARC>
                             <VALUE>ABC</VALUE>
                        </item>
                   </LS_QUOTATION_CFGS_VALUE>
                   <LS_QUOTATION_HEADER_IN>
                        <DOC_TYPE>QT</DOC_TYPE>
                        <SALES_ORG>1000</SALES_ORG>
                        <DISTR_CHAN>12</DISTR_CHAN>
                        <DIVISION>00</DIVISION>
                        <REQ_DATE_H>2009-03-19</REQ_DATE_H>
                        <PURCH_DATE>2008-12-19</PURCH_DATE>
                        <INCOTERMS1>CIP</INCOTERMS1>
                        <INCOTERMS2>Testing</INCOTERMS2>
                        <PMNTTRMS>ZB01</PMNTTRMS>
                        <DLV_BLOCK>01</DLV_BLOCK>
                        <QT_VALID_F>2019-12-30</QT_VALID_F>
                        <QT_VALID_T>2019-12-30</QT_VALID_T>
                        <PURCH_NO_C>SA200812150959</PURCH_NO_C>
                        <SD_DOC_CAT>B</SD_DOC_CAT>
                        <DUN_COUNT>0</DUN_COUNT>
                   </LS_QUOTATION_HEADER_IN>
                   <LS_QUOTATION_ITEMS_IN>
                        <item>
                             <ITM_NUMBER>000010</ITM_NUMBER>
                             <PO_ITM_NO>000010</PO_ITM_NO>
                             <MATERIAL>C-1100</MATERIAL>
                             <PLANT>1000</PLANT>
                             <SHIP_POINT>1000</SHIP_POINT>
                        </item>
                   </LS_QUOTATION_ITEMS_IN>
                   <LS_QUOTATION_PARTNERS>
                        <item>
                             <PARTN_ROLE>SP</PARTN_ROLE>
                             <PARTN_NUMB>0000001012</PARTN_NUMB>
                        </item>
                   </LS_QUOTATION_PARTNERS>
                   <LS_QUOTATION_SCHEDULES_IN>
                        <item>
                             <ITM_NUMBER>000010</ITM_NUMBER>
                             <SCHED_LINE>0010</SCHED_LINE>
                             <REQ_DATE>2019-03-18</REQ_DATE>
                             <DATE_TYPE>a</DATE_TYPE>
                             <REQ_QTY>1</REQ_QTY>
                        </item>
                   </LS_QUOTATION_SCHEDULES_IN>
                   <RETURN>
                        <item>
                             <TYPE>a</TYPE>
                             <ID>aaaaaaaaaaaaaaaaaaaa</ID>
                             <NUMBER></NUMBER>
                             <MESSAGE>aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa</MESSAGE>
                             <LOG_NO>aaaaaaaaaaaaaaaaaaaa</LOG_NO>
                             <LOG_MSG_NO></LOG_MSG_NO>
                             <MESSAGE_V1>aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa</MESSAGE_V1>
                             <MESSAGE_V2>aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa</MESSAGE_V2>
                             <MESSAGE_V3>aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa</MESSAGE_V3>
                             <MESSAGE_V4>aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa</MESSAGE_V4>
                             <PARAMETER>aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa</PARAMETER>
                             <ROW>0</ROW>
                             <FIELD>aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa</FIELD>
                             <SYSTEM>aaaaaaaaaa</SYSTEM>
                        </item>
                   </RETURN>
              </m:ZBAPIQC>
         </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>

  • How to convert .msg files to PDF?

    Hello,
    I have a folder full of hundreds of .msg files, many with attachments.  I need to convert them to PDF.  I have a Mac with Adobe Pro X, and a PC on which I just installed a trial version of Adobe Pro XI.  I have tried to do this on my own, on both machines, with little success.
    I have tried the "drag and drop" method to try to "combine files into one PDF."  Unfortunately, .msg files do not appear to be a supported file type in either Pro X or Pro XI.
    On my PC, I am able to use the print to PDF function to individually turn each .msg file into a PDF.  However, there are two challenges I'm hoping to solve:
    1)  The print to PDF function writes any attachments as separate PDFs, instead of automatically merging them all into one file.  It takes time to have to enter a new file name for each attachment and save, and also requires me to name them very specifically, so I know which attachments go with which message file(s).
    2)  Even if I could solve the attachment issue, I expect that it will take a LOT of time to convert each of these files, one by one.  Is there a workaround or way to batch convert .msg files?  Or is there some kind of add-on or plug-in that will allow me to use the combine files into one PDF function with .msg files?
    Thanks!

    One approach would be to drag and drop your folder of.msg files into Outlook. Next, setup an automatic archive under the Adobe PDF ribbon by selecting the Setup Automatic Archival icon. Under the Automatic Archival tab you can select your folder of email messages in Outlook. Then, under the Settings tab make sure you have "Include all attachments in the Adobe PDF" selected as well.

Maybe you are looking for

  • How do I move the photos around in Develop tab ?

    Hi there, I have selected a photo and wanted to do some adjustments to the exposure, saturation and whatnot. So I went to the DEVELOP tab. As the picture is too small, I press "Cmd +" to enlarge the photo. But the section of the photos that I wanted

  • How can I run Premiere 6.0 on windows 8?

    I have an old copy of Premiere 6.0 from 2000/2001 that I wish to try to install on Windows 8. It will not work even when I run the compatability settings. Is there a way around this? Windows 8 doesn't have an XP Mode either, which apparantly was the

  • How do I erase my personal info from a phone with a broken screen?

    My iPhone4 has a broken (blank) screen, but the phone does turn on.  I have bought another phone, but want to erase my personal info from the broken phone before I donate it.  How can I do this?

  • Call a ABAP webdynpro application from a standard transaction.

    Hi Gurus, Can we trigger a webdynpro application on a click of button from a standard transaction as IW31 and pass some of the parameters? If so, how do we do that? Please let me know. Thanks, Das

  • Installing arch to macbook 2,1

    Hi, I'm trying to install arch (dual boot with OSX) on my macbook 2,1.  I've install rEFIt. The partitions that I have setup are 1 OSX boot partition 2. OSX system partition 3. Archlinux 4. Home I've arrive at the stage where I need to install the bo