<?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 help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-help/m-p/1237065#M141139</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks a lot naimesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Apr 2006 15:44:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-04-18T15:44:22Z</dc:date>
    <item>
      <title>user exit help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-help/m-p/1237063#M141137</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;im working on exit MV45AFZZ -- &lt;/P&gt;&lt;P&gt;ship-to party city or town (field ORT01) should be derived and populated into field (VBKD-INCO2). If this field is blank then use the sold-to party city otherwise leave the field as is.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: v_ort01 like kna1-ort01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if vbkd-inco2 is initial.&lt;/P&gt;&lt;P&gt;  select single ort01 from kna1 into v_ort01&lt;/P&gt;&lt;P&gt;  where kunnr = kuwev-kunnr.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    move v_ort01 to vbkd-inco2.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form is USEREXIT_MOVE_FIELD_TO_VBKD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have done this bit of code. but it is giving me an erro saying that the header data is not related to item data r something like that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i dont know wats going wrong. is there anything i have to do other than the bit i have done. new to this please help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Apr 2006 13:20:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-help/m-p/1237063#M141137</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-18T13:20:33Z</dc:date>
    </item>
    <item>
      <title>Re: user exit help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-help/m-p/1237064#M141138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Kiran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See VBKD is a line item table for the orders. So, you have to access the internal table &amp;lt;b&amp;gt;XVBKD&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So,&lt;/P&gt;&lt;P&gt;data: v_ort01 like kna1-ort01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at xvbkd.&lt;/P&gt;&lt;P&gt;if xvbkd-inco2 is initial.&lt;/P&gt;&lt;P&gt;select single ort01 from kna1 into v_ort01&lt;/P&gt;&lt;P&gt;where kunnr = kuwev-kunnr.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;move v_ort01 to xvbkd-inco2.&lt;/P&gt;&lt;P&gt;endif.&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;Naimesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points, if it is helpful..!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Apr 2006 13:47:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-help/m-p/1237064#M141138</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2006-04-18T13:47:28Z</dc:date>
    </item>
    <item>
      <title>Re: user exit help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-help/m-p/1237065#M141139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks a lot naimesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Apr 2006 15:44:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-help/m-p/1237065#M141139</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-18T15:44:22Z</dc:date>
    </item>
  </channel>
</rss>

