<?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: smart form in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-form/m-p/1980645#M401129</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;AS SUSGUSTED IS NOT WORKING&lt;/P&gt;&lt;P&gt;PL. HELP ME AGAIN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MUKESH&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Feb 2007 06:16:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-26T06:16:56Z</dc:date>
    <item>
      <title>smart form</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-form/m-p/1980642#M401126</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;can any body tell me how can i call a smartform in my prog. without printview / print selection screen option&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g &lt;/P&gt;&lt;P&gt;i made a prog and call a smart form in that .&lt;/P&gt;&lt;P&gt;when i run this prog after putting data in selection screen, it  ask for printer device selection  screen then i clik on  print preview or print  butoon then it show report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so my prob. is i dont want that window come, i take default printer and show report directly.&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;mukesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2007 12:46:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-form/m-p/1980642#M401126</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-23T12:46:48Z</dc:date>
    </item>
    <item>
      <title>Re: smart form</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-form/m-p/1980643#M401127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Set the following parameters of the FM interface:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONTROL_PARAMETERS-DEVICE = &amp;lt;printer_name&amp;gt;.&lt;/P&gt;&lt;P&gt;CONTROL_PARAMETERS-NO_DIALOG = 'X'.&lt;/P&gt;&lt;P&gt;CONTROL_PARAMETERS-PREVIEW = space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OUTPUT_OPTIONS-TDDEST = &amp;lt;printer_name&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure about the parameters for the printer name (whether you have to set the first one and/or the second one); I also don't remember whether this represents the printer short or long name; just play with it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Guenther&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just double-checked, you'll need to set (at least) &lt;/P&gt;&lt;P&gt;OUTPUT_OPTIONS-TDDEST = &amp;lt;printer_name&amp;gt; to pass the printer name. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Guenther Schober&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2007 13:40:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-form/m-p/1980643#M401127</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-23T13:40:49Z</dc:date>
    </item>
    <item>
      <title>Re: smart form</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-form/m-p/1980644#M401128</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 the printer is only one u can add this it to Parameters ans set as Default like below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS:         V_PRINTER   LIKE TSP03D-NAME default 'Printer Name'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And then u pass the parameters to following conditions&lt;/P&gt;&lt;P&gt;OUTPUT_OPTIONS-TDDEST           =  V_PRINTER.&lt;/P&gt;&lt;P&gt;    OUTPUT_OPTIONS-TDNOPREV         =  K_X.&lt;/P&gt;&lt;P&gt;    OUTPUT_OPTIONS-TDIMMED          =  K_X.&lt;/P&gt;&lt;P&gt;    CONTROL_PARAMETERS-PREVIEW      =  ' '.&lt;/P&gt;&lt;P&gt;    CONTROL_PARAMETERS-NO_DIALOG    =  K_X.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If helps please award points.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2007 13:51:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-form/m-p/1980644#M401128</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-23T13:51:56Z</dc:date>
    </item>
    <item>
      <title>Re: smart form</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-form/m-p/1980645#M401129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;AS SUSGUSTED IS NOT WORKING&lt;/P&gt;&lt;P&gt;PL. HELP ME AGAIN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MUKESH&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Feb 2007 06:16:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-form/m-p/1980645#M401129</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-26T06:16:56Z</dc:date>
    </item>
    <item>
      <title>Re: smart form</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-form/m-p/1980646#M401130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you sure that the printer name you are passing is correct?&lt;/P&gt;&lt;P&gt;Did you try short and long name? Try to set a default printer in your user profile (SU01).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Guenther&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Feb 2007 13:51:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-form/m-p/1980646#M401130</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-26T13:51:57Z</dc:date>
    </item>
    <item>
      <title>Re: smart form</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-form/m-p/1980647#M401131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IN MY LOGIN ZDMP IS DEFAULT &lt;/P&gt;&lt;P&gt;my code is  for calling smart form is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION fname&lt;/P&gt;&lt;P&gt;      EXPORTING&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_INDEX_TAB          =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ARCHIVE_PARAMETERS         =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CONTROL_PARAMETERS         =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*OUTPUT_OPTIONS-TDDEST = 'ZDMP'&lt;/P&gt;&lt;P&gt;*OUTPUT_OPTIONS-TDNOPREV = 'K_X'&lt;/P&gt;&lt;P&gt;*OUTPUT_OPTIONS-TDIMMED = 'K_X'&lt;/P&gt;&lt;P&gt;CONTROL_PARAMETERS-PREVIEW = ' '&lt;/P&gt;&lt;P&gt;CONTROL_PARAMETERS-DEVICE = 'ZDMP'&lt;/P&gt;&lt;P&gt;CONTROL_PARAMETERS-NO_DIALOG = ' X'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MAIL_APPL_OBJ              =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MAIL_RECIPIENT             =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MAIL_SENDER                =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OUTPUT_OPTIONS             =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  USER_SETTINGS              = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        wa_vbak                    = vbak&lt;/P&gt;&lt;P&gt;        tot_15                     = tot_15&lt;/P&gt;&lt;P&gt;        tot_31                     = tot_31&lt;/P&gt;&lt;P&gt;        tot_46                     = tot_46&lt;/P&gt;&lt;P&gt;        tot_61                     = tot_61&lt;/P&gt;&lt;P&gt;        tot_noterm                 = tot_noterm&lt;/P&gt;&lt;P&gt;        tot_overdue                = tot_overdue&lt;/P&gt;&lt;P&gt;        tot_1                      = tot_1&lt;/P&gt;&lt;P&gt;        vskfor                     = vskfor&lt;/P&gt;&lt;P&gt;        totrcpt                    = totrcpt&lt;/P&gt;&lt;P&gt;        totnotdue                  = totnotdue&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DOCUMENT_OUTPUT_INFO       =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  JOB_OUTPUT_INFO            =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  JOB_OUTPUT_OPTIONS         =&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;  FORMATTING_ERROR           = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  INTERNAL_ERROR             = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SEND_ERROR                 = 3&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  USER_CANCELED              = 4&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS                     = 5&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Feb 2007 07:51:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-form/m-p/1980647#M401131</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-27T07:51:35Z</dc:date>
    </item>
    <item>
      <title>Re: smart form</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-form/m-p/1980648#M401132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mukesh,&lt;/P&gt;&lt;P&gt;in CONTROL_PARAMETERS-DEVICE you can only set&lt;/P&gt;&lt;P&gt;PRINTER, SCREEN, TELEFY, EMAIL, not a speacial printer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to set another printer as default use the&lt;/P&gt;&lt;P&gt;strukture: OUTPUT_OPTIONS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Feb 2007 08:18:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-form/m-p/1980648#M401132</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-27T08:18:16Z</dc:date>
    </item>
  </channel>
</rss>

