<?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: dynamically checking of parameter in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-checking-of-parameter/m-p/2359886#M521939</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bhupinder,   &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using the validation is start of slelection and writing a text message would leave you with the message in another screen from which you'll have to go back to come to program. So donot use it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The best way is to validate in the AT selection-screen itself and this would help you stay in the selection screen and ensures that the user enters the value for the obligatory or the mandatory field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this solves your query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward Points if useful.&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;Tej..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Jun 2007 05:52:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-13T05:52:09Z</dc:date>
    <item>
      <title>dynamically checking of parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-checking-of-parameter/m-p/2359878#M521931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have one text field (parameter) i want when i execute the report that field cannot be left empty     using obligatory will not serve purpose as i want to check only when i execute the report. is there any way please help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2007 05:42:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-checking-of-parameter/m-p/2359878#M521931</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-13T05:42:06Z</dc:date>
    </item>
    <item>
      <title>Re: dynamically checking of parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-checking-of-parameter/m-p/2359879#M521932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;START-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-ucomm = 'ONLI'.&lt;/P&gt;&lt;P&gt;if p_field is initial.&lt;/P&gt;&lt;P&gt;message 'Please enter value for field XXX !' type 'I'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2007 05:44:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-checking-of-parameter/m-p/2359879#M521932</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-13T05:44:00Z</dc:date>
    </item>
    <item>
      <title>Re: dynamically checking of parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-checking-of-parameter/m-p/2359880#M521933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Write the validation of rthat field in start-of-selection&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;declare that field as&lt;/P&gt;&lt;P&gt;paramters: p_bukrs like t001-bukrs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if p_bukrs is initial.&lt;/P&gt;&lt;P&gt;   message e000 with 'Enter company code field'.&lt;/P&gt;&lt;P&gt;endif.&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;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Anji Reddy Vangala&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2007 05:44:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-checking-of-parameter/m-p/2359880#M521933</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-13T05:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: dynamically checking of parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-checking-of-parameter/m-p/2359881#M521934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;my field name is sanct so what i have to write.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2007 05:45:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-checking-of-parameter/m-p/2359881#M521934</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-13T05:45:41Z</dc:date>
    </item>
    <item>
      <title>Re: dynamically checking of parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-checking-of-parameter/m-p/2359882#M521935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bhupender,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           I didn't understand ur question...Plz post it again mentioning what the problem is ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2007 05:46:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-checking-of-parameter/m-p/2359882#M521935</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-13T05:46:33Z</dc:date>
    </item>
    <item>
      <title>Re: dynamically checking of parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-checking-of-parameter/m-p/2359883#M521936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bhupinder,   &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this event the key field obligatory gets checked  before the program gets executed so use obligatory inside the AT SELECTION-SCREEN event and this should solve your query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward Points if useful.&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;Tej..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2007 05:48:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-checking-of-parameter/m-p/2359883#M521936</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-13T05:48:00Z</dc:date>
    </item>
    <item>
      <title>Re: dynamically checking of parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-checking-of-parameter/m-p/2359884#M521937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if  sanct is initial.&lt;/P&gt;&lt;P&gt;message i000(oo) with 'Please enter value in the field sanct'.&lt;/P&gt;&lt;P&gt;LEAVE LIST-PROCESSING.&lt;/P&gt;&lt;P&gt;endif&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2007 05:50:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-checking-of-parameter/m-p/2359884#M521937</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-13T05:50:31Z</dc:date>
    </item>
    <item>
      <title>Re: dynamically checking of parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-checking-of-parameter/m-p/2359885#M521938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i want the after that control will be again come back at my selection screen when i apply ur code the whole screen got blank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2007 05:51:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-checking-of-parameter/m-p/2359885#M521938</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-13T05:51:06Z</dc:date>
    </item>
    <item>
      <title>Re: dynamically checking of parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-checking-of-parameter/m-p/2359886#M521939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bhupinder,   &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using the validation is start of slelection and writing a text message would leave you with the message in another screen from which you'll have to go back to come to program. So donot use it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The best way is to validate in the AT selection-screen itself and this would help you stay in the selection screen and ensures that the user enters the value for the obligatory or the mandatory field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this solves your query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward Points if useful.&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;Tej..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2007 05:52:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-checking-of-parameter/m-p/2359886#M521939</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-13T05:52:09Z</dc:date>
    </item>
    <item>
      <title>Re: dynamically checking of parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-checking-of-parameter/m-p/2359887#M521940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have one parmeter sanctioned_amount whose value user have to write and it can not left empty when i make this field obligatory other field not behave as required so what  i want on exection if that field is left blank a message in shown and then the control will come back on same selection screen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2007 05:56:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-checking-of-parameter/m-p/2359887#M521940</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-13T05:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: dynamically checking of parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-checking-of-parameter/m-p/2359888#M521941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,  &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;                      AT SELECTION-SCREEN                            *&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;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;*-----If no value has been entered.&lt;/P&gt;&lt;P&gt;  IF p_vbeln IS INITIAL.&lt;/P&gt;&lt;P&gt;    MESSAGE text-002 TYPE 'E'.&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;Bhupinder, this should solve your query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the solution to your query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward Points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Tej..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2007 06:03:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-checking-of-parameter/m-p/2359888#M521941</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-13T06:03:45Z</dc:date>
    </item>
    <item>
      <title>Re: dynamically checking of parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-checking-of-parameter/m-p/2359889#M521942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SO IS I HAVE TO REDEFINE THAT PARAMETER IN THE AT SELECTION- SCREEN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2007 06:04:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-checking-of-parameter/m-p/2359889#M521942</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-13T06:04:56Z</dc:date>
    </item>
    <item>
      <title>Re: dynamically checking of parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-checking-of-parameter/m-p/2359890#M521943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CAN I DYNAMICALLY MAKE A FIELD OBLIGATORY&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2007 06:06:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-checking-of-parameter/m-p/2359890#M521943</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-13T06:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: dynamically checking of parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-checking-of-parameter/m-p/2359891#M521944</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;Look at this piece of code..&lt;/P&gt;&lt;P&gt;&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;                       SELECTION-SCREEN                              *&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;SELECTION-SCREEN: BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;PARAMETERS: p_vbeln LIKE vbrk-vbeln.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: END OF BLOCK b1.&lt;/P&gt;&lt;P&gt;&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;                      AT SELECTION-SCREEN                            *&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;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;*-----If no value has been entered.&lt;/P&gt;&lt;P&gt;  IF p_vbeln IS INITIAL.&lt;/P&gt;&lt;P&gt;    MESSAGE text-002 TYPE c_error.&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Tej..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2007 06:32:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-checking-of-parameter/m-p/2359891#M521944</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-13T06:32:45Z</dc:date>
    </item>
  </channel>
</rss>

