<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/2228711#M479314</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;USe the Std exit Program SAPMV45A include MV45AFZZ of Sales order &lt;/P&gt;&lt;P&gt;to populate the custom field VBAP (ZZPRIADJ) after fetching the values from configuration table.&lt;/P&gt;&lt;P&gt;write the code in the form of the program:&lt;/P&gt;&lt;P&gt;FORM USEREXIT_MOVE_FIELD_TO_VBAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To write the code related to pricing fields using KOMV etc&lt;/P&gt;&lt;P&gt;use the forms&lt;/P&gt;&lt;P&gt;FORM USEREXIT_PRICING_PREPARE_TKOMK.&lt;/P&gt;&lt;P&gt;FORM USEREXIT_PRICING_PREPARE_TKOMP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 May 2007 12:16:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-08T12:16:17Z</dc:date>
    <item>
      <title>user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/2228710#M479313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The standard field KOMV-KSTEU tracks any manual changes to a line item (condition type) in the pricing screen. The program needs to loop through all the pricing conditions for a line item (table KOMV), if for one of the pricing conditions the field Condition Control (KOMV-KSTEU) has a value of &amp;#145;C&amp;#146; then the user needs to be prompted to enter a &amp;#145;Price Adjustment Code&amp;#146;.&lt;/P&gt;&lt;P&gt;This Price Adjustment Code needs to be stored in a new field in table VBAP (ZZPRIADJ) and displayed on the &amp;#145;Additional Data B&amp;#146; screen. &lt;/P&gt;&lt;P&gt;The possible values that the user can enter as a Price Adjustment Code needs to be stored in a &amp;#145;configuration&amp;#146; table. The details of the fields in this configuration table are specified below.&lt;/P&gt;&lt;P&gt;can u tell me how to code for this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 12:08:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/2228710#M479313</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T12:08:41Z</dc:date>
    </item>
    <item>
      <title>Re: user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/2228711#M479314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;USe the Std exit Program SAPMV45A include MV45AFZZ of Sales order &lt;/P&gt;&lt;P&gt;to populate the custom field VBAP (ZZPRIADJ) after fetching the values from configuration table.&lt;/P&gt;&lt;P&gt;write the code in the form of the program:&lt;/P&gt;&lt;P&gt;FORM USEREXIT_MOVE_FIELD_TO_VBAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To write the code related to pricing fields using KOMV etc&lt;/P&gt;&lt;P&gt;use the forms&lt;/P&gt;&lt;P&gt;FORM USEREXIT_PRICING_PREPARE_TKOMK.&lt;/P&gt;&lt;P&gt;FORM USEREXIT_PRICING_PREPARE_TKOMP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 12:16:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/2228711#M479314</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T12:16:17Z</dc:date>
    </item>
    <item>
      <title>Re: user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/2228712#M479315</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;Firts of all u need the access key inorder to place the field in the additional data B screen.u need to add the field in the table VBAP by append structure method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now in the PAI of the sub screen u need to write the logic...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at i_komv.&lt;/P&gt;&lt;P&gt;if i_komv-ksteu = 'C'.&lt;/P&gt;&lt;P&gt;move the value to VBAP-ZZPRIADJ.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 12:21:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/2228712#M479315</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2007-05-08T12:21:14Z</dc:date>
    </item>
  </channel>
</rss>

