<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic smartform XML output in HTTP. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-xml-output-in-http/m-p/3312165#M793299</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone, plz help me to solve this issue, I am converting my XML output in HTTP. but its showing only layout not output, which is coming in form of XML. actually My requirement to transmitt invoice in form of XML when i am doing this thing my XML output is creating spool and save their when i copy that spool and try to change in any another format, i am getting only smartform layout not output data. please tell me how i can get my output in form of http. , pdf, or any another readable form. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Vimarsh B.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 Jan 2008 05:48:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-30T05:48:16Z</dc:date>
    <item>
      <title>smartform XML output in HTTP.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-xml-output-in-http/m-p/3312165#M793299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone, plz help me to solve this issue, I am converting my XML output in HTTP. but its showing only layout not output, which is coming in form of XML. actually My requirement to transmitt invoice in form of XML when i am doing this thing my XML output is creating spool and save their when i copy that spool and try to change in any another format, i am getting only smartform layout not output data. please tell me how i can get my output in form of http. , pdf, or any another readable form. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Vimarsh B.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jan 2008 05:48:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-xml-output-in-http/m-p/3312165#M793299</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-30T05:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: smartform XML output in HTTP.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-xml-output-in-http/m-p/3312166#M793300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If u r able to create a apool from S form,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can use this code to create a PDF from that sppol&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'RSPO_RETURN_SPOOLJOB'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      RQIDENT              = GS_OTF_SPOOLS-RQIDENT&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      BUFFER               = GT_TEMP_TABLE&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      NO_SUCH_JOB          = 1&lt;/P&gt;&lt;P&gt;      JOB_CONTAINS_NO_DATA = 2&lt;/P&gt;&lt;P&gt;      SELECTION_EMPTY      = 3&lt;/P&gt;&lt;P&gt;      NO_PERMISSION        = 4&lt;/P&gt;&lt;P&gt;      CAN_NOT_ACCESS       = 5&lt;/P&gt;&lt;P&gt;      READ_ERROR           = 6&lt;/P&gt;&lt;P&gt;      TYPE_NO_MATCH        = 7.&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'CONVERT_OTF_2_PDF'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      USE_OTF_MC_CMD         = 'X'&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      BIN_FILESIZE           = SIZE&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      OTF                    = GT_OTF_TABLE&lt;/P&gt;&lt;P&gt;      DOCTAB_ARCHIVE         = DOC&lt;/P&gt;&lt;P&gt;      LINES                  = GT_PDF&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      ERR_CONV_NOT_POSSIBLE  = 1&lt;/P&gt;&lt;P&gt;      ERR_OTF_MC_NOENDMARKER = 2&lt;/P&gt;&lt;P&gt;      OTHERS                 = 3.&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jan 2008 05:55:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-xml-output-in-http/m-p/3312166#M793300</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-30T05:55:08Z</dc:date>
    </item>
    <item>
      <title>Re: smartform XML output in HTTP.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-xml-output-in-http/m-p/3312167#M793301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;after the above code, u have to use GUI download to download the pdf on to the desktop&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jan 2008 06:00:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-xml-output-in-http/m-p/3312167#M793301</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-30T06:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: smartform XML output in HTTP.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-xml-output-in-http/m-p/3312168#M793302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Narendra,&lt;/P&gt;&lt;P&gt;Thanks for your answer one more thing i want to ask if i want to convert my spool xml directly to http, what i have to do. because some time i am getting data duplication. how to stop duplication of data and get my xml in particular format because in pdf also its not coming in particular format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Vimarsh B.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jan 2008 07:10:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-xml-output-in-http/m-p/3312168#M793302</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-30T07:10:40Z</dc:date>
    </item>
  </channel>
</rss>

