<?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 Test fields when execute the report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/test-fields-when-execute-the-report/m-p/3610960#M869869</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I test if the fields are empty or not when execute the report?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Mar 2008 14:54:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-26T14:54:43Z</dc:date>
    <item>
      <title>Test fields when execute the report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/test-fields-when-execute-the-report/m-p/3610960#M869869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I test if the fields are empty or not when execute the report?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2008 14:54:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/test-fields-when-execute-the-report/m-p/3610960#M869869</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-26T14:54:43Z</dc:date>
    </item>
    <item>
      <title>Re: Test fields when execute the report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/test-fields-when-execute-the-report/m-p/3610961#M869870</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;You want to check in selection-screen?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if fieldname is initial.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pranav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2008 14:56:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/test-fields-when-execute-the-report/m-p/3610961#M869870</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-26T14:56:44Z</dc:date>
    </item>
    <item>
      <title>Re: Test fields when execute the report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/test-fields-when-execute-the-report/m-p/3610962#M869871</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;TRY USING BAPAI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;USING CHECK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;	&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;check field is initial.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;using if...end if&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;if field is initial.

      endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;V.Balaji&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if usefull&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2008 15:27:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/test-fields-when-execute-the-report/m-p/3610962#M869871</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-26T15:27:46Z</dc:date>
    </item>
    <item>
      <title>Re: Test fields when execute the report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/test-fields-when-execute-the-report/m-p/3610963#M869872</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;You can check as below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Tables : bsis.

parameters : sp_bukrs like bsis-bukrs.

at selection-screen.

if sp_bukrs is initial.
 message 'Company code should not be empty' type 'E'.
endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sriram Ponna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2008 15:33:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/test-fields-when-execute-the-report/m-p/3610963#M869872</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-26T15:33:42Z</dc:date>
    </item>
    <item>
      <title>Re: Test fields when execute the report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/test-fields-when-execute-the-report/m-p/3610964#M869873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for this answer, but I need test it... when I execute the report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2008 16:01:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/test-fields-when-execute-the-report/m-p/3610964#M869873</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-26T16:01:52Z</dc:date>
    </item>
    <item>
      <title>Re: Test fields when execute the report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/test-fields-when-execute-the-report/m-p/3610965#M869874</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raphael,&lt;/P&gt;&lt;P&gt;If u want to check it in debug mode then fill in all selection screen details and enter /h in command promt. Here u acn check the field content by double clicking on the field.&lt;/P&gt;&lt;P&gt;If u want to check it with out debugging the simply use write statements and see the output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2008 16:06:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/test-fields-when-execute-the-report/m-p/3610965#M869874</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2008-03-26T16:06:10Z</dc:date>
    </item>
    <item>
      <title>Re: Test fields when execute the report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/test-fields-when-execute-the-report/m-p/3610966#M869875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;At the selection screen level you can check it by using the if not initial and if you want to  check after giving the data u can check it in the debugging mode by starting the debugger or aimpoly giving the /h in he command prompt and then executing it.&lt;/P&gt;&lt;P&gt;or u can check it by using write statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if usefull.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2008 17:42:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/test-fields-when-execute-the-report/m-p/3610966#M869875</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-26T17:42:41Z</dc:date>
    </item>
    <item>
      <title>Re: Test fields when execute the report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/test-fields-when-execute-the-report/m-p/3610967#M869876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;use AT SELECTION-SCREEN events&lt;/P&gt;&lt;P&gt;like &lt;/P&gt;&lt;P&gt;at selection screen on &amp;lt;para&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if &amp;lt;para&amp;gt; is initial.&lt;/P&gt;&lt;P&gt;message e001(&amp;lt;mcl&amp;gt;)&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2008 17:49:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/test-fields-when-execute-the-report/m-p/3610967#M869876</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-26T17:49:26Z</dc:date>
    </item>
  </channel>
</rss>

