<?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: PRINT_TEXT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/print-text/m-p/1585853#M264135</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes Neil. I did try ur code. It goes to the windows default printer only. In fact I have a different printer in my user master. But, that is ignored.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 03 Oct 2006 11:05:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-03T11:05:57Z</dc:date>
    <item>
      <title>PRINT_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/print-text/m-p/1585845#M264127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi....I am trying to use the FM - PRINT_TEXT for printing a word document which is attached to the application - Appropriation Request. &lt;/P&gt;&lt;P&gt;(For details..goto transaction 'IMA11' and click on the long text button. If the config is set for word document, this will appear on the screen). &lt;/P&gt;&lt;P&gt;My problem is printing this document directly from the prom the program using PRINT_TEXT. I am capturing the required long text information using READ_TEXT. The problem is not with the printing but the printer. Evenif I specify the printer details in the "options" parameter of the FM, it prints the document in the windows default printer only. Can anyone help me on what needs to be done to make the document print in the required printer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find below the code i am using. &lt;/P&gt;&lt;P&gt;********************************&lt;/P&gt;&lt;P&gt;DATA: LINES LIKE TLINE OCCURS 0 with header line.&lt;/P&gt;&lt;P&gt;data: head like thead.&lt;/P&gt;&lt;P&gt;data: options like itcpo.&lt;/P&gt;&lt;P&gt;DATA: L_ITCPP LIKE ITCPP.&lt;/P&gt;&lt;P&gt;data: l_input like itcpo.&lt;/P&gt;&lt;P&gt;options-tddest = 'TEC'.&lt;/P&gt;&lt;P&gt;options-tdIMMED = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'READ_TEXT'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    CLIENT                        = SY-MANDT&lt;/P&gt;&lt;P&gt;    ID                            = 'XLTD'&lt;/P&gt;&lt;P&gt;    LANGUAGE                      = sy-langu&lt;/P&gt;&lt;P&gt;    NAME                          = '001000000041'&lt;/P&gt;&lt;P&gt;    OBJECT                        = 'IMAK'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ARCHIVE_HANDLE                = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  LOCAL_CAT                     = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  IMPORTING&lt;/P&gt;&lt;P&gt;    HEADER                        = head&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    LINES                         = lines&lt;/P&gt;&lt;P&gt;  EXCEPTIONS&lt;/P&gt;&lt;P&gt;    ID                            = 1&lt;/P&gt;&lt;P&gt;    LANGUAGE                      = 2&lt;/P&gt;&lt;P&gt;    NAME                          = 3&lt;/P&gt;&lt;P&gt;    NOT_FOUND                     = 4&lt;/P&gt;&lt;P&gt;    OBJECT                        = 5&lt;/P&gt;&lt;P&gt;    REFERENCE_CHECK               = 6&lt;/P&gt;&lt;P&gt;    WRONG_ACCESS_TO_ARCHIVE       = 7&lt;/P&gt;&lt;P&gt;    OTHERS                        = 8&lt;/P&gt;&lt;P&gt;          .&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;else.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Get the print parameters&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  l_INPUT-TDDEST = 'TEC'.&lt;/P&gt;&lt;P&gt;  l_INPUT-TDIMMED = 'X'.&lt;/P&gt;&lt;P&gt;  l_INPUT-TDCOPIES = 1.&lt;/P&gt;&lt;P&gt;  l_input-tdnewid = 'X'.&lt;/P&gt;&lt;P&gt;  l_input-tdsenddate = syst-datum.&lt;/P&gt;&lt;P&gt;  l_input-tdsendtime = syst-uzeit.&lt;/P&gt;&lt;P&gt;  l_input-tdprogram = sy-repid.&lt;/P&gt;&lt;P&gt;  L_INPUT-TDTITLE = '001000000041'.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'EFG_GET_ITCPO'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      X_ITCPO                  = l_input&lt;/P&gt;&lt;P&gt;      X_DEVICE                 = 'PRINTER'&lt;/P&gt;&lt;P&gt;      X_NO_PRINT_BUTTONS       = ' '&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    X_RDI                    = '*'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    X_ARCHIVE_PARAMS         =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    X_ARCHIVE_INDEX          =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      X_DIALOG                 = ' '&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      Y_ITCPO                  = options&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    Y_ITCPP                  =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      CANCELLED                = 1&lt;/P&gt;&lt;P&gt;      FAILED                   = 2&lt;/P&gt;&lt;P&gt;      OTHERS                   = 3&lt;/P&gt;&lt;P&gt;            .&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Print&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CALL FUNCTION 'PRINT_TEXT'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      APPLICATION                    = 'TX'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    ARCHIVE_INDEX                  = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    ARCHIVE_PARAMS                 = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      DEVICE                         = 'PRINTER'&lt;/P&gt;&lt;P&gt;      DIALOG                         = ' '&lt;/P&gt;&lt;P&gt;      HEADER                         = head&lt;/P&gt;&lt;P&gt;      OPTIONS                        = options&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    NEW_ARCHIVE_PARAMS             =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      RESULT                         = L_ITCPP&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      LINES                          = lines&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    OTFDATA                        =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      CANCELED                       = 1&lt;/P&gt;&lt;P&gt;      DEVICE                         = 2&lt;/P&gt;&lt;P&gt;      FORM                           = 3&lt;/P&gt;&lt;P&gt;      OPTIONS                        = 4&lt;/P&gt;&lt;P&gt;      UNCLOSED                       = 5&lt;/P&gt;&lt;P&gt;      UNKNOWN                        = 6&lt;/P&gt;&lt;P&gt;      FORMAT                         = 7&lt;/P&gt;&lt;P&gt;      TEXTFORMAT                     = 8&lt;/P&gt;&lt;P&gt;      COMMUNICATION                  = 9&lt;/P&gt;&lt;P&gt;      BAD_PAGEFORMAT_FOR_PRINT       = 10&lt;/P&gt;&lt;P&gt;      OTHERS                         = 11&lt;/P&gt;&lt;P&gt;            .&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;  else.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;For test purpose&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    loop at lines.&lt;/P&gt;&lt;P&gt;      write: / lines-tdline.&lt;/P&gt;&lt;P&gt;    endloop.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 11:29:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/print-text/m-p/1585845#M264127</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T11:29:42Z</dc:date>
    </item>
    <item>
      <title>Re: PRINT_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/print-text/m-p/1585846#M264128</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;Try specifying the printer right before to call the FM 'PRINT_TEXT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;options-tddest = 'TEC'.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'PRINT_TEXT'&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you prefer to specify any printer on runtime set the parameter X_DIALOG = 'X' on FM 'EFG_GET_ITCPO'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps,&lt;/P&gt;&lt;P&gt;Aubin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 18:13:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/print-text/m-p/1585846#M264128</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T18:13:01Z</dc:date>
    </item>
    <item>
      <title>Re: PRINT_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/print-text/m-p/1585847#M264129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aubin...I am already doing it thru FM-'EFG_GET_ITCPO'.&lt;/P&gt;&lt;P&gt;I hv already tried the suggestions u hv made. but, it is not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ram.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Sep 2006 04:19:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/print-text/m-p/1585847#M264129</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-27T04:19:11Z</dc:date>
    </item>
    <item>
      <title>Re: PRINT_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/print-text/m-p/1585848#M264130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By calling the EFG_GET_ITCPO you may be overwriting the field TDDEST that you previously set to X. That is why I suggest to set TDDEST to an X after calling the FM GET_ITCPO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What happens if you call the FM PRINT_TEXT with the parameter X_DIALOG = 'X'?&lt;/P&gt;&lt;P&gt;Are you getting the print dialog and able to print in the printer that are mentioning?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Aubin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Sep 2006 09:01:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/print-text/m-p/1585848#M264130</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-27T09:01:27Z</dc:date>
    </item>
    <item>
      <title>Re: PRINT_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/print-text/m-p/1585849#M264131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi...I am using the 'EFG_GET_ITCPO' only to populate the "options" parameter in PRINT_TEXT' with few more added details that gets populated automatically by the system. &lt;/P&gt;&lt;P&gt;If you look at my coding...the printer I want to use is 'TEC'. I am passing the information related to the printer when calling 'EFG_GET_ITCPO'. Since for PRINT_TEXT...I donno how to make the "dialog" parameter work I tried getting these details from EFG_GET_ITCPO by entering these details in dialog mode also when calling this. Thats the only reason for me using EFG_GET_ITCPO. &lt;/P&gt;&lt;P&gt;The print dialog box does not show up even when I make dialog = 'X' in PRINT_TEXT. I use EFG_GET_ITCPO only to get the ITCPO info that I can use to pass to PRINT_TEXT. &lt;/P&gt;&lt;P&gt;If there is any other FM which I can use..plz lemme know. What I found was...the printing happens only in the frontend default printer. Is PRINT_TEXT only for printing to a frontend printer? &lt;/P&gt;&lt;P&gt;any suggestion for an alternate FM for printing from any printer???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ram.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 Sep 2006 12:22:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/print-text/m-p/1585849#M264131</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-30T12:22:22Z</dc:date>
    </item>
    <item>
      <title>Re: PRINT_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/print-text/m-p/1585850#M264132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HAVE A LOOK AT THIS SIMPLE PRINT PROGRAM, i WAS ABLE TO DIRECT TEXT OUTPUT TO THE PRINTER OF MY CHOICE VIA DIALOG:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZNRW_TEXT_PRINT                         .&lt;/P&gt;&lt;P&gt;parameters:&lt;/P&gt;&lt;P&gt;p_sttxt LIKE rssce-tdname OBLIGATORY DEFAULT 'Z_FERTTERMS_SIGNUP_EMAIL',&lt;/P&gt;&lt;P&gt;P_DIALOG AS CHECKBOX DEFAULT 'X',&lt;/P&gt;&lt;P&gt;p_ldest LIKE nast-ldest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: t_stlines LIKE  tline OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;  data l_HEADER LIKE  THEAD.&lt;/P&gt;&lt;P&gt;  data: L_options like itcpo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;*default the printer to the user's own default&lt;/P&gt;&lt;P&gt;  SELECT SINGLE SPLD FROM usr01&lt;/P&gt;&lt;P&gt;  INTO   p_ldest&lt;/P&gt;&lt;P&gt;  WHERE bname = sy-uname.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'READ_TEXT'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      id                      = 'ST'&lt;/P&gt;&lt;P&gt;      language                = sy-langu&lt;/P&gt;&lt;P&gt;      name                    = p_sttxt&lt;/P&gt;&lt;P&gt;      object                  = 'TEXT'&lt;/P&gt;&lt;P&gt;      importing header = l_header&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      lines                   = t_stlines&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      id                      = 1&lt;/P&gt;&lt;P&gt;      language                = 2&lt;/P&gt;&lt;P&gt;      name                    = 3&lt;/P&gt;&lt;P&gt;      not_found               = 4&lt;/P&gt;&lt;P&gt;      object                  = 5&lt;/P&gt;&lt;P&gt;      reference_check         = 6&lt;/P&gt;&lt;P&gt;      wrong_access_to_archive = 7&lt;/P&gt;&lt;P&gt;      OTHERS                  = 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;L_OPTIONS-TDDEST = p_ldest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'PRINT_TEXT'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;         DIALOG                         = 'X'&lt;/P&gt;&lt;P&gt;          header                         = l_HEADER&lt;/P&gt;&lt;P&gt;         OPTIONS                        = L_OPTIONS&lt;/P&gt;&lt;P&gt;        tables&lt;/P&gt;&lt;P&gt;          lines                          = t_stlines&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        OTFDATA                        =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        CANCELED                       = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        DEVICE                         = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        FORM                           = 3&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        OPTIONS                        = 4&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        UNCLOSED                       = 5&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        UNKNOWN                        = 6&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        FORMAT                         = 7&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        TEXTFORMAT                     = 8&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        COMMUNICATION                  = 9&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        BAD_PAGEFORMAT_FOR_PRINT       = 10&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        OTHERS                         = 11&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;                .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2006 08:43:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/print-text/m-p/1585850#M264132</guid>
      <dc:creator>former_member186741</dc:creator>
      <dc:date>2006-10-02T08:43:35Z</dc:date>
    </item>
    <item>
      <title>Re: PRINT_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/print-text/m-p/1585851#M264133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Neil...Thanx for ur suggestion. &lt;/P&gt;&lt;P&gt;I have already tried that. Are U able send the print request to the printer of ur choice? May be ur frontend default printer and the printer of ur choice r the same. In my case the frontend printer, user master printer and my choice of printer for printing this are different from each other. They r 3 different printers. In this case, it goes to the frontend default printer only. &lt;/P&gt;&lt;P&gt;Any further help? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx,&lt;/P&gt;&lt;P&gt;Ram.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2006 10:48:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/print-text/m-p/1585851#M264133</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-02T10:48:13Z</dc:date>
    </item>
    <item>
      <title>Re: PRINT_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/print-text/m-p/1585852#M264134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ram,&lt;/P&gt;&lt;P&gt;I actually tested it using 'locl'and it worked. I'll try out another one to see what happems but it's different to my default one anyway.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you copy my program and try it out?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Oct 2006 09:57:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/print-text/m-p/1585852#M264134</guid>
      <dc:creator>former_member186741</dc:creator>
      <dc:date>2006-10-03T09:57:47Z</dc:date>
    </item>
    <item>
      <title>Re: PRINT_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/print-text/m-p/1585853#M264135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes Neil. I did try ur code. It goes to the windows default printer only. In fact I have a different printer in my user master. But, that is ignored.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Oct 2006 11:05:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/print-text/m-p/1585853#M264135</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-03T11:05:57Z</dc:date>
    </item>
  </channel>
</rss>

