<?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  Report automatically without dialog in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/print-report-automatically-without-dialog/m-p/8590956#M1661520</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Reksap,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I could not see anything wrong. See the test I did on a local printer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Main program:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT  zprog_spool.

DATA:
      w_param      TYPE pri_params,
      w_arc_params TYPE arc_params,
      v_valid      TYPE c LENGTH 1.

DATA: t_param TYPE STANDARD TABLE OF rsparams.

FIELD-SYMBOLS: &amp;lt;f_param&amp;gt; LIKE LINE OF t_param.

CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS'
  EXPORTING
    curr_report     = 'ZIMPRIMI_SPOOL'
  TABLES
    selection_table = t_param
  EXCEPTIONS
    OTHERS          = 1.

LOOP AT t_param ASSIGNING &amp;lt;f_param&amp;gt;.
  &amp;lt;f_param&amp;gt;-low = 'A'.
ENDLOOP.

WRITE: /001 'START'.

CALL FUNCTION 'GET_PRINT_PARAMETERS'
  EXPORTING
    copies                 = 1
    destination            = 'LOCL'
    immediately            = 'X'
    layout                 = 'X_65_200'
    line_count             = 10
    line_size              = 255
    no_dialog              = 'X'
  IMPORTING
    out_archive_parameters = w_arc_params
    out_parameters         = w_param
    valid                  = v_valid
  EXCEPTIONS
    archive_info_not_found = 1
    invalid_print_params   = 2
    invalid_archive_params = 3
    OTHERS                 = 4.
IF sy-subrc &amp;lt;&amp;gt; 0.
  MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
          WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ENDIF.

SUBMIT zimprimi_spool WITH SELECTION-TABLE t_param
TO SAP-SPOOL
SPOOL PARAMETERS w_param
ARCHIVE PARAMETERS w_arc_params
WITHOUT SPOOL DYNPRO
AND RETURN.

WRITE: /001 'END'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Program Print:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT  ZIMPRIMI_SPOOL.

PARAMETERS: P_FIELD TYPE C.

write: /001 'Value Field:', p_field.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Bruno Xavier.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Mar 2012 01:52:04 GMT</pubDate>
    <dc:creator>brunobex</dc:creator>
    <dc:date>2012-03-07T01:52:04Z</dc:date>
    <item>
      <title>Print  Report automatically without dialog</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/print-report-automatically-without-dialog/m-p/8590955#M1661519</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;I have requirement to print output of report from another program automatically. Below is mycode.My problem is that it is displaying Print dialog although I have set No dialog as X in GET_PRINT_PARAMETERS.Am I doing something wrong ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help appericiated.&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 'GET_PRINT_PARAMETERS'&lt;/P&gt;&lt;P&gt;               EXPORTING&lt;/P&gt;&lt;P&gt;                 DESTINATION                    = USR01-SPLD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                 IMMEDIATELY                    = 'X'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                 LAYOUT                         = iv_paart&lt;/P&gt;&lt;P&gt;                 LINE_COUNT                     = iv_linct&lt;/P&gt;&lt;P&gt;                 LINE_SIZE                      = iv_linsz&lt;/P&gt;&lt;P&gt;                 NO_DIALOG                      = 'X'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;               IMPORTING&lt;/P&gt;&lt;P&gt;                 OUT_ARCHIVE_PARAMETERS         = gs_arc_par&lt;/P&gt;&lt;P&gt;                 OUT_PARAMETERS                 = gs_pri_par&lt;/P&gt;&lt;P&gt;                 VALID                          = gv_valid&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                VALID_FOR_SPOOL_CREATION       =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;               EXCEPTIONS&lt;/P&gt;&lt;P&gt;                 ARCHIVE_INFO_NOT_FOUND         = 1&lt;/P&gt;&lt;P&gt;                 INVALID_PRINT_PARAMS           = 2&lt;/P&gt;&lt;P&gt;                 INVALID_ARCHIVE_PARAMS         = 3&lt;/P&gt;&lt;P&gt;                 OTHERS                         = 4&lt;/P&gt;&lt;P&gt;                        .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    SUBMIT Ztest WITH SELECTION-TABLE lt_param&lt;/P&gt;&lt;P&gt;                        TO SAP-SPOOL&lt;/P&gt;&lt;P&gt;                        SPOOL   PARAMETERS gs_pri_par&lt;/P&gt;&lt;P&gt;                        ARCHIVE PARAMETERS gs_arc_par&lt;/P&gt;&lt;P&gt;                        WITHOUT SPOOL DYNPRO&lt;/P&gt;&lt;P&gt;                        AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;              IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;              MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                      WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;              ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Reksap&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2012 23:43:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/print-report-automatically-without-dialog/m-p/8590955#M1661519</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-03-06T23:43:31Z</dc:date>
    </item>
    <item>
      <title>Re: Print  Report automatically without dialog</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/print-report-automatically-without-dialog/m-p/8590956#M1661520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Reksap,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I could not see anything wrong. See the test I did on a local printer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Main program:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT  zprog_spool.

DATA:
      w_param      TYPE pri_params,
      w_arc_params TYPE arc_params,
      v_valid      TYPE c LENGTH 1.

DATA: t_param TYPE STANDARD TABLE OF rsparams.

FIELD-SYMBOLS: &amp;lt;f_param&amp;gt; LIKE LINE OF t_param.

CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS'
  EXPORTING
    curr_report     = 'ZIMPRIMI_SPOOL'
  TABLES
    selection_table = t_param
  EXCEPTIONS
    OTHERS          = 1.

LOOP AT t_param ASSIGNING &amp;lt;f_param&amp;gt;.
  &amp;lt;f_param&amp;gt;-low = 'A'.
ENDLOOP.

WRITE: /001 'START'.

CALL FUNCTION 'GET_PRINT_PARAMETERS'
  EXPORTING
    copies                 = 1
    destination            = 'LOCL'
    immediately            = 'X'
    layout                 = 'X_65_200'
    line_count             = 10
    line_size              = 255
    no_dialog              = 'X'
  IMPORTING
    out_archive_parameters = w_arc_params
    out_parameters         = w_param
    valid                  = v_valid
  EXCEPTIONS
    archive_info_not_found = 1
    invalid_print_params   = 2
    invalid_archive_params = 3
    OTHERS                 = 4.
IF sy-subrc &amp;lt;&amp;gt; 0.
  MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
          WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ENDIF.

SUBMIT zimprimi_spool WITH SELECTION-TABLE t_param
TO SAP-SPOOL
SPOOL PARAMETERS w_param
ARCHIVE PARAMETERS w_arc_params
WITHOUT SPOOL DYNPRO
AND RETURN.

WRITE: /001 'END'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Program Print:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT  ZIMPRIMI_SPOOL.

PARAMETERS: P_FIELD TYPE C.

write: /001 'Value Field:', p_field.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Bruno Xavier.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2012 01:52:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/print-report-automatically-without-dialog/m-p/8590956#M1661520</guid>
      <dc:creator>brunobex</dc:creator>
      <dc:date>2012-03-07T01:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: Print  Report automatically without dialog</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/print-report-automatically-without-dialog/m-p/8590957#M1661521</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;Can you check in run time if the destination printer is getting passsed to the function module , in smartforms  If you do not specify an output device, SAP Smart Forms opens the spool dialog even if NO_DIALOG is set. Dont know if it is applicable in your scenario , please do a check .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ratheesh BS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2012 02:52:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/print-report-automatically-without-dialog/m-p/8590957#M1661521</guid>
      <dc:creator>former_member195421</dc:creator>
      <dc:date>2012-03-07T02:52:35Z</dc:date>
    </item>
    <item>
      <title>Re: Print  Report automatically without dialog</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/print-report-automatically-without-dialog/m-p/8590958#M1661522</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;I cannot see anything wrong in your code. Just try giving the mode as &lt;STRONG&gt;CURRENT&lt;/STRONG&gt; in the import parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL FUNCTION 'GET_PRINT_PARAMETERS'
  EXPORTING
    mode                   = 'CURRENT' " Give the mode as CURRENT
    destination            = 'LOCL'
    immediately            = 'X'
    layout                 = 'X_65_200'
    line_count             = 10
    line_size              = 255
    no_dialog              = 'X'
  IMPORTING
    out_archive_parameters = wa_arc_params
    out_parameters         = wa_out_params
    valid                  = p_valid
  EXCEPTIONS
    archive_info_not_found = 1
    invalid_print_params   = 2
    invalid_archive_params = 3
    OTHERS                 = 4.
IF sy-subrc NE 0.
  MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
          WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Danish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2012 03:48:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/print-report-automatically-without-dialog/m-p/8590958#M1661522</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-03-07T03:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: Print  Report automatically without dialog</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/print-report-automatically-without-dialog/m-p/8590959#M1661523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bruno,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for replying.I copy your code also but it still display me dialog for printer. the dialog box is not for asking output device but printer.I couldn't paste screen here.Giving details below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Printer :  name,status,type where,and Properties pushbutton&lt;/P&gt;&lt;P&gt;Print Range &lt;/P&gt;&lt;P&gt;Copies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  ZPRINTTEST.

DATA:
      w_param      TYPE pri_params,
      w_arc_params TYPE arc_params,
      v_valid      TYPE c LENGTH 1.

DATA: t_param TYPE STANDARD TABLE OF rsparams.

FIELD-SYMBOLS: &amp;lt;f_param&amp;gt; LIKE LINE OF t_param.

CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS'
  EXPORTING
    curr_report     = 'ZPRINTTEST1'
  TABLES
    selection_table = t_param
  EXCEPTIONS
    OTHERS          = 1.

LOOP AT t_param ASSIGNING &amp;lt;f_param&amp;gt;.
  &amp;lt;f_param&amp;gt;-low = 'A'.
ENDLOOP.

WRITE: /001 'START'.


CALL FUNCTION 'GET_PRINT_PARAMETERS'
  EXPORTING
    copies                 = 1
    destination            = 'FRON'
    immediately            = 'X'
    layout                 = 'X_65_255'
    line_count             = 10
    line_size              = 255
    no_dialog              = 'X'
  IMPORTING
    out_archive_parameters = w_arc_params
    out_parameters         = w_param
    valid                  = v_valid
  EXCEPTIONS
    archive_info_not_found = 1
    invalid_print_params   = 2
    invalid_archive_params = 3
    OTHERS                 = 4.
IF sy-subrc &amp;lt;&amp;gt; 0.
*  MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
*          WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ENDIF.

SUBMIT ZPRINTTEST1 WITH SELECTION-TABLE t_param
TO SAP-SPOOL
SPOOL PARAMETERS w_param
ARCHIVE PARAMETERS w_arc_params
WITHOUT SPOOL DYNPRO
AND RETURN.

WRITE: /001 'END'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  ZPRINTTEST1.



PARAMETERS: P_FIELD TYPE C.

write: /001 'Value Field:', p_field.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Reksap&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2012 18:12:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/print-report-automatically-without-dialog/m-p/8590959#M1661523</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-03-07T18:12:37Z</dc:date>
    </item>
    <item>
      <title>Re: Print  Report automatically without dialog</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/print-report-automatically-without-dialog/m-p/8590960#M1661524</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;I think the problem is not with the print program but with the printer settings in SPAD transaction code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the printer/spool/device settings in SPAD. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Btw are you using a frontend printer i.e. it should create a spool and also print it directly on the local printer? If yes then maybe your local printer is not properly configured to SAP output device. Generally, we use LOCL as local printer but I think you are using different option 'FRON'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Saba&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Saba Sayed on Mar 7, 2012 7:40 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2012 18:40:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/print-report-automatically-without-dialog/m-p/8590960#M1661524</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-03-07T18:40:24Z</dc:date>
    </item>
    <item>
      <title>Re: Print  Report automatically without dialog</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/print-report-automatically-without-dialog/m-p/8590961#M1661525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Saba,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also feel the same but don't know which setting need to bechanged in SPAD.The ouput device is FRON in our system.Spool is getting created and also printing it to default printer but this print dialog is not suppressed.&lt;/P&gt;&lt;P&gt;In SPAD for Output device FRON do we need to change Access method.In our case it is G : Front End Printing with control Tech.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rekha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2012 19:08:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/print-report-automatically-without-dialog/m-p/8590961#M1661525</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-03-07T19:08:45Z</dc:date>
    </item>
    <item>
      <title>Re: Print  Report automatically without dialog</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/print-report-automatically-without-dialog/m-p/8590962#M1661526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rekha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try changing the access method to F: Printing on Front End Computer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if this works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Saba&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2012 20:22:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/print-report-automatically-without-dialog/m-p/8590962#M1661526</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-03-07T20:22:46Z</dc:date>
    </item>
    <item>
      <title>Re: Print  Report automatically without dialog</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/print-report-automatically-without-dialog/m-p/8590963#M1661527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Saba.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It worked now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Reksap.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2012 21:16:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/print-report-automatically-without-dialog/m-p/8590963#M1661527</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-03-07T21:16:25Z</dc:date>
    </item>
  </channel>
</rss>

