<?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 Re: PRINTER in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/printer/m-p/2322757#M510106</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;This has to be given in the settings of the Output type in Application document&lt;/P&gt;&lt;P&gt;example for Sales order &lt;/P&gt;&lt;P&gt;from Menu goto Header -&amp;gt; output &lt;/P&gt;&lt;P&gt;define the output type BA00 with the medium, partner no etc&lt;/P&gt;&lt;P&gt;select that row press communication methods and  further data&lt;/P&gt;&lt;P&gt;in that have to give the printer name etc.&lt;/P&gt;&lt;P&gt;all this data of configuration is stored in NAST table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points for useful Answers&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Jun 2007 12:41:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-06T12:41:47Z</dc:date>
    <item>
      <title>PRINTER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/printer/m-p/2322756#M510105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HAI,&lt;/P&gt;&lt;P&gt;        HOW CAN I CHANGE PRINTER DEVICE BEFORE PRINTING ?&lt;/P&gt;&lt;P&gt;IS IT ANY FM FOR THAT ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THANK YOU&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASHOK KUMAR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 12:37:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/printer/m-p/2322756#M510105</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T12:37:00Z</dc:date>
    </item>
    <item>
      <title>Re: PRINTER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/printer/m-p/2322757#M510106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;This has to be given in the settings of the Output type in Application document&lt;/P&gt;&lt;P&gt;example for Sales order &lt;/P&gt;&lt;P&gt;from Menu goto Header -&amp;gt; output &lt;/P&gt;&lt;P&gt;define the output type BA00 with the medium, partner no etc&lt;/P&gt;&lt;P&gt;select that row press communication methods and  further data&lt;/P&gt;&lt;P&gt;in that have to give the printer name etc.&lt;/P&gt;&lt;P&gt;all this data of configuration is stored in NAST table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points for useful Answers&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 12:41:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/printer/m-p/2322757#M510106</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T12:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: PRINTER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/printer/m-p/2322758#M510107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;  if u r working with SAP SCRIPT, we have one FM to change the printer.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;CALL FUNCTION 'OPEN_FORM'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         EXPORTING &lt;/P&gt;&lt;P&gt;                           FORM = SPACE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                           LANGUAGE = SY-LANGU&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                           DEVICE = 'PRINTER'&lt;/P&gt;&lt;P&gt;                           &lt;/P&gt;&lt;P&gt;                           DIALOG = 'X'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPTIONS = SPACE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPLICATION = 'TX'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ARCHIVE_INDEX = SPACE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ARCHIVE_PARAMS = SPACE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;              LANGUAGE =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RESULT =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NEW_ARCHIVE_PARAMS =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXCEPTIONS CANCELED =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DEVICE =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPTIONS =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UNCLOSED =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DEVICE&lt;/P&gt;&lt;P&gt; SAPscript can format a text for output on different device types. Enter the desired device type here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Possible values: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'PRINTER' print output&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'TELEX' telex output&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'TELEFAX' telefax output&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'ABAP' screen output as ABAP list&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(interface of the calling program)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'SCREEN' screen output as ABAP list&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(interface controlled by SAPscript,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can be set with parameter APPLICATION)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The user can display output formatted for PRINTER, TELEX, or TELEFAX as print view on the screen. From within the program, you can set the field TDPREVIEW (structure ITCPO) in the parameter OPTIONS, or the user can call the function on the print control screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The fields TDSENDTIME and TDSENDDATE designed for fax output (structure ITCPO) will be used for future enhancements; they are not used at present.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Default value: 'PRINTER'&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;sudheer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 12:47:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/printer/m-p/2322758#M510107</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T12:47:09Z</dc:date>
    </item>
  </channel>
</rss>

