<?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 how to set Spool request type in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-set-spool-request-type/m-p/6848367#M1474048</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The type of spool request generated in SP01 transaction is of PDF type. Where can i find to change this type? I want to generate spool request with type Microsoft document, how it can be done?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;abhijeet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 May 2010 13:41:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-05-03T13:41:09Z</dc:date>
    <item>
      <title>how to set Spool request type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-set-spool-request-type/m-p/6848367#M1474048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The type of spool request generated in SP01 transaction is of PDF type. Where can i find to change this type? I want to generate spool request with type Microsoft document, how it can be done?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;abhijeet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 May 2010 13:41:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-set-spool-request-type/m-p/6848367#M1474048</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-03T13:41:09Z</dc:date>
    </item>
    <item>
      <title>Re: how to set Spool request type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-set-spool-request-type/m-p/6848368#M1474049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Spool contains the data of type BLOB.&lt;/P&gt;&lt;P&gt;Fetch the Spool data into internal Table of type SOLI....&lt;/P&gt;&lt;P&gt;DATA: IT_BUFFER TYPE TABLE OF SOLI WITH HEADER LINE&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   CALL FUNCTION 'RSPO_RETURN_SPOOLJOB'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       RQIDENT                   = L_SPOOLID&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      FIRST_LINE                 = 1&lt;/P&gt;&lt;/LI&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;      LAST_LINE                  =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      DESIRED_TYPE               = 'OTF'&lt;/P&gt;&lt;/LI&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;      REAL_TYPE                  =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;      SP_LANG                    =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     TABLES&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       BUFFER                     = IT_BUFFER&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then Convert it to your desired format (with CONVERT_OTF*) FM's.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this may help you..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;Krishna Chaitanya G&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 May 2010 14:23:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-set-spool-request-type/m-p/6848368#M1474049</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-03T14:23:06Z</dc:date>
    </item>
    <item>
      <title>Re: how to set Spool request type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-set-spool-request-type/m-p/6848369#M1474050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Krishna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I cant find any FM to convert spool object to word doc format. Moreover my spool object type is in PDF so executing FM 'RSPO_RETURN_SPOOLJOB' with DESIRED_TYPE = 'OTF' gives error that given spool id is not suitable for type OTF (not even for PDF). I went through other threads to find there is no straight forward method to convert spool object in word format. You may convert it into text but it looses all formatting information in original document.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 May 2010 16:28:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-set-spool-request-type/m-p/6848369#M1474050</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-03T16:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: how to set Spool request type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-set-spool-request-type/m-p/6848370#M1474051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SAP cannot convert documents into many formats. It can't convert PDF files at all (it can just convert ABAP list or OTF into PDF, that's all). You must purchase another software which will be able to do that. Another thing you can do is to embed the file into Word document (the PDF will be a simple clickable icon in the word document), using OLE2 (ABAP statements CREATE OBJECT, CALL METHOD OF, etc.)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 May 2010 22:16:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-set-spool-request-type/m-p/6848370#M1474051</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2010-05-03T22:16:19Z</dc:date>
    </item>
  </channel>
</rss>

