<?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: no output in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-output/m-p/2399813#M534438</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you using OPEN_FORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;strat_form using this we can open many layoutses &lt;/P&gt;&lt;P&gt;open_form using this we can open the layout performance will be high &lt;/P&gt;&lt;P&gt;Open_form -- is used to initialize the spool request. &lt;/P&gt;&lt;P&gt;Start_form-- is used to initialize the layout. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Normally, START_FORM&lt;/P&gt;&lt;P&gt;is not required.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(OPEN_FORM Is compulary in all cases)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Its only required,&lt;/P&gt;&lt;P&gt;when we want to different sapscript layouts,&lt;/P&gt;&lt;P&gt;to get merged,&lt;/P&gt;&lt;P&gt;and come in one output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. For this purpose,&lt;/P&gt;&lt;P&gt;we use START_FORM,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to START layout 1,&lt;/P&gt;&lt;P&gt;then START Layout 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="2322921"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all helpful replies.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Jun 2007 09:56:37 GMT</pubDate>
    <dc:creator>amit_khare</dc:creator>
    <dc:date>2007-06-06T09:56:37Z</dc:date>
    <item>
      <title>no output</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-output/m-p/2399809#M534434</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;The Main in my sap script form  has the following entries:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
/E   SHELEM                                                    
/:   &amp;amp;LV_S_VKORG&amp;amp;,,&amp;amp;LV_S_VTWEG&amp;amp;,,&amp;amp;LV_S_SPART&amp;amp;,,&amp;amp;LV_S_KUNNR&amp;amp;,,  
/:   &amp;amp;LV_S_NAME&amp;amp;,,&amp;amp;LV_S_CITY&amp;amp;&amp;amp;                                &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My Form hasn't got an output. Does anyone has an idea&lt;/P&gt;&lt;P&gt;why ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;sas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FORM xyz.

DATA:
     lv_s_vkorg(4)  type c,
     lv_s_vtweg(2)  type c,
     lv_s_spart(2)  type c,
     lv_s_kunnr(10) type c,
     lv_s_name(10)  type c,
     lv_s_city(8)   type c.

LOOP AT gt_versand_plan INTO gw_versand_plan.

 IF gw_versand_plan-vkorg &amp;lt;&amp;gt; lv_s_vkorg.
lv_s_vkorg = gw_versand_plan-vkorg.
lv_s_vtweg = gw_versand_plan-vtweg.
lv_s_spart = gw_versand_plan-spart.

      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
        EXPORTING
          input  = gw_versand_plan-kunnr
        IMPORTING
          output = lv_kunnr.

lv_s_kunnr = lv_kunnr.
lv_s_name = 'Kundenname'. "gv_kun_nam.
lv_s_city = 'City'.     "gv_city.

CALL FUNCTION 'WRITE_FORM'

 EXPORTING
   ELEMENT                        = 'SHELEM'
   FUNCTION                       = 'SET'
   TYPE                           = 'BODY'
   WINDOW                         = 'MAIN' .
   
    ENDIF.
ENDLOOP.


CALL FUNCTION 'CLOSE_FORM'.

ENDFORM.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 09:53:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/no-output/m-p/2399809#M534434</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T09:53:57Z</dc:date>
    </item>
    <item>
      <title>Re: no output</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-output/m-p/2399810#M534435</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 you have forgotten the &lt;/P&gt;&lt;P&gt;OPEN_FORM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;venkatesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 09:56:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/no-output/m-p/2399810#M534435</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T09:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: no output</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-output/m-p/2399811#M534436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello erdem sas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u hv not called CALL FUNCTION 'OPEN_FORM'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rEGARDS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 09:56:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/no-output/m-p/2399811#M534436</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T09:56:18Z</dc:date>
    </item>
    <item>
      <title>Re: no output</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-output/m-p/2399812#M534437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Did u call the OPEN_FORM Function before using WRITE_FORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Himanshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 09:56:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/no-output/m-p/2399812#M534437</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T09:56:26Z</dc:date>
    </item>
    <item>
      <title>Re: no output</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-output/m-p/2399813#M534438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you using OPEN_FORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;strat_form using this we can open many layoutses &lt;/P&gt;&lt;P&gt;open_form using this we can open the layout performance will be high &lt;/P&gt;&lt;P&gt;Open_form -- is used to initialize the spool request. &lt;/P&gt;&lt;P&gt;Start_form-- is used to initialize the layout. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Normally, START_FORM&lt;/P&gt;&lt;P&gt;is not required.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(OPEN_FORM Is compulary in all cases)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Its only required,&lt;/P&gt;&lt;P&gt;when we want to different sapscript layouts,&lt;/P&gt;&lt;P&gt;to get merged,&lt;/P&gt;&lt;P&gt;and come in one output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. For this purpose,&lt;/P&gt;&lt;P&gt;we use START_FORM,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to START layout 1,&lt;/P&gt;&lt;P&gt;then START Layout 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="2322921"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all helpful replies.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 09:56:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/no-output/m-p/2399813#M534438</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2007-06-06T09:56:37Z</dc:date>
    </item>
    <item>
      <title>Re: no output</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-output/m-p/2399814#M534439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;What and where is the link between the Program Code and the Script Layout.&lt;/P&gt;&lt;P&gt;You have to call the fun module &amp;lt;b&amp;gt;OPEN_FORM&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;and have to give the Script layout name in that&lt;/P&gt;&lt;P&gt;then only the program will call the script&lt;/P&gt;&lt;P&gt;otherwise how your program will recognize the fields and display&lt;/P&gt;&lt;P&gt;so call OPEN_FORM, Write_form and CLOSE_FORM in code and use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points for useful Answers&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 09:56:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/no-output/m-p/2399814#M534439</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T09:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: no output</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-output/m-p/2399815#M534440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm sorry I have forgotten to psot this part. Of course I have an open form.&lt;/P&gt;&lt;P&gt;Nevertheless I have the same situation&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM xyz*MESSAGE I000(38) WITH 'Hallo'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'OPEN_FORM'&lt;/P&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;P&gt;   DEVICE                            = 'PRINTER'&lt;/P&gt;&lt;P&gt;   FORM                              = 'ZSD_PACKING_LIST'&lt;/P&gt;&lt;P&gt;   LANGUAGE                          =  SY-LANGU   .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 10:14:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/no-output/m-p/2399815#M534440</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T10:14:50Z</dc:date>
    </item>
    <item>
      <title>Re: no output</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-output/m-p/2399816#M534441</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;   In script   &amp;lt;b&amp;gt;/:&amp;lt;/b&amp;gt;     is for commands, not for displaying output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudheer.A&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        sudheer Addepalli&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 10:17:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/no-output/m-p/2399816#M534441</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T10:17:13Z</dc:date>
    </item>
    <item>
      <title>Re: no output</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-output/m-p/2399817#M534442</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes sudheer is right!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create a paragraph formats and give that instead of /:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/E   SHELEM                                                    &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;/P&amp;lt;/b&amp;gt;  &amp;amp;LV_S_VKORG&amp;amp;,,&amp;amp;LV_S_VTWEG&amp;amp;,,&amp;amp;LV_S_SPART&amp;amp;,,&amp;amp;LV_S_KUNNR&amp;amp;,,  &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;/P&amp;lt;/b&amp;gt;   &amp;amp;LV_S_NAME&amp;amp;,,&amp;amp;LV_S_CITY&amp;amp;&amp;amp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 10:19:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/no-output/m-p/2399817#M534442</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T10:19:34Z</dc:date>
    </item>
    <item>
      <title>Re: no output</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-output/m-p/2399818#M534443</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HELLO OK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BUT WHICH command IS FOR displaying ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;sas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 10:24:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/no-output/m-p/2399818#M534443</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T10:24:31Z</dc:date>
    </item>
    <item>
      <title>Re: no output</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-output/m-p/2399819#M534444</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I get the error message within the sap script check&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;LV_S_VKORG&amp;amp;               &lt;/P&gt;&lt;P&gt;Unknown symbol LV_S_VKORG  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What has to be done ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reagrds&lt;/P&gt;&lt;P&gt;sas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 10:40:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/no-output/m-p/2399819#M534444</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T10:40:22Z</dc:date>
    </item>
    <item>
      <title>Re: no output</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-output/m-p/2399820#M534445</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    Just define a Paragraph formate and do not opt anything in that  and use that name in place of   &amp;lt;b&amp;gt; /:&amp;lt;/b&amp;gt;   - will solve ur problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudheer.a&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 11:02:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/no-output/m-p/2399820#M534445</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T11:02:01Z</dc:date>
    </item>
  </channel>
</rss>

