<?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 User Exit ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/6937804#M1486826</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;We have two companies in the system both using similar Sales Order Type T.Code VA01. We have two sales organisation one for each.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Presently while raising sales order (T.code VA01) Req. Deliv. Date (Field Name: KETDAT) defaults to system date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;New Requirement: There is a new requirement from business where one company wants Req. Deliv. Date to be defaults to BLANK (Empty). This is possible by creating new sales order type but business wants to keep the sales order type same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please let me know which User Exit we can use to make this happen? We have One order type and two different sales organisation to distinguish the process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 May 2010 13:27:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-05-20T13:27:16Z</dc:date>
    <item>
      <title>User Exit ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/6937804#M1486826</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;We have two companies in the system both using similar Sales Order Type T.Code VA01. We have two sales organisation one for each.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Presently while raising sales order (T.code VA01) Req. Deliv. Date (Field Name: KETDAT) defaults to system date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;New Requirement: There is a new requirement from business where one company wants Req. Deliv. Date to be defaults to BLANK (Empty). This is possible by creating new sales order type but business wants to keep the sales order type same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please let me know which User Exit we can use to make this happen? We have One order type and two different sales organisation to distinguish the process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 May 2010 13:27:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/6937804#M1486826</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-20T13:27:16Z</dc:date>
    </item>
    <item>
      <title>Re: User Exit ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/6937805#M1486827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;form userexit_field_modification in MV45AFZZ will let you change the value of screen fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

  case screen-name.

    when 'RV45A-KETDAT'.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;would let you blank the value for the approariate value in VBAK-VKORG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 May 2010 14:35:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/6937805#M1486827</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-20T14:35:03Z</dc:date>
    </item>
    <item>
      <title>Re: User Exit ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/6937806#M1486828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form userexit_field_modification in MV45AFZZ will let you change the value of screen fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But that's not the purpose of that user exit and you shouldn't use it that way.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;USEREXIT_MOVE_FIELD_TO_VBAK would be the better choice, although you're still stuck with a solution that doesn't change the date until it's already been rendered on the screen at least once because you can't guarantee the sales org until that time.    You would need to change the value of VBAK-VDATU and RV45A-KETDAT.  I would also blank the value of TVAK-DATVO.  This is the order type level field that determines that the RDD is calculated from the current date.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 May 2010 16:44:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/6937806#M1486828</guid>
      <dc:creator>brad_bohn</dc:creator>
      <dc:date>2010-05-20T16:44:57Z</dc:date>
    </item>
    <item>
      <title>Re: User Exit ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/6937807#M1486829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please use proper subject for the thread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 May 2010 05:27:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/6937807#M1486829</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-21T05:27:10Z</dc:date>
    </item>
    <item>
      <title>Re: User Exit ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/6937808#M1486830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;resolved by USEREXIT_MOVE_FIELD_TO_VBAK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Jan 2011 12:07:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/6937808#M1486830</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-28T12:07:25Z</dc:date>
    </item>
  </channel>
</rss>

