<?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: skip selection screen output device in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-selection-screen-output-device/m-p/3167006#M753437</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; U did not mention the typr u r using it if it is script we hav function module called OPEN_FORM there in exproting we hav device option there u can giive ur own device by this u wont get the popup screen....&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;Sana.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward for helpful answers.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Dec 2007 04:29:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-18T04:29:00Z</dc:date>
    <item>
      <title>skip selection screen output device</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-selection-screen-output-device/m-p/3167004#M753435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Question. Is there anyway that i could skip the output device screen selection and straight go to 'print preview'? at the same i wish to set the printer to 'LOCL'. Thanks in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 04:22:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-selection-screen-output-device/m-p/3167004#M753435</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-18T04:22:10Z</dc:date>
    </item>
    <item>
      <title>Re: skip selection screen output device</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-selection-screen-output-device/m-p/3167005#M753436</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 you are using smartforms then go to global settings---&amp;gt;form interface&lt;/P&gt;&lt;P&gt;--&amp;gt;Export tab ---&amp;gt;JOB_OUTPUT_OPTIONS type SSFCRESOP which has all the setting for output option and &lt;STRONG&gt;TDIMMED&lt;/STRONG&gt; is the component associated with that which should be set to X in the program..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this will help you ..&lt;/P&gt;&lt;P&gt;if its a script then this is the code...&lt;/P&gt;&lt;P&gt;tables : itcpo.&lt;/P&gt;&lt;P&gt;FORM open_form .&lt;/P&gt;&lt;P&gt;  itcpo-tdnewid = 'X'.&lt;/P&gt;&lt;P&gt;  itcpo-tdimmed = p_imme.&lt;/P&gt;&lt;P&gt;  itcpo-tddest  = 'LOCL'.&lt;/P&gt;&lt;P&gt;  itcpo-tddataset = 'DELB'.&lt;/P&gt;&lt;P&gt;  itcpo-tdsuffix1 = p_ldest.&lt;/P&gt;&lt;P&gt;  itcpo-tdsuffix2 = lips-vbeln.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'OPEN_FORM'&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               = space&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     archive_params              = space&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;      form                        = 'ZV_DEL_LABEL'&lt;/P&gt;&lt;P&gt;      language                    = sy-langu&lt;/P&gt;&lt;P&gt;      options                     = itcpo&lt;/P&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;      mail_options                = 6&lt;/P&gt;&lt;P&gt;      archive_error               = 7&lt;/P&gt;&lt;P&gt;      invalid_fax_number          = 8&lt;/P&gt;&lt;P&gt;      more_params_needed_in_batch = 9&lt;/P&gt;&lt;P&gt;      OTHERS                      = 10.&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;ENDFORM.                    " open_form&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;karthik..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: karthikeyan sukumar on Dec 18, 2007 10:00 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 04:28:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-selection-screen-output-device/m-p/3167005#M753436</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-18T04:28:24Z</dc:date>
    </item>
    <item>
      <title>Re: skip selection screen output device</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-selection-screen-output-device/m-p/3167006#M753437</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; U did not mention the typr u r using it if it is script we hav function module called OPEN_FORM there in exproting we hav device option there u can giive ur own device by this u wont get the popup screen....&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;Sana.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward for helpful answers.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 04:29:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-selection-screen-output-device/m-p/3167006#M753437</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-18T04:29:00Z</dc:date>
    </item>
    <item>
      <title>Re: skip selection screen output device</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-selection-screen-output-device/m-p/3167007#M753438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry. Forgot to mention that it's on sapscript. Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 04:39:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-selection-screen-output-device/m-p/3167007#M753438</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-18T04:39:49Z</dc:date>
    </item>
    <item>
      <title>Re: skip selection screen output device</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-selection-screen-output-device/m-p/3167008#M753439</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;then u can try the above code which will help you i belive..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;karthik.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 05:04:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-selection-screen-output-device/m-p/3167008#M753439</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-18T05:04:00Z</dc:date>
    </item>
    <item>
      <title>Re: skip selection screen output device</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-selection-screen-output-device/m-p/3167009#M753440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply. I shall try with the codes and let you know of the outcome. One question though, where should i place these codes? sorry, i'm very new to ABAP. Currently, i have one main program A which dynamically submits userID to the selection screen of program B and automatically process it. now, i'm returned with the screen output device screen. Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 06:39:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-selection-screen-output-device/m-p/3167009#M753440</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-18T06:39:38Z</dc:date>
    </item>
    <item>
      <title>Re: skip selection screen output device</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-selection-screen-output-device/m-p/3167010#M753441</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;In your sap script you would be having open form,write form and close form you have to declare before open form...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have pasted a sample code here you can check it.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZV_DELIVERY_SLIP_PRINT                  .&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Tables:&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables: likp,vbak,adrc,vbpa,kna1,sadr,ITCPO,LIPS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p_vbeln like likp-vbeln obligatory,&lt;/P&gt;&lt;P&gt;            p_proj(50) type C,&lt;/P&gt;&lt;P&gt;            p_node(50) type c,&lt;/P&gt;&lt;P&gt;            p_pal(50) type c default 'PALLET 1 of 2',&lt;/P&gt;&lt;P&gt;            p_ldest like nast-ldest default 'LOCL',&lt;/P&gt;&lt;P&gt;            p_imme type c default 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Start-of-selection.&lt;/P&gt;&lt;P&gt;  perform 100_collect_db_recs.&lt;/P&gt;&lt;P&gt;  perform 200_collect_adrc_details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  100_collect_db_recs&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; --&amp;gt;  p1        text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; &amp;lt;--  p2        text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM 100_collect_db_recs .&lt;/P&gt;&lt;P&gt;  select single * from LIPS where vbeln = p_vbeln.&lt;/P&gt;&lt;P&gt;  if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;    write:/02 'Delivery does not exist!'.&lt;/P&gt;&lt;P&gt;    stop.&lt;/P&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;P&gt;    select single * from vbak where vbeln = lips-vgbel.&lt;/P&gt;&lt;P&gt;    if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;      write:/02 'Sales Order does not exist!'.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;ENDFORM.                    " 100_collect_db_recs&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  200_collect_adrc_details&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; --&amp;gt;  p1        text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; &amp;lt;--  p2        text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM 200_collect_adrc_details .&lt;/P&gt;&lt;P&gt;  SELECT SINGLE *&lt;/P&gt;&lt;P&gt;  FROM VBAK&lt;/P&gt;&lt;P&gt;  WHERE VBELN EQ vbak-kunnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT SINGLE *&lt;/P&gt;&lt;P&gt;  FROM KNA1&lt;/P&gt;&lt;P&gt;  WHERE KUNNR EQ vbak-kunnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT SINGLE ADRNR&lt;/P&gt;&lt;P&gt;    INTO vbpa-adrnr&lt;/P&gt;&lt;P&gt;    FROM VBPA&lt;/P&gt;&lt;P&gt;   WHERE VBELN EQ vbak-vbeln&lt;/P&gt;&lt;P&gt;     AND PARVW EQ 'WE'.              " Sold to party.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT SINGLE NAME1&lt;/P&gt;&lt;P&gt;    INTO sadr-name1&lt;/P&gt;&lt;P&gt;    FROM SADR&lt;/P&gt;&lt;P&gt;   WHERE ADRNR EQ vbpa-ADRNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT NAME1 NAME2 NAME3 NAME4 STREET CITY1 CITY2 PO_BOX&lt;/P&gt;&lt;P&gt;                             STR_SUPPL1 POST_CODE1 FROM&lt;/P&gt;&lt;P&gt;    ADRC INTO (ADRC-NAME1, ADRC-NAME2,ADRC-NAME3,ADRC-NAME4,&lt;/P&gt;&lt;P&gt;                ADRC-STREET,ADRC-CITY1,ADRC-CITY2,ADRC-PO_BOX,&lt;/P&gt;&lt;P&gt;                ADRC-STR_SUPPL1,ADRC-POST_CODE1)&lt;/P&gt;&lt;P&gt;                WHERE ADDRNUMBER = vbpa-ADRNR.&lt;/P&gt;&lt;P&gt;    EXIT.&lt;/P&gt;&lt;P&gt;  ENDSELECT.&lt;/P&gt;&lt;P&gt;  if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    perform open_form.&lt;/P&gt;&lt;P&gt;    perform start_form.&lt;/P&gt;&lt;P&gt;    perform write_form.&lt;/P&gt;&lt;P&gt;    perform end_form.&lt;/P&gt;&lt;P&gt;    perform close_form.&lt;/P&gt;&lt;P&gt;    Write:/02 'Delivery Label Printed!'.&lt;/P&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;P&gt;    write:/02 'Error Collecting Address Details!'.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;ENDFORM.                    " 200_collect_adrc_details&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  open_form&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; --&amp;gt;  p1        text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; &amp;lt;--  p2        text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM open_form .&lt;/P&gt;&lt;P&gt;  itcpo-tdnewid = 'X'.&lt;/P&gt;&lt;P&gt;  itcpo-tdimmed = p_imme.&lt;/P&gt;&lt;P&gt;  itcpo-tddest  = 'LOCL'.&lt;/P&gt;&lt;P&gt;  itcpo-tddataset = 'DELB'.&lt;/P&gt;&lt;P&gt;  itcpo-tdsuffix1 = p_ldest.&lt;/P&gt;&lt;P&gt;  itcpo-tdsuffix2 = lips-vbeln.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'OPEN_FORM'&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               = space&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     archive_params              = space&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;      form                        = 'ZV_DEL_LABEL'&lt;/P&gt;&lt;P&gt;      language                    = sy-langu&lt;/P&gt;&lt;P&gt;      options                     = itcpo&lt;/P&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;      mail_options                = 6&lt;/P&gt;&lt;P&gt;      archive_error               = 7&lt;/P&gt;&lt;P&gt;      invalid_fax_number          = 8&lt;/P&gt;&lt;P&gt;      more_params_needed_in_batch = 9&lt;/P&gt;&lt;P&gt;      OTHERS                      = 10.&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;ENDFORM.                    " open_form&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  start_form&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; --&amp;gt;  p1        text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; &amp;lt;--  p2        text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM start_form .&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'START_FORM'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      startpage = 'FIRST'&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      form      = 1&lt;/P&gt;&lt;P&gt;      format    = 2&lt;/P&gt;&lt;P&gt;      unended   = 3&lt;/P&gt;&lt;P&gt;      unopened  = 4&lt;/P&gt;&lt;P&gt;      unused    = 5&lt;/P&gt;&lt;P&gt;      OTHERS    = 6.&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;ENDFORM.                    " start_form&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  write_form&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; --&amp;gt;  p1        text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; &amp;lt;--  p2        text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM write_form .&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'WRITE_FORM'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;             element                  = 'TEXT'&lt;/P&gt;&lt;P&gt;             function                 = 'SET'&lt;/P&gt;&lt;P&gt;             type                     = 'BODY'&lt;/P&gt;&lt;P&gt;             window                   = 'MAIN'&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;        PENDING_LINES            =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        EXCEPTIONS&lt;/P&gt;&lt;P&gt;             element                  = 1&lt;/P&gt;&lt;P&gt;             function                 = 2&lt;/P&gt;&lt;P&gt;             type                     = 3&lt;/P&gt;&lt;P&gt;             unopened                 = 4&lt;/P&gt;&lt;P&gt;             unstarted                = 5&lt;/P&gt;&lt;P&gt;             window                   = 6&lt;/P&gt;&lt;P&gt;             bad_pageformat_for_print = 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;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;ENDFORM.                    " write_form&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  end_form&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; --&amp;gt;  p1        text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; &amp;lt;--  p2        text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM end_form .&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'END_FORM'&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      unopened                 = 1&lt;/P&gt;&lt;P&gt;      bad_pageformat_for_print = 2&lt;/P&gt;&lt;P&gt;      OTHERS                   = 3.&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;ENDFORM.                    " end_form&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  close_form&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; --&amp;gt;  p1        text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; &amp;lt;--  p2        text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM close_form .&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'CLOSE_FORM'&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      unopened                 = 1&lt;/P&gt;&lt;P&gt;      bad_pageformat_for_print = 2&lt;/P&gt;&lt;P&gt;      send_error               = 3&lt;/P&gt;&lt;P&gt;      OTHERS                   = 4.&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;ENDFORM.                    " close_form&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;&lt;/P&gt;&lt;P&gt;karthik.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 09:14:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-selection-screen-output-device/m-p/3167010#M753441</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-18T09:14:00Z</dc:date>
    </item>
  </channel>
</rss>

