How generate PDF form XML

I have a XML in the following format
  <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
- <PP gemfgid="DEAPP4144T11G03" type="AssyPPart_GEAE" Value="">
- <WS gemfgid="DEAWS4144T11G03_AGB10" type="AssyWkstn_GEAE" Value="">
  <OP gemfgid="DEAOP4144T11G03_AGB10_000" type="AssyOp_GEAE" Value="" tceid="" rev="" pp="" ws="" op="" opDesc="" mOpersKey="" intro="" cutOff="" releaseStatus="" />
  <OP gemfgid="DEAOP4144T11G03_AGB10_010" type="AssyOp_GEAE" Value="" tceid="" rev="" pp="" ws="" op="" opDesc="" mOpersKey="" intro="" cutOff="" releaseStatus="" />
  <OP gemfgid="DEAOP4144T11G03_AGB10_020" type="AssyOp_GEAE" Value="" tceid="" rev="" pp="" ws="" op="" opDesc="" mOpersKey="" intro="" cutOff="" releaseStatus="" />
  <OP gemfgid="DEAOP4144T11G03_AGB10_030" type="AssyOp_GEAE" Value="" tceid="" rev="" pp="" ws="" op="" opDesc="" mOpersKey="" intro="" cutOff="" releaseStatus="" />
  <OP gemfgid="DEAOP4144T11G03_AGB10_040" type="AssyOp_GEAE" Value="" tceid="" rev="" pp="" ws="" op="" opDesc="" mOpersKey="" intro="" cutOff="" releaseStatus="" />
  <OP gemfgid="DEAOP4144T11G03_AGB10_050" type="AssyOp_GEAE" Value="" tceid="" rev="" pp="" ws="" op="" opDesc="" mOpersKey="" intro="" cutOff="" releaseStatus="" />
  <OP gemfgid="DEAOP4144T11G03_AGB10_060" type="AssyOp_GEAE" Value="" tceid="" rev="" pp="" ws="" op="" opDesc="" mOpersKey="" intro="" cutOff="" releaseStatus="" />
  <OP gemfgid="DEAOP4144T11G03_AGB10_070" type="AssyOp_GEAE" Value="" tceid="" rev="" pp="" ws="" op="" opDesc="" mOpersKey="" intro="" cutOff="" releaseStatus="" />
  <OP gemfgid="DEAOP4144T11G03_AGB10_080" type="AssyOp_GEAE" Value="" tceid="" rev="" pp="" ws="" op="" opDesc="" mOpersKey="" intro="" cutOff="" releaseStatus="" />
  <OP gemfgid="DEAOP4144T11G03_AGB10_090" type="AssyOp_GEAE" Value="" tceid="" rev="" pp="" ws="" op="" opDesc="" mOpersKey="" intro="" cutOff="" releaseStatus="" />
  </WS>
  </PP>I want to generate hte PDF in following format
PP
I__WS
    I___OPPlease help how write a "fo" file for this and generate the PDF

Write an XSL with FO instrauctions, transform your XML with this XSL to an XSL-FO file and generate the PDF from the XSL-FO file with Apache FOP.
See http://xmlgraphics.apache.org/fop/quickstartguide.html :
5. To produce a PDF file from this XML file, we need an XSLT stylesheet that converts the XML to XSL-FO. This is the first step in the processing chain. The second step will be done by FOP when it reads the generated XSL-FO document and formats it to a PDF document. You can copy the following minimal XSLT stylesheet, which takes your first name and produces a "Hello World!"-style document (save it as name2fo.xsl):
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
      xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
      xmlns:fo="http://www.w3.org/1999/XSL/Format">
  <xsl:output method="xml" indent="yes"/>
  <xsl:template match="/">
    <fo:root>
      <fo:layout-master-set>
        <fo:simple-page-master master-name="A4-portrait"
              page-height="29.7cm" page-width="21.0cm" margin="2cm">
          <fo:region-body/>
        </fo:simple-page-master>
      </fo:layout-master-set>
      <fo:page-sequence master-reference="A4-portrait">
        <fo:flow flow-name="xsl-region-body">
          <fo:block>
            Hello, <xsl:value-of select="name"/>!
          </fo:block>
        </fo:flow>
      </fo:page-sequence>
    </fo:root>
  </xsl:template>
</xsl:stylesheet>

Similar Messages

  • API for generating PDF Form

    How can i generate PDF Form from .NET coding?

    Etymon� PJ is a developer toolkit for parsing, modifying, and creating PDF documents. The main part of the toolkit is a Java class library that provides software developers with an object representation of a PDF document and offers the following features:
    # Read and parse an existing PDF document
    # Extract data from an existing PDF document
    # Modify an existing PDF document
    # Create a new PDF document
    check this link
    http://www.etymon.com/pj/
    Renjith

  • Application error while generating PDF form

    Hello there,
    I am getting the message "Application error while generating PDF form" and when you hover it has additional information Message Class HREIC_APPL - Message number 258.
    I get this upon doing the following steps:
    1. Enter SAP R3, enter HREIC on the transaction code input.
    2. Enter EIC, Activity Search. Searched for an Activity, selected it and click the "PRINT" button.
    3. After clicking the PRINT button, I get the error message "Application error while generating PDF form".
    Installed this on development box, did the same configuration in test system, but still I get this error. ADS Configuration is working fine and configured fine.
    Is there anything else that is needed to be checked? like Ports, Firewalls, etc?
    Thanks a lot.

    Be sure that the RFC name is "ADS" and not anything else.
    Thanks.

  • How to populate Adobe LiveCycle Designer generated  PDF Forms with data from Database in Windows app

    Hi
    I have a PDF template designed in Adobe LiveCycle Designer. This template has form fields which needs to be filled with data programmatically. I am using windows application in C#.Net 2005 in which I want to retrieve data from database and merge this data into PDF form in respective fields.
    How this can be achieved?
    I searched a lot & I found that we can process the XDP file generated from PDF to acheive this. I created the XDP file out of the PDF template created in designer. But I don't know how to merge data from database into that XDP file in respective fields and again convert this XDP file back to PDF programmatically. Can anybody help me ? This is urgent.
    Thanks in advance.
    Sambhaji

    Please ignore the above code.<br />The following one is correct one.<br />using System;<br />using System.Data;<br />using System.Configuration;<br />using System.Web;<br />using System.Web.Security;<br />using System.Web.UI;<br />using System.Web.UI.WebControls;<br />using System.Web.UI.WebControls.WebParts;<br />using System.Web.UI.HtmlControls;<br />using System.Text;<br />public partial class _Default : System.Web.UI.Page <br />{<br />    protected void Page_Load(object sender, EventArgs e)<br />    {<br />        Response.ContentType = "application/vnd.adobe.xdp+xml";<br />        StringBuilder responseString = new StringBuilder();<br />        responseString.Append("<?xml version='1.0' encoding='UTF-8'?>");<br />        responseString.Append("<?xfa generator='AdobeLiveCycleDesigner_V8.0' APIVersion='2.5.6290.0'?>");<br />        responseString.Append("<xdp:xdp xmlns:xdp='http://ns.adobe.com/xdp/'>");<br />        responseString.Append("<xfa:datasets xmlns:xfa='http://www.xfa.org/schema/xfa-data/1.0/'>");<br />        responseString.Append("<xfa:data>");<br /><br />        responseString.Append("<form1>");<br />        responseString.Append("<TextField1>Homer</TextField1>");<br />        responseString.Append("<TextField2>Simpson</TextField2>");<br />        responseString.Append("<field name ='DropDownList1'>");<br />        responseString.Append("<items save='1'>");<br />        responseString.Append("<text>1</text>");<br />        responseString.Append("<text>2</text>");<br />        responseString.Append("<text>3</text>");<br />        responseString.Append("</items>");<br />        responseString.Append("</field>");<br /><br />        responseString.Append("</form1>");<br /><br />        responseString.Append("</xfa:data>");<br />        responseString.Append("</xfa:datasets>");<br />        responseString.Append("<pdf  href='C:\\Test.pdf' xmlns='http://ns.adobe.com/xdp/pdf/' />");<br />        responseString.Append("</xdp:xdp>");<br /><br />        Response.Write(responseString);<br />        Response.Flush();<br />        Response.End();<br />    }<br />}

  • Convert or Generate PDF form to XML format

    Hello,
    Is it possible to convert or generate a filled PDF form to XML with a specific format like the one below? Please advise.
    <ImportSession UserID="Test" Password="Test">
    <Batches>
    <Batch Name="Batch Name" BatchClassName="Batch Name">
    <Documents>
    <Document FormTypeName="Form2314">
    <IndexFields>
    <IndexField Name="TITLE" Value="7601"/>
    <IndexField Name="DocDate" Value="05/18/2011"/>
    <IndexField Name="Person Name" Value="Smith, John"/>
    <IndexField Name="From" Value="IT Division"/>
    </IndexFields>
    <Pages>
    <Page ImportFileName="<INSERT FILE LOCATION HERE>"/>
    </Pages></Document>
    </Documents>
    </Batch>
    </Batches>
    </ImportSession>
    Thanks,
    Han Dao

    Hi Hodmi,
    I would prefer to use LC Designer, can you explain little bit more on how to start it and LC Form ES.
    Thanks, Han

  • Generate PDF FORM with editable fields

    Hi,
    my requirement is to create a document wich has a number of fields which users can fill in. By default, these fields need to be filled in with the data from the database, but editable by the user, the rest of the document has to be non-editable. I'm looking to PDF Forms for this, but am open to other suggestions. I can't get the output to show such fields. Is it even possible?
    Spiffo

    HI,
    I have no clear at all how we define a editable field in the template.
    Besides, we need Adobe Writer to see this editable fields from the PDF generated?
    Thanks in advance.
    S.

  • Generate PDF from XML

    Is there any way to automate the creation of PDF forms using XML files and/or some kind of API? Thanks.

    PLEASE Help in creating/saving forms in Livecycle Designer
    I am developing a website for a client who needs forms that can be filled out online and emailed back to her as a pdf.
    I have created an interactive form in Adobe Livecycle Designer to allow viewers online to enter data into this form.
    Now I need this form to keep the data that was entered, stay as a pdf, and be sent to my clients email who does not own Adobe Livecycle Designer. Please let me know how I am to save this form in order for it to be opened and show the information.
    Thank you so much for taking the time to help me with this!!
    Sandy

  • Generate PDF form without hidden fields

    when I generate a PDF form from the responses it shows the hidden fields that would not have been shown. Is there a way to stop that from happening?

    Hi;
    That is not something supported at this time.
    We do have a "Feature Request" form where you can vote on popular existing ideas or add a new one of your own:
    https://adobeformscentral.com/?f=XnF-KJVCovcEVQz9tZHYPQ
    Thanks,
    Josh

  • Generating PDF with XML and XSL

    Hi, quick basic question...
    I'm trying to generate pdf doc from xml with xsl.
    I'm using following sample code from xml.apache.org
    response.setContentType("application/pdf");
    Driver driver =new Driver();
    driver.setOutputStream(response.getOutputStream());
    driver.setRenderer(Driver.RENDER_PDF);
    Transformer transformer=TransformerFactory.newInstance()
    .newTransformer(new StreamSource("foo.xsl"));
    transformer.transform(xmlsource, new SAXResult(driver.getContentHandler()));
    xmlSource is my regular xml that wants to be pdf.
    is foo.xsl any regular xsl that I use to coonvert xml into html?
    or is it some special xsl that is tailored for pdf.
    Is this what is called xsl-fo?
    Thanks
    IL

    Hi IL,
    XSLT can translate XML to something else. It is most suited to transforming to another tree-like format (XML, HTML, etc.) but can be 'asked' to produce other kinds of output, flat text for example.
    It is driven by an XSL file which is a series of patterns to match and output to produce.
    This XSL file can be used to generate another XML document in which the nodes come from the Formatting Object namespace. These describe, in generic terms the format of an output document based upon the contents of the original XML.
    The formatting object XML document can then be used as input to a formatting object XML processor which can generate PDF output from it.
    You may want to check out:
    www.w3c.org
    for all the stuff on XML, XSL, XSLT, Formatting Objects, etc., and:
    xml.apache.org
    for imformation on Xalan, which is an XSL processor and FOP, which is a formatting object processor.
    Hope that helps,
    Peter.

  • Generate PDF form

    Hi all,
    I'm using the code below to generate a pdf form ('ZPDF_TEST_FORM').
    When the function in FM_NAME is called, it returns with SY-SUBRC eq 2 and this error message:
    Adobe document services error: SOAP Runtime
    Exception: CSoapExceptionFault : SOAP (100102)
    Any ideas??
    Thanks,
    Jeroen
    data: FP_OUTPUTPARAMS   type SFPOUTPUTPARAMS,
          FM_NAME           type RS38L_FNAM,
          FP_DOCPARAMS      type SFPDOCPARAMS,
          LV_FORMOUTPUT     type FPFORMOUTPUT.
    initialization.
      FP_OUTPUTPARAMS-GETPDF = 'X'.
      call function 'FP_JOB_OPEN'
        changing
          IE_OUTPUTPARAMS = FP_OUTPUTPARAMS
        exceptions
          CANCEL          = 1
          USAGE_ERROR     = 2
          SYSTEM_ERROR    = 3
          INTERNAL_ERROR  = 4
          others          = 5.
      call function 'FP_FUNCTION_MODULE_NAME'
        exporting
          I_NAME     = 'ZPDF_TEST_FORM'
        importing
          E_FUNCNAME = FM_NAME.
      call function FM_NAME
        exporting
          /1BCDWB/DOCPARAMS  = FP_DOCPARAMS
        importing
          /1BCDWB/FORMOUTPUT = LV_FORMOUTPUT
        exceptions
          USAGE_ERROR        = 1
          SYSTEM_ERROR       = 2
          INTERNAL_ERROR     = 3.
      call function 'FP_JOB_CLOSE'
        exceptions
          USAGE_ERROR    = 1
          SYSTEM_ERROR   = 2
          INTERNAL_ERROR = 3
          others         = 4.

    This should be due to a user authorization error.
    You should look for the ADS Configuration Guide at https://www.sdn.sap.com/irj/sdn/adobe -> Installation and Configuration and pick your scenario or http://help.sap.com/saphelp_nw70/helpdata/en/37/504b8cbc2848a494facfdc09a359b1/frameset.htm
    Look specially at the chapter 5 Creating a User in the SAP NetWeaver AS ABAP for Basic Authentication -> Assigning the Security Role in Java at the ADS Conf. Guide.
    If you need more information, I'll glad to assist you.
    Regards,
    Darwin Castillo
    SAP Netweaver Consultant
    Edited by: Darwin Castillo on May 17, 2009 6:27 AM

  • How to generate PDF from XML output without XML publisher

    Hi,
    I am facing a problem while splitting the rdf generated XML output.
    Problem Description:
    I have a oracle invoice report which runs once every day (scheduled program). This report fetches me the invoices generated on that day and needs to be Mailed / Faxed to the customers.
    So i developed the report in such a way that it generates the output order by customers...since the output generated will be as one .out file in APPLCSF/out directory...the .out file needs to be splitted by customers, for which i have written a cursor which takes the data of the main query and submits that many requests as many as customers are there.....There is a possibility of having 1000 customers per day also. If that is the case then my main program will fire that many requests.
    Is there a different approach......any inputs are highly appreciated.
    Also, i am generating the output in XML format. Is there a way from which i can directly generate a PDF from that XML output rather using any other tool.
    Thanks & Regards,
    Lakshmi Kalyan Vara Prasad.

    Hi,
    with Reports Bursting and the defined "distributions" it's possible to have one report splittet to several parts with different receipients. Have a look at http://download-uk.oracle.com/docs/cd/B14504_01/dl/bi/B13673_01/pbr_dist.htm.
    With xsl-fo it's possible to create pdf out of xml ... that's what xml publisher is doing.
    Regards
    Rainer

  • Generate editable PDF form XML

    Hi,
    i need to generate editable pdf "as generated from live cycle designer" from XML.
    please suggest me the way, which live cycle service i should use.
    Thanks

    Hello Hussein,
    Thanks for your response.  I should've specified that I don't want all fields editable.  I want them to maintain their read-only attribute from the template.  Based on the text below from the document you mentioned, I think I'm using the correct setting.
    To maintain the Read Only check box selection for each field:
    To maintain the setting of the Read Only check box on a field-by-field basis in the
    output PDF, set the property "all-fields-readonly-asis" to "true". This property will
    override the settings of "all-field-readonly".
    Please let me know what you think.  Thanks again.
    Daniel

  • ZMEDRUCK PO how generate pdf on the server

    Good morning experts,
    i need to generate a PDF when the PO it's printed and save it on a server.
    In the tr. NACE i have already defined ZMEDRUCK:             SAPFM06P     ENTRY_NEU     ZMEDRUCK
    The question is, i need also to copy the program SAPFM06P and SAPLMEDRUCK to manage the creation of the PDF via function or it's possible get the spool number outside the program to generate it anda save the PDF on the server.
    If it's possible to get the spool id outside the program SAPFM06P i avoid to modify thew standard program creating a Z program.
    help please
    thanks

    Hi,
    Can you take the below code as a reference. this will guide you how to fix your problem.
    REPORT zxx_viewer_zoom.
    * T A B L E S    D E C L A R A T I O N
    *---Tables Used.
    TABLES: afpo,
            mara,
            marc,
            aufk,
            afko,
            itcoo,
            nast,                          "Messages
            *nast,                         "Messages
            tnapr,                         "Programs & Forms
            addr_key,
            arc_params,                    "Archive parameters
            toa_dara.                      "Archive parameters
    * I N T E R N A L    T A B L E S     D E C L A R A T I O N
    *--Internal Tables Used.
    * D A T A     D E C L A R A T I O N
    *--Global Variables Used.
    DATA: ws_matnr LIKE afpo-matnr,
          ws_werks LIKE aufk-werks,
          ws_mtart LIKE mara-mtart,
          ws_wrkst LIKE mara-wrkst,
          ws_fname TYPE rs38l_fnam,
          ws_ctrlp TYPE ssfctrlop,
          ws_optns TYPE ssfcompop,
          w_padest LIKE tsp03l-padest.                          "BMC01+
    DATA: da_message_printed(1) TYPE c,
          da_preview_processed(1) TYPE c,
          repeat(1) TYPE c,
          da_subrc LIKE sy-subrc.
    DATA: w_otfdata  TYPE ssfcrescl.
    DATA: BEGIN OF it_itcoo OCCURS 0.
            INCLUDE STRUCTURE itcoo.
    DATA: END OF it_itcoo.
    DATA: w_otf  TYPE itcoo.
    *--Data Declaration for Printing Layout
    DATA: ls_itcpo     TYPE itcpo.
    DATA: lf_repid     TYPE sy-repid.
    DATA: lf_device    TYPE tddevice.
    DATA: cf_retcode   TYPE sy-subrc.
    DATA: ls_recipient TYPE swotobjid.
    DATA: ls_sender    TYPE swotobjid.
    DATA: ls_control_param   TYPE ssfctrlop.
    DATA: ls_composer_param  TYPE ssfcompop.
    DATA: ls_addr_key        LIKE addr_key.
    DATA: w_screen(1) TYPE c.
    DATA: xscreen(1) TYPE c.
    DATA: da_mess LIKE vbfs OCCURS 0 WITH HEADER LINE.
    * C O N S T A N T S
    CONSTANTS: c_fas1(8)  TYPE c VALUE 'PRINTFAS',
               c_fas2(15) TYPE c VALUE 'PRINTFASDRAWING',
               c_wip1(8)  TYPE c VALUE 'PRINTWIP',
               c_wip2(15) TYPE c VALUE 'PRINTWIPDRAWING'.
    * S E L E C T I O N - S C R E E N.
    SELECTION-SCREEN BEGIN OF BLOCK bl1 WITH FRAME TITLE text-bl1.
    * Production order
    PARAMETERS: p_aufnr LIKE afpo-aufnr OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK bl1.
    START-OF-SELECTION.
    *--Get Partially processed orders
      MOVE: sy-mandt         TO nast-mandt,
            'V1'             TO nast-kappl,
            p_aufnr          TO nast-objky,
            p_aufnr          TO nast-parnr,
            sy-langu         TO nast-spras,
            sy-datum         TO nast-erdat,
            '1'              TO nast-nacha,
            '3'              TO nast-vsztp,
            'X'              TO nast-manue,
            sy-uname         TO nast-usnam,
            'DFLT'           TO nast-ldest,
            sy-langu         TO nast-tdspras,
            'Shop Floor Papers' TO nast-tdcovtitle,
            '1'              TO nast-tdarmod,
            'BUS2032'        TO nast-objtype.
    *--Printer settings
      CALL FUNCTION 'WFMC_PREPARE_SMART_FORM'
        EXPORTING
          pi_nast       = nast
          pi_repid      = sy-repid
        IMPORTING
          pe_returncode = cf_retcode
          pe_itcpo      = ls_itcpo
          pe_device     = lf_device
          pe_recipient  = ls_recipient
          pe_sender     = ls_sender.
      MOVE-CORRESPONDING ls_itcpo TO ls_composer_param.
      ls_control_param-device      = 'PRINTER'.
      ls_control_param-no_dialog   = 'X'.
      ls_control_param-preview     = 'X'.
      ls_control_param-getotf      = ls_itcpo-tdgetotf.
      ls_control_param-langu       = sy-langu.
      CLEAR:   ws_werks.
      SELECT   SINGLE werks
               INTO   ws_werks
               FROM   aufk
               WHERE  aufnr = p_aufnr.
      CLEAR:   ws_matnr.
      SELECT   SINGLE plnbez
               INTO   ws_matnr
               FROM   afko
               WHERE  aufnr = p_aufnr.
      CLEAR:   marc.
      SELECT   SINGLE matgr
               INTO   marc-matgr
               FROM   marc
               WHERE  matnr = ws_matnr
               AND    werks = ws_werks.
    *  CHECK NOT ws_matnr IS INITIAL.       
      IF NOT ws_matnr IS INITIAL.          
        SELECT   SINGLE matgr
                 INTO   marc-matgr
                 FROM   marc
                 WHERE  matnr = ws_matnr
                 AND    werks = ws_werks.
      ELSE.
        marc-matgr = c_wip1.
      ENDIF.
    END-OF-SELECTION.
      PERFORM call_smartform.
    * F O R M    R O U T I N E S
    *&      Form  call_smartform
    *       text
    FORM call_smartform.
      CLEAR: ws_ctrlp, ws_optns, ws_fname.
      TRANSLATE marc-matgr TO UPPER CASE.
      IF marc-matgr = c_fas1 OR
         marc-matgr = c_fas2.
        PERFORM call_paper_a.
      ELSEIF marc-matgr = c_wip1 OR
             marc-matgr = c_wip2.
        PERFORM call_paper_b.
      ENDIF.
    ENDFORM.                    "call_smartform
    *&      Form  call_paper_a
    *       text
    FORM call_paper_a.
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname           = 'ZPPSF_SHOP_FLOOR_PAPER_C' 
        IMPORTING
          fm_name            = ws_fname
        EXCEPTIONS
          no_form            = 1
          no_function_module = 2
          OTHERS             = 3.
      CHECK NOT ws_fname IS INITIAL.
      CLEAR w_otfdata.
      ls_control_param-getotf = 'X'.
      CALL FUNCTION ws_fname
        EXPORTING
          archive_index      = toa_dara
          archive_parameters = arc_params
          control_parameters = ls_control_param
          mail_recipient     = ls_recipient
          mail_sender        = ls_sender
          output_options     = ls_composer_param
          user_settings      = ' '
          is_nast            = nast
          aufnr              = p_aufnr
          flag_orig          = 'X'
        IMPORTING
          job_output_info    = w_otfdata
        EXCEPTIONS
          formatting_error   = 1
          internal_error     = 2
          send_error         = 3
          user_canceled      = 4
          OTHERS             = 5.
      LOOP AT w_otfdata-otfdata INTO w_otf.
        APPEND w_otf TO it_itcoo.
      ENDLOOP.
      CALL FUNCTION 'HR_IT_DISPLAY_WITH_PDF'
        TABLES
          otf_table = it_itcoo.
    ENDFORM.                    "call_paper_a
    *&      Form  call_paper_b
    *       text
    FORM call_paper_b.
      DATA: ws_doknr TYPE draw-doknr,
            ws_dokvr TYPE draw-dokvr.
      CLEAR: ws_doknr, ws_dokvr.
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname           = 'ZPPSF_SHOP_FLOOR_PAPER_B'
        IMPORTING
          fm_name            = ws_fname
        EXCEPTIONS
          no_form            = 1
          no_function_module = 2
          OTHERS             = 3.
      CHECK NOT ws_fname IS INITIAL.
      CLEAR w_otfdata.
      ls_control_param-getotf = 'X'.
      CALL FUNCTION ws_fname
        EXPORTING
          archive_index      = toa_dara
          archive_parameters = arc_params
          control_parameters = ls_control_param
          mail_recipient     = ls_recipient
          mail_sender        = ls_sender
          output_options     = ls_composer_param
          user_settings      = ' '
          is_nast            = nast
          aufnr              = p_aufnr
          doknr              = ws_doknr
          dokvr              = ws_dokvr
          flag_orig          = 'X'
        IMPORTING
          job_output_info    = w_otfdata
        EXCEPTIONS
          formatting_error   = 1
          internal_error     = 2
          send_error         = 3
          user_canceled      = 4
          OTHERS             = 5.
      LOOP AT w_otfdata-otfdata INTO w_otf.
        APPEND w_otf TO it_itcoo.
      ENDLOOP.
      CALL FUNCTION 'HR_IT_DISPLAY_WITH_PDF'
        TABLES
          otf_table = it_itcoo.
    ENDFORM.                    "call_paper_b
    Thanks,
    Chidanand

  • Generate PDF from XML file by B1i

    Hi experts i have my scenario where i create a PDF File from a XML file.
    Im creating the PDF of an electronic Invoice everything goes right but the Information that I obtained from another XML (ADO Connection) goes empty, can anyone help me with this issue please!!!
    Regards    
    David Almazán

    PLEASE Help in creating/saving forms in Livecycle Designer
    I am developing a website for a client who needs forms that can be filled out online and emailed back to her as a pdf.
    I have created an interactive form in Adobe Livecycle Designer to allow viewers online to enter data into this form.
    Now I need this form to keep the data that was entered, stay as a pdf, and be sent to my clients email who does not own Adobe Livecycle Designer. Please let me know how I am to save this form in order for it to be opened and show the information.
    Thank you so much for taking the time to help me with this!!
    Sandy

  • Issue generating pdf from xml template, data and StreamServer webservices

    We purchased Abode LiveCycle Premium Print ES4. It included a product called StreamServe which we planned to use to merge xml templates and data into a pdf file using a StreamServe webservice (for developers). It seems the StreamServe webservices are not equal to that task.  Can anyone offer a hint how this automated pdf generation can be achieved using LCPP?  (I suspect it can be done using Workbench but I don't know this to be a fact.)
    TIA,
    Bill

    Was that another shameless book plug??
    Sorry, gotta run. I just got word the Fed Ex delivery of my copy of your book just arrived. Do you 'e-sign' personalized copies?
    p.s. The preview of Chapter 7 (Transforming XML with XSLT) is great and filled with good clean examples and explanation.

Maybe you are looking for

  • UK payroll - second line support

    Hi Guys, I am assigned Uk payroll second line support... Am looking for some regular issues in UK payroll... can some body help me? What are the other areas that I should focus on? Regards Sirisha

  • CF8 64-bit in Distributed Mode; also, Windows or Linux?

    We're currently running CF7 in distributed mode; two mirrored, load-balanced Win2K3x32 web servers hosting our sites, each with the CF7 connector installed, pointing to two mirrored, load-balanced Win2K3x32 application servers running clustered CF7 E

  • TS1574 you should mention that the audio output jack is fleaky, try plugging and unplugging until red light goes off !!!

    It should be mentionned in the Apple help that the audio output jack is sometimes fleaky, as it does not reclose the speakers contacts correctly when an earphone jack is removed. This can be checked by looking into the computer audio jack and seeing

  • Iphone PS Express to Windows 8 Possible?

    I am a long-time user of PS Express for iphone and ipad. I have paid for many premium looks, special tools, etc. I recently purchased a HP laptop w/ Windows 8 and downloaded the newest versions of Adobe Photoshop Express and Adobe Revel on said devic

  • CD Writing issue

    Dear Team, We are facing the CD writing issue using domain users login. we are using windows xp in our organization and domain user can able to write Cd using CD drive but not using their application. error in the application is driver not found . ho