<?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: Condition on screen field in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/condition-on-screen-field/m-p/5602830#M1276855</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;Find some user exist to acheive the requirement or let me know the transaction code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Thirupathy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 May 2009 11:03:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-20T11:03:51Z</dc:date>
    <item>
      <title>Condition on screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/condition-on-screen-field/m-p/5602829#M1276854</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;I need to put a condition on screen field. If notification type is ZA (VIQMEL-QMART) then field-label for VIQMEL-BZMNG should be rej.qty and for others it should display del.qty. Please give me solution how can i acheive it. I can change screen layout.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Sadhna Achhra.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2009 10:58:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/condition-on-screen-field/m-p/5602829#M1276854</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-20T10:58:37Z</dc:date>
    </item>
    <item>
      <title>Re: Condition on screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/condition-on-screen-field/m-p/5602830#M1276855</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;Find some user exist to acheive the requirement or let me know the transaction code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Thirupathy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2009 11:03:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/condition-on-screen-field/m-p/5602830#M1276855</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-20T11:03:51Z</dc:date>
    </item>
    <item>
      <title>Re: Condition on screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/condition-on-screen-field/m-p/5602831#M1276856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tcodes for which changes need to be done are QM01, QM02, QM03. &lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2009 11:06:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/condition-on-screen-field/m-p/5602831#M1276856</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-20T11:06:32Z</dc:date>
    </item>
    <item>
      <title>Re: Condition on screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/condition-on-screen-field/m-p/5602832#M1276857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Sadhna,&lt;/P&gt;&lt;P&gt;          Add a module in the PBO. Create two lables like 'REJ_QTY' and DEL_QTY .&lt;/P&gt;&lt;P&gt;           Inside the module use the following logic.&lt;/P&gt;&lt;P&gt;                  &lt;/P&gt;&lt;P&gt;                loop at screen.&lt;/P&gt;&lt;P&gt;                     if screen-name = 'REJ_QTY'.&lt;/P&gt;&lt;P&gt;                         if  VIQMEL-QMART EQ 'ZA'.&lt;/P&gt;&lt;P&gt;                              screen-invisible = '0'.&lt;/P&gt;&lt;P&gt;                        else.&lt;/P&gt;&lt;P&gt;                             screen.invisible = '1'.&lt;/P&gt;&lt;P&gt;                        endif.&lt;/P&gt;&lt;P&gt;                     endif.&lt;/P&gt;&lt;P&gt;                   &lt;/P&gt;&lt;P&gt;                if screen-name = 'DEL_QTY'.&lt;/P&gt;&lt;P&gt;                         if  VIQMEL-QMART EQ 'ZA'.&lt;/P&gt;&lt;P&gt;                              screen-invisible = '1'.&lt;/P&gt;&lt;P&gt;                        else.&lt;/P&gt;&lt;P&gt;                             screen.invisible = '0'.&lt;/P&gt;&lt;P&gt;                        endif.&lt;/P&gt;&lt;P&gt;                     endif.&lt;/P&gt;&lt;P&gt;               endif.&lt;/P&gt;&lt;P&gt;          modify screen.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this will solve yopuir problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Amarendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2009 11:17:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/condition-on-screen-field/m-p/5602832#M1276857</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-20T11:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: Condition on screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/condition-on-screen-field/m-p/5602833#M1276858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sadhana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use this exit.This may help u.&lt;/P&gt;&lt;P&gt;enahncement QQMA0014&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXIT_SAPMIWO0_020&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;&lt;/P&gt;&lt;P&gt;Edited by: tarangini katta on May 20, 2009 1:26 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2009 11:26:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/condition-on-screen-field/m-p/5602833#M1276858</guid>
      <dc:creator>tarangini_katta</dc:creator>
      <dc:date>2009-05-20T11:26:46Z</dc:date>
    </item>
  </channel>
</rss>

