<?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: Issue while printing PDF files in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-while-printing-pdf-files/m-p/4565747#M1077536</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;Just u can see the below code.&lt;/P&gt;&lt;P&gt;***TO GET THE SMART FORM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      FORMNAME               = 'ZB_EX_VEHICLE_ACTIVITY_FORM'&lt;/P&gt;&lt;P&gt;   IMPORTING&lt;/P&gt;&lt;P&gt;     FM_NAME                 =  FM_NAME&lt;/P&gt;&lt;P&gt;   EXCEPTIONS&lt;/P&gt;&lt;P&gt;     NO_FORM                  = 1&lt;/P&gt;&lt;P&gt;     NO_FUNCTION_MODULE       = 2&lt;/P&gt;&lt;P&gt;     OTHERS                   = 3 .&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF SMART_PARAM IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CTRL_PARA-DEVICE = 'PRINTER'.&lt;/P&gt;&lt;P&gt;      CTRL_PARA-PREVIEW = 'X'.&lt;/P&gt;&lt;P&gt;************************************************&lt;/P&gt;&lt;P&gt;***below you just check in fm_name u r passing in exporting  day_late and prog_pha. these ***two fields iam passing to smartforms. so in smartforms u need to declare in form ***interfaceas prog_pha and day_late. if u want to pass table then u can pass table in ***tables and also u need to declare it in smartforms in form interface.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION FM_NAME&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          CONTROL_PARAMETERS = CTRL_PARA&lt;/P&gt;&lt;P&gt;          USER_SETTINGS      = 'X'&lt;/P&gt;&lt;P&gt;          PROG_PHA           = PROG_PHA&lt;/P&gt;&lt;P&gt;          DAY_LATE           = DAY_LATE&lt;/P&gt;&lt;P&gt;          L_SYSDATE          = L_SYSDATE&lt;/P&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;          IT_ACTIVITY_FINAL  = IT_ACTIVITY_FINAL&lt;/P&gt;&lt;P&gt;        EXCEPTIONS&lt;/P&gt;&lt;P&gt;          FORMATTING_ERROR   = 1&lt;/P&gt;&lt;P&gt;          INTERNAL_ERROR     = 2&lt;/P&gt;&lt;P&gt;          SEND_ERROR         = 3&lt;/P&gt;&lt;P&gt;          USER_CANCELED      = 4&lt;/P&gt;&lt;P&gt;          OTHERS             = 5.&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;&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***TO GET PDF FILE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF SMART_PARAM-Z_R3_PDF = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***below u can give the file name, here iam given vehicle_activity_report and date and time. ***u can give instead of vehicle_activity_report u can give according to ur requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      concatenate&lt;/P&gt;&lt;P&gt;         'C:/VEHICLE_ACTIVITY_REPORT' sy-datum&lt;EM&gt;4(2) SY-DATUM&lt;/EM&gt;6(2) SY-DATUM+0(4) '_' sy-uzeit '.pdf' into WS_FULLPATH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      OUTPUT_OPTIONS-TDDEST = 'LP01'.&lt;/P&gt;&lt;P&gt;      OUTPUT_OPTIONS-TDNOPREV = 'X'.&lt;/P&gt;&lt;P&gt;      OUTPUT_OPTIONS-TDNEWID = 'X'.&lt;/P&gt;&lt;P&gt;      OUTPUT_OPTIONS-TDIMMED = ' '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CTRL_PARA-NO_DIALOG = 'X'.&lt;/P&gt;&lt;P&gt;      CTRL_PARA-GETOTF = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CALL FUNCTION FM_NAME&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;            CONTROL_PARAMETERS         =  CTRL_PARA&lt;/P&gt;&lt;P&gt;            OUTPUT_OPTIONS             = OUTPUT_OPTIONS&lt;/P&gt;&lt;P&gt;            USER_SETTINGS              = 'X'&lt;/P&gt;&lt;P&gt;            PROG_PHA                   = PROG_PHA&lt;/P&gt;&lt;P&gt;            DAY_LATE                   = DAY_LATE&lt;/P&gt;&lt;P&gt;            L_SYSDATE                  = L_SYSDATE&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;            JOB_OUTPUT_INFO            = MY_OUTPUT_INFO&lt;/P&gt;&lt;P&gt;            JOB_OUTPUT_OPTIONS         = JOB_OUTPUT_OPTIONS&lt;/P&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;         IT_ACTIVITY_FINAL =   IT_ACTIVITY_FINAL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;         FORMATTING_ERROR           = 1&lt;/P&gt;&lt;P&gt;         INTERNAL_ERROR             = 2&lt;/P&gt;&lt;P&gt;         SEND_ERROR                 = 3&lt;/P&gt;&lt;P&gt;         USER_CANCELED              = 4&lt;/P&gt;&lt;P&gt;         OTHERS                     = 5 .&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;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'CONVERT_OTF'&lt;/P&gt;&lt;P&gt;             EXPORTING&lt;/P&gt;&lt;P&gt;               FORMAT                = 'PDF'&lt;/P&gt;&lt;P&gt;             IMPORTING&lt;/P&gt;&lt;P&gt;               BIN_FILESIZE          = BIN_FILESIZE&lt;/P&gt;&lt;P&gt;             TABLES&lt;/P&gt;&lt;P&gt;               OTF                   = MY_OUTPUT_INFO-OTFDATA&lt;/P&gt;&lt;P&gt;               LINES                 = LINES&lt;/P&gt;&lt;P&gt;             EXCEPTIONS&lt;/P&gt;&lt;P&gt;               ERR_MAX_LINEWIDTH     = 1&lt;/P&gt;&lt;P&gt;               ERR_FORMAT            = 2&lt;/P&gt;&lt;P&gt;               ERR_CONV_NOT_POSSIBLE = 3&lt;/P&gt;&lt;P&gt;               ERR_BAD_OTF           = 4&lt;/P&gt;&lt;P&gt;               OTHERS                = 5.&lt;/P&gt;&lt;P&gt;      IF SY-SUBRC &amp;lt;&amp;gt; 0.&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;      CALL FUNCTION 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;              EXPORTING&lt;/P&gt;&lt;P&gt;                FILENAME                        = WS_FULLPATH&lt;/P&gt;&lt;P&gt;                FILETYPE                        = 'BIN'&lt;/P&gt;&lt;P&gt;              TABLES&lt;/P&gt;&lt;P&gt;                DATA_TAB                        = LINES            .&lt;/P&gt;&lt;P&gt;      IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&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;Hope useful for u.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Oct 2008 11:20:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-07T11:20:17Z</dc:date>
    <item>
      <title>Issue while printing PDF files</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-while-printing-pdf-files/m-p/4565746#M1077535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All , &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt; I am trying to print PDF document with the help of the method cl_gui_frontend_services=&amp;gt;execute . Below is the code for the same , &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD cl_gui_frontend_services=&amp;gt;execute&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;    document = gv_fname&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    APPLICATION =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    PARAMETER = &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   DEFAULT_DIRECTORY =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   MAXIMIZED =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   MINIMIZED =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    SYNCHRONOUS =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    operation = 'PRINT'&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;    cntl_error = 1&lt;/P&gt;&lt;P&gt;    error_no_gui = 2&lt;/P&gt;&lt;P&gt;    bad_parameter = 3&lt;/P&gt;&lt;P&gt;    file_not_found = 4&lt;/P&gt;&lt;P&gt;    path_not_found = 5&lt;/P&gt;&lt;P&gt;    file_extension_unknown = 6&lt;/P&gt;&lt;P&gt;    error_execute_failed = 7&lt;/P&gt;&lt;P&gt;    synchronous_failed = 8&lt;/P&gt;&lt;P&gt;    not_supported_by_gui = 9&lt;/P&gt;&lt;P&gt;    OTHERS = 10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gv_fname contains the path of the file to be printed . The file is present on the desktop. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using the above method I am able to print the PDF document but it  opens up a blank Acrobat reader while printing . I am looking for a solution to avoid opening of blank Acrobat reader while printing the PDF document . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if there is any other way to print PDF files . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any information leading to a solution for this problem would be highly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Oct 2008 06:02:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-while-printing-pdf-files/m-p/4565746#M1077535</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-07T06:02:28Z</dc:date>
    </item>
    <item>
      <title>Re: Issue while printing PDF files</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-while-printing-pdf-files/m-p/4565747#M1077536</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;Just u can see the below code.&lt;/P&gt;&lt;P&gt;***TO GET THE SMART FORM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      FORMNAME               = 'ZB_EX_VEHICLE_ACTIVITY_FORM'&lt;/P&gt;&lt;P&gt;   IMPORTING&lt;/P&gt;&lt;P&gt;     FM_NAME                 =  FM_NAME&lt;/P&gt;&lt;P&gt;   EXCEPTIONS&lt;/P&gt;&lt;P&gt;     NO_FORM                  = 1&lt;/P&gt;&lt;P&gt;     NO_FUNCTION_MODULE       = 2&lt;/P&gt;&lt;P&gt;     OTHERS                   = 3 .&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF SMART_PARAM IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CTRL_PARA-DEVICE = 'PRINTER'.&lt;/P&gt;&lt;P&gt;      CTRL_PARA-PREVIEW = 'X'.&lt;/P&gt;&lt;P&gt;************************************************&lt;/P&gt;&lt;P&gt;***below you just check in fm_name u r passing in exporting  day_late and prog_pha. these ***two fields iam passing to smartforms. so in smartforms u need to declare in form ***interfaceas prog_pha and day_late. if u want to pass table then u can pass table in ***tables and also u need to declare it in smartforms in form interface.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION FM_NAME&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          CONTROL_PARAMETERS = CTRL_PARA&lt;/P&gt;&lt;P&gt;          USER_SETTINGS      = 'X'&lt;/P&gt;&lt;P&gt;          PROG_PHA           = PROG_PHA&lt;/P&gt;&lt;P&gt;          DAY_LATE           = DAY_LATE&lt;/P&gt;&lt;P&gt;          L_SYSDATE          = L_SYSDATE&lt;/P&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;          IT_ACTIVITY_FINAL  = IT_ACTIVITY_FINAL&lt;/P&gt;&lt;P&gt;        EXCEPTIONS&lt;/P&gt;&lt;P&gt;          FORMATTING_ERROR   = 1&lt;/P&gt;&lt;P&gt;          INTERNAL_ERROR     = 2&lt;/P&gt;&lt;P&gt;          SEND_ERROR         = 3&lt;/P&gt;&lt;P&gt;          USER_CANCELED      = 4&lt;/P&gt;&lt;P&gt;          OTHERS             = 5.&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;&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***TO GET PDF FILE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF SMART_PARAM-Z_R3_PDF = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***below u can give the file name, here iam given vehicle_activity_report and date and time. ***u can give instead of vehicle_activity_report u can give according to ur requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      concatenate&lt;/P&gt;&lt;P&gt;         'C:/VEHICLE_ACTIVITY_REPORT' sy-datum&lt;EM&gt;4(2) SY-DATUM&lt;/EM&gt;6(2) SY-DATUM+0(4) '_' sy-uzeit '.pdf' into WS_FULLPATH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      OUTPUT_OPTIONS-TDDEST = 'LP01'.&lt;/P&gt;&lt;P&gt;      OUTPUT_OPTIONS-TDNOPREV = 'X'.&lt;/P&gt;&lt;P&gt;      OUTPUT_OPTIONS-TDNEWID = 'X'.&lt;/P&gt;&lt;P&gt;      OUTPUT_OPTIONS-TDIMMED = ' '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CTRL_PARA-NO_DIALOG = 'X'.&lt;/P&gt;&lt;P&gt;      CTRL_PARA-GETOTF = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CALL FUNCTION FM_NAME&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;            CONTROL_PARAMETERS         =  CTRL_PARA&lt;/P&gt;&lt;P&gt;            OUTPUT_OPTIONS             = OUTPUT_OPTIONS&lt;/P&gt;&lt;P&gt;            USER_SETTINGS              = 'X'&lt;/P&gt;&lt;P&gt;            PROG_PHA                   = PROG_PHA&lt;/P&gt;&lt;P&gt;            DAY_LATE                   = DAY_LATE&lt;/P&gt;&lt;P&gt;            L_SYSDATE                  = L_SYSDATE&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;            JOB_OUTPUT_INFO            = MY_OUTPUT_INFO&lt;/P&gt;&lt;P&gt;            JOB_OUTPUT_OPTIONS         = JOB_OUTPUT_OPTIONS&lt;/P&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;         IT_ACTIVITY_FINAL =   IT_ACTIVITY_FINAL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;         FORMATTING_ERROR           = 1&lt;/P&gt;&lt;P&gt;         INTERNAL_ERROR             = 2&lt;/P&gt;&lt;P&gt;         SEND_ERROR                 = 3&lt;/P&gt;&lt;P&gt;         USER_CANCELED              = 4&lt;/P&gt;&lt;P&gt;         OTHERS                     = 5 .&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;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'CONVERT_OTF'&lt;/P&gt;&lt;P&gt;             EXPORTING&lt;/P&gt;&lt;P&gt;               FORMAT                = 'PDF'&lt;/P&gt;&lt;P&gt;             IMPORTING&lt;/P&gt;&lt;P&gt;               BIN_FILESIZE          = BIN_FILESIZE&lt;/P&gt;&lt;P&gt;             TABLES&lt;/P&gt;&lt;P&gt;               OTF                   = MY_OUTPUT_INFO-OTFDATA&lt;/P&gt;&lt;P&gt;               LINES                 = LINES&lt;/P&gt;&lt;P&gt;             EXCEPTIONS&lt;/P&gt;&lt;P&gt;               ERR_MAX_LINEWIDTH     = 1&lt;/P&gt;&lt;P&gt;               ERR_FORMAT            = 2&lt;/P&gt;&lt;P&gt;               ERR_CONV_NOT_POSSIBLE = 3&lt;/P&gt;&lt;P&gt;               ERR_BAD_OTF           = 4&lt;/P&gt;&lt;P&gt;               OTHERS                = 5.&lt;/P&gt;&lt;P&gt;      IF SY-SUBRC &amp;lt;&amp;gt; 0.&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;      CALL FUNCTION 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;              EXPORTING&lt;/P&gt;&lt;P&gt;                FILENAME                        = WS_FULLPATH&lt;/P&gt;&lt;P&gt;                FILETYPE                        = 'BIN'&lt;/P&gt;&lt;P&gt;              TABLES&lt;/P&gt;&lt;P&gt;                DATA_TAB                        = LINES            .&lt;/P&gt;&lt;P&gt;      IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&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;Hope useful for u.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Oct 2008 11:20:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-while-printing-pdf-files/m-p/4565747#M1077536</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-07T11:20:17Z</dc:date>
    </item>
    <item>
      <title>Re: Issue while printing PDF files</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-while-printing-pdf-files/m-p/4565748#M1077537</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;&lt;/P&gt;&lt;P&gt;i think there is no PRINT which u specify for OPERATION. just chek the method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there is only OPEN operation in execute method....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you getting print out of PDF file data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;shankar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Oct 2008 11:37:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-while-printing-pdf-files/m-p/4565748#M1077537</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-07T11:37:18Z</dc:date>
    </item>
    <item>
      <title>Re: Issue while printing PDF files</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-while-printing-pdf-files/m-p/4565749#M1077538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes i do get a print out but the only issue is that it opens up a blank acrobat reader application.. So the user has to manually close it . I m looking for a solution to avoid this .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Oct 2008 11:44:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-while-printing-pdf-files/m-p/4565749#M1077538</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-07T11:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: Issue while printing PDF files</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-while-printing-pdf-files/m-p/4565750#M1077539</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;just check it out with same method by passing CLOSE to  OPERATION parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reagrds,&lt;/P&gt;&lt;P&gt;Shankar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Oct 2008 11:50:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-while-printing-pdf-files/m-p/4565750#M1077539</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-07T11:50:39Z</dc:date>
    </item>
    <item>
      <title>Re: Issue while printing PDF files</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-while-printing-pdf-files/m-p/4565751#M1077540</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;Am facing the same problem. After printing, the adobe acrobat reader is still open. Did anyone find any solution to this problem?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vishal Agrawal&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2020 14:28:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-while-printing-pdf-files/m-p/4565751#M1077540</guid>
      <dc:creator>vishal_agrawal3</dc:creator>
      <dc:date>2020-03-04T14:28:48Z</dc:date>
    </item>
  </channel>
</rss>

