<?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: anyone help the condition type problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/anyone-help-the-condition-type-problem/m-p/3055863#M723751</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;XKOMV-KINAK = 'X'.      "&amp;lt;&amp;lt; Make it ' ' instead of 'X'.&lt;/P&gt;&lt;P&gt; MODIFY XKOMV TRANSPORTING KINAK WHERE KSCHL = 'ZFI4' OR KSCHL = 'ZFI3' .&lt;/P&gt;&lt;P&gt; CLEAR XKOMV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 25 Nov 2007 00:25:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-25T00:25:04Z</dc:date>
    <item>
      <title>anyone help the condition type problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/anyone-help-the-condition-type-problem/m-p/3055859#M723747</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;My requirement is if ZFI6 having values then it will display the ZFI6value no need no activate ZFI4 and ZFI3.&lt;/P&gt;&lt;P&gt;if ZFI6 having no values ZFI4 having value then it display ZFI4 only no need no activate ZFI3 and ZFI6.&lt;/P&gt;&lt;P&gt;if ZFI6 having ZERO then ZFI4 having ZERO so need to activate ZFI3 only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i developed the below coding but its not working correctly anyone plz explain how to solve this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  READ TABLE XKOMV INTO L_XKOMV&lt;/P&gt;&lt;P&gt;              WITH KEY&lt;/P&gt;&lt;P&gt;              KSCHL = 'ZFI6'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    XKOMV-KINAK = 'X'.&lt;/P&gt;&lt;P&gt;      MODIFY XKOMV TRANSPORTING KINAK WHERE KSCHL = 'ZFI4'.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;point will be sure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vijai&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Nov 2007 12:43:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/anyone-help-the-condition-type-problem/m-p/3055859#M723747</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-24T12:43:40Z</dc:date>
    </item>
    <item>
      <title>Re: anyone help the condition type problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/anyone-help-the-condition-type-problem/m-p/3055860#M723748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijaya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;READ TABLE XKOMV INTO L_XKOMV
WITH KEY
KSCHL = 'ZFI6'.

IF SY-SUBRC = 0.
 XKOMV-KINAK = 'X'.
 MODIFY XKOMV TRANSPORTING KINAK WHERE KSCHL = 'ZFI4' OR KSCHL = 'ZFI3' .
 CLEAR XKOMV.
ELSE.
 READ TABLE XKOMV INTO L_XKOMV
 WITH KEY KSCHL = 'ZFI4'.
 IF SY-SUBRC = 0.
  XKOMV-KINAK = 'X'.
  MODIFY XKOMV TRANSPORTING KINAK WHERE KSCHL = 'ZFI6' OR KSCHL = 'ZFI3' .
  CLEAR XKOMV.
 ELSE.
   XKOMV-KINAK = 'X'.
  MODIFY XKOMV TRANSPORTING KINAK WHERE KSCHL = 'ZFI3'.
  CLEAR XKOMV.
 ENDIF.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Nov 2007 12:54:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/anyone-help-the-condition-type-problem/m-p/3055860#M723748</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-24T12:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: anyone help the condition type problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/anyone-help-the-condition-type-problem/m-p/3055861#M723749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sathis,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Thanks for your information, your program working fine but in my condition type i have ZFI3, ZFI4,ZFI5, ZFI6.&lt;/P&gt;&lt;P&gt;Now its doing the hiding the ZFI3 only. but my condition if ZFI6 comes no need of ZFI4 and ZFI3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz help the issue,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vijai&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Nov 2007 13:11:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/anyone-help-the-condition-type-problem/m-p/3055861#M723749</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-24T13:11:11Z</dc:date>
    </item>
    <item>
      <title>Re: anyone help the condition type problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/anyone-help-the-condition-type-problem/m-p/3055862#M723750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is what we are doing in the below statements&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; XKOMV-KINAK = 'X'.
 MODIFY XKOMV TRANSPORTING KINAK WHERE KSCHL = 'ZFI4' OR KSCHL = 'ZFI3' .
 CLEAR XKOMV.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Nov 2007 14:20:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/anyone-help-the-condition-type-problem/m-p/3055862#M723750</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-24T14:20:05Z</dc:date>
    </item>
    <item>
      <title>Re: anyone help the condition type problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/anyone-help-the-condition-type-problem/m-p/3055863#M723751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;XKOMV-KINAK = 'X'.      "&amp;lt;&amp;lt; Make it ' ' instead of 'X'.&lt;/P&gt;&lt;P&gt; MODIFY XKOMV TRANSPORTING KINAK WHERE KSCHL = 'ZFI4' OR KSCHL = 'ZFI3' .&lt;/P&gt;&lt;P&gt; CLEAR XKOMV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Nov 2007 00:25:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/anyone-help-the-condition-type-problem/m-p/3055863#M723751</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-25T00:25:04Z</dc:date>
    </item>
  </channel>
</rss>

