<?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: user exit for va01 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-va01/m-p/4852285#M1134746</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it is 4.7 version. any particular user exit?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Nov 2008 03:27:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-26T03:27:10Z</dc:date>
    <item>
      <title>user exit for va01</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-va01/m-p/4852283#M1134744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i need to bolck the customer in va01 . suppose there are 5 customer in one group. if any one customer has exceeded the credit, the all customer should get block, it should a error message that one customer fro customer group has exceeded the credit limit.&lt;/P&gt;&lt;P&gt; any idea how to get it done.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Chandramani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 05:59:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-va01/m-p/4852283#M1134744</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-25T05:59:30Z</dc:date>
    </item>
    <item>
      <title>Re: user exit for va01</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-va01/m-p/4852284#M1134745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the version of SAP that you are using in ECC 6.0 you have some enhancement-points check them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for the below versions you have user exits where you can include your code and validation in the standard includes&lt;/P&gt;&lt;P&gt; INCLUDE MV45AOZZ.             " User-modules PBO&lt;/P&gt;&lt;P&gt; INCLUDE MV45AIZZ&lt;/P&gt;&lt;P&gt;in Sales order program SAPMV45A&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 07:03:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-va01/m-p/4852284#M1134745</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-25T07:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: user exit for va01</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-va01/m-p/4852285#M1134746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it is 4.7 version. any particular user exit?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2008 03:27:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-va01/m-p/4852285#M1134746</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-26T03:27:10Z</dc:date>
    </item>
    <item>
      <title>Re: user exit for va01</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-va01/m-p/4852286#M1134747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i did in this way, i used one user exit for this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM USER_CREDIT_CHECK1 USING   UCC1_UPDATE&lt;/P&gt;&lt;P&gt;                                UCC1_KKBER&lt;/P&gt;&lt;P&gt;                                UCC1_KNKLI&lt;/P&gt;&lt;P&gt;                                UCC1_FLG_ORDER&lt;/P&gt;&lt;P&gt;                                UCC1_FLG_DELIVERY&lt;/P&gt;&lt;P&gt;                          CHANGING UCC1_RC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR UCC1_RC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : begin of it_knkk occurs 0,&lt;/P&gt;&lt;P&gt;     KUNNR type knkk-KUNNR,    "Customer Number 1&lt;/P&gt;&lt;P&gt;     KKBER type knkk-KKBER,    "Credit control area&lt;/P&gt;&lt;P&gt;     KLIMK type knkk-KLIMK,    "Customer's credit limit&lt;/P&gt;&lt;P&gt;     SKFOR type knkk-SKFOR,    "Total receivables&lt;/P&gt;&lt;P&gt;     GRUPP type knkk-GRUPP,    "Customer Credit Group&lt;/P&gt;&lt;P&gt;     end of it_knkk.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : begin of it_knkk1 occurs 0,&lt;/P&gt;&lt;P&gt;     KUNNR type knkk-KUNNR,    "Customer Number 1&lt;/P&gt;&lt;P&gt;     KKBER type knkk-KKBER,    "Credit control area&lt;/P&gt;&lt;P&gt;     KLIMK type knkk-KLIMK,    "Customer's credit limit&lt;/P&gt;&lt;P&gt;     SKFOR type knkk-SKFOR,    "Total receivables&lt;/P&gt;&lt;P&gt;     GRUPP type knkk-GRUPP,    "Customer Credit Group&lt;/P&gt;&lt;P&gt;     end of it_knkk1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select&lt;/P&gt;&lt;P&gt;    KUNNR&lt;/P&gt;&lt;P&gt;     KKBER&lt;/P&gt;&lt;P&gt;     KLIMK&lt;/P&gt;&lt;P&gt;     SKFOR&lt;/P&gt;&lt;P&gt;     GRUPP&lt;/P&gt;&lt;P&gt;     from knkk&lt;/P&gt;&lt;P&gt;     into  table it_knkk&lt;/P&gt;&lt;P&gt;     where&lt;/P&gt;&lt;P&gt;     kunnr = UCC1_KNKLI&lt;/P&gt;&lt;P&gt;     and KKBER = UCC1_KKBER .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select&lt;/P&gt;&lt;P&gt;    KUNNR&lt;/P&gt;&lt;P&gt;     KKBER&lt;/P&gt;&lt;P&gt;     KLIMK&lt;/P&gt;&lt;P&gt;     SKFOR&lt;/P&gt;&lt;P&gt;     GRUPP&lt;/P&gt;&lt;P&gt;     from knkk&lt;/P&gt;&lt;P&gt;     into  table it_knkk1&lt;/P&gt;&lt;P&gt;     for all entries in it_knkk&lt;/P&gt;&lt;P&gt;     where GRUPP = it_knkk-GRUPP .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : cred_lim type knkk-KLIMK.&lt;/P&gt;&lt;P&gt;data : recev type knkk-SKFOR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sort it_knkk1 DESCENDING  by  KLIMK   .&lt;/P&gt;&lt;P&gt;read table it_knkk1  index 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cred_lim = IT_KNKK1-KLIMK .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**flag = '1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sort it_knkk1 DESCENDING  by  SKFOR .&lt;/P&gt;&lt;P&gt;read table it_knkk1  index 1.&lt;/P&gt;&lt;P&gt;recev = it_knkk1-SKFOR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if recev GE cred_lim .&lt;/P&gt;&lt;P&gt;*read table it_knkk1  index 1.&lt;/P&gt;&lt;P&gt;*if it_knkk1-SKFOR GE IT_KNKK1-KLIMK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;message 'Customer Group Oldest Open Items Over due' type 'I'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but now what is happening . suppose the customer is having group G1. and customer credit group &lt;/P&gt;&lt;P&gt;G1 is having 5 customer. &lt;/P&gt;&lt;P&gt;5 times it showing information message.&lt;/P&gt;&lt;P&gt;i need to get only one time. how to prevent going to same program again??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any help?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2008 09:34:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-va01/m-p/4852286#M1134747</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-04T09:34:39Z</dc:date>
    </item>
    <item>
      <title>Re: user exit for va01</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-va01/m-p/4852287#M1134748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi CK , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;y its executing 5 times for one Customer ? , check for the customer types in debug mode, i'm assuming may be bcos of Partner types means ship-to-party , sold to party....etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regargds&lt;/P&gt;&lt;P&gt;Prabhu .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2008 02:45:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-va01/m-p/4852287#M1134748</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-05T02:45:06Z</dc:date>
    </item>
    <item>
      <title>Re: user exit for va01</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-va01/m-p/4852288#M1134749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i used statics flag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Dec 2008 07:46:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-va01/m-p/4852288#M1134749</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-10T07:46:47Z</dc:date>
    </item>
  </channel>
</rss>

