<?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: Regarding Validations issue in transaction code  F-58 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-validations-issue-in-transaction-code-f-58/m-p/6242897#M1382438</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;wow, quite a lot of repeatative posts &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ok..&lt;/P&gt;&lt;P&gt;what i think is the condition in the if block is not given properly. as the brackets are not given in proper places. you can just debug and check.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Oct 2009 17:11:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-10-12T17:11:38Z</dc:date>
    <item>
      <title>Regarding Validations issue in transaction code  F-58</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-validations-issue-in-transaction-code-f-58/m-p/6242891#M1382432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have done validations using this this transaction code . It is working fine for F-48 ,Fb60 ,F-43 and F-02 . But the problem is when i doing f-58 transaction code it is asking mandatory fields business place and Section code Because of validations. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the logic i have used : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Prerequisites:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;( Transaction code = 'FB60' OR Transaction code = 'F-43' OR&lt;/P&gt;&lt;P&gt;Transaction code = 'F-48' OR Document Type = 'KR' OR&lt;/P&gt;&lt;P&gt;Document Type = 'KZ' ) AND Account Type = 'K' AND&lt;/P&gt;&lt;P&gt;Transaction code 'FBZ2' OR ( Transaction code = 'F-02' OR&lt;/P&gt;&lt;P&gt;document Type = 'SA' ) &lt;/P&gt;&lt;P&gt;check :&lt;/P&gt;&lt;P&gt;Business place ' ' and section code ' '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me regarding this issue . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried like this but it is not working :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;( Transaction code = 'FB60' OR Transaction code = 'F-43' OR&lt;/P&gt;&lt;P&gt;Transaction code = 'F-48' OR Document Type = 'KR' OR&lt;/P&gt;&lt;P&gt;Document Type = 'KZ' ) AND Account Type = 'K' AND&lt;/P&gt;&lt;P&gt;Transaction code 'FBZ2' OR ( Transaction code = 'F-02' OR&lt;/P&gt;&lt;P&gt;document Type = 'SA' ) OR ( Transaction code 'F-58' OR&lt;/P&gt;&lt;P&gt;document Type 'KZ' ) .&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Naganjana Reddy .P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Oct 2009 15:28:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-validations-issue-in-transaction-code-f-58/m-p/6242891#M1382432</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-12T15:28:21Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Validations issue in transaction code  F-58</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-validations-issue-in-transaction-code-f-58/m-p/6242892#M1382433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the brackets are not used properly...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;should be like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;if ( .. ( ..) .. ) OR (. ... (...)... ) OR (... (....) and (..) ..)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so what you need to do is... to format the below one... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IF
(  ( Transaction code = 'FB60' OR Transaction code = 'F-43' OR  Transaction code = 'F-48' ) AND "not or i think 
   ( Document Type = 'KR' OR Document Type = 'KZ'  ) AND 
    Account Type = 'K'  )

 OR 
( ( Transaction code 'FBZ2'  OR Transaction code = 'F-02' ) AND  
        document Type = 'SA' ) 
OR 
( Transaction code 'F-58' AND document Type 'KZ' ) .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not saying that this is perfectly what you need.... just check how i am doing the brackets.. use according the logic you need,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Oct 2009 15:51:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-validations-issue-in-transaction-code-f-58/m-p/6242892#M1382433</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-12T15:51:15Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Validations issue in transaction code  F-58</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-validations-issue-in-transaction-code-f-58/m-p/6242893#M1382434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Soumyaprakash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your quick reply. it is not working before it was working for other transaction code like f-48,f-43,FB60 and f-02 now these transaction codes are not working properly .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Naganjana Reddy.P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Oct 2009 16:17:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-validations-issue-in-transaction-code-f-58/m-p/6242893#M1382434</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-12T16:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Validations issue in transaction code  F-58</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-validations-issue-in-transaction-code-f-58/m-p/6242894#M1382435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Soumyaprakash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your quick reply. it is not working before it was working for other transaction code like f-48,f-43,FB60 and f-02 now these transaction codes are not working properly .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Naganjana Reddy.P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Oct 2009 16:17:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-validations-issue-in-transaction-code-f-58/m-p/6242894#M1382435</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-12T16:17:19Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Validations issue in transaction code  F-58</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-validations-issue-in-transaction-code-f-58/m-p/6242895#M1382436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Soumyaprakash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your quick reply. it is not working before it was working for other transaction code like f-48,f-43,FB60 and f-02 now these transaction codes are not working properly .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Naganjana Reddy.P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Oct 2009 16:17:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-validations-issue-in-transaction-code-f-58/m-p/6242895#M1382436</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-12T16:17:32Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Validations issue in transaction code  F-58</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-validations-issue-in-transaction-code-f-58/m-p/6242896#M1382437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Soumyaprakash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your quick reply. it is not working before it was working for other transaction code like f-48,f-43,FB60 and f-02 now these transaction codes are not working properly .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Naganjana Reddy.P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Oct 2009 16:17:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-validations-issue-in-transaction-code-f-58/m-p/6242896#M1382437</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-12T16:17:44Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Validations issue in transaction code  F-58</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-validations-issue-in-transaction-code-f-58/m-p/6242897#M1382438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;wow, quite a lot of repeatative posts &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ok..&lt;/P&gt;&lt;P&gt;what i think is the condition in the if block is not given properly. as the brackets are not given in proper places. you can just debug and check.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Oct 2009 17:11:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-validations-issue-in-transaction-code-f-58/m-p/6242897#M1382438</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-12T17:11:38Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Validations issue in transaction code  F-58</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-validations-issue-in-transaction-code-f-58/m-p/6242898#M1382439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry for the repetitive posts becuase of internet problem its happens.  Please help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Oct 2009 04:23:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-validations-issue-in-transaction-code-f-58/m-p/6242898#M1382439</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-13T04:23:33Z</dc:date>
    </item>
  </channel>
</rss>

