<?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: Badi for VA01 tcode in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-for-va01-tcode/m-p/5695948#M1294083</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually i want to put validation code for date in the tcode VA01 at the selection scrren only.&lt;/P&gt;&lt;P&gt;In va01 when we enter all order type then we click on create with reference tab.In which we select any order.In that if oreder is old one it should not procedd.For this only i want to put codition for displaying error message.Tht's it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnx.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 01 Jun 2009 06:02:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-06-01T06:02:16Z</dc:date>
    <item>
      <title>Badi for VA01 tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-for-va01-tcode/m-p/5695941#M1294076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How the standard BADIs are called from the standard code? Suppose there is a BADI for transaction code VA01. I have decided to use BADI instead of an user exit. How this can be achieved? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnx.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jun 2009 04:25:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-for-va01-tcode/m-p/5695941#M1294076</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-01T04:25:44Z</dc:date>
    </item>
    <item>
      <title>Re: Badi for VA01 tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-for-va01-tcode/m-p/5695942#M1294077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;first find whether badi is avaiable for your requriement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for that first run the transaction in debug mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;put break-point at function module:SXV_GET_CLIF_BY_NAME&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      name   = exit_name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the exite_name will return the BADI name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then implement the BADI in SE19.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jun 2009 04:29:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-for-va01-tcode/m-p/5695942#M1294077</guid>
      <dc:creator>JoffyJohn</dc:creator>
      <dc:date>2009-06-01T04:29:33Z</dc:date>
    </item>
    <item>
      <title>Re: Badi for VA01 tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-for-va01-tcode/m-p/5695943#M1294078</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;goto class cl_exithandler-&amp;gt;get_instance method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;give a break point there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;on execution of every screen or every action ur debugger will start giving back the exit names available..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go to the program for particular t-code and find as CL_EXITHANDLER=&amp;gt;GET_INSTANCE . mark the main program. the badi name is quoted in the exit_name parameter.&lt;/P&gt;&lt;P&gt;CALL METHOD CL_EXITHANDLER=&amp;gt;GET_INSTANCE&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;EXIT_NAME = 'BADI_SERIAL_IN_STO' " badi used in migo transaction&lt;/P&gt;&lt;P&gt;NULL_INSTANCE_ACCEPTED = 'X'&lt;/P&gt;&lt;P&gt;CHANGING&lt;/P&gt;&lt;P&gt;INSTANCE = lp_badi_serial_in_sto&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;others = 9.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for va01&lt;/P&gt;&lt;P&gt;HBS01&lt;/P&gt;&lt;P&gt;'EHS_PS_002'&lt;/P&gt;&lt;P&gt;the above mentioned are badis for va01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;revert back for any clarifications...&lt;/P&gt;&lt;P&gt;help us to help u,Manas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jun 2009 04:42:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-for-va01-tcode/m-p/5695943#M1294078</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-01T04:42:46Z</dc:date>
    </item>
    <item>
      <title>Re: Badi for VA01 tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-for-va01-tcode/m-p/5695944#M1294079</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;Go to tcode se93, enter the transection name eg va01 click display button. get the package name.Go to tcode se84-&amp;gt;enhancement-&amp;gt;Bussiness-addins-&amp;gt;definition,enter the package name and execute.&lt;/P&gt;&lt;P&gt;here you get the list of all the enhancement badi's for the given package.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jun 2009 04:51:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-for-va01-tcode/m-p/5695944#M1294079</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-01T04:51:56Z</dc:date>
    </item>
    <item>
      <title>Re: Badi for VA01 tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-for-va01-tcode/m-p/5695945#M1294080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi dpawar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could You please breif what is your requirement ? In VA01, I think we can overcome with User Exits than BADI's.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Suneel G&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jun 2009 05:05:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-for-va01-tcode/m-p/5695945#M1294080</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-01T05:05:45Z</dc:date>
    </item>
    <item>
      <title>Re: Badi for VA01 tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-for-va01-tcode/m-p/5695946#M1294081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear dpawar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go the below link for your query ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/advancedsearch?query=how" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/advancedsearch?query=how&lt;/A&gt;&lt;EM&gt;to&lt;/EM&gt;implement+badi&amp;amp;cat=sdn_all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;fareed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jun 2009 05:11:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-for-va01-tcode/m-p/5695946#M1294081</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-01T05:11:57Z</dc:date>
    </item>
    <item>
      <title>Re: Badi for VA01 tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-for-va01-tcode/m-p/5695947#M1294082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;BAdI For VA01&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  BADI_SD_SCH_GETWAGFZ  : Scheduling Agreement: Read WAGFZ from S073&lt;/P&gt;&lt;P&gt;  BADI_SD_V46H0001              :  SD Customer functions for resource-related billing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;User Exits For VA01&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SDTRM001 : Reschedule schedule lines without a new ATP check&lt;/P&gt;&lt;P&gt;V45A0001  : Determine alternative materials for product selection&lt;/P&gt;&lt;P&gt;V45A0002  : Predefine sold-to party in sales document&lt;/P&gt;&lt;P&gt;V45A0003  : Collector for customer function modulpool MV45A&lt;/P&gt;&lt;P&gt;V45A0004  : Copy packing proposal&lt;/P&gt;&lt;P&gt;V45E0001  : Update the purchase order from the sales order&lt;/P&gt;&lt;P&gt;V45E0002  : Data transfer in procurement elements (PRreq., assembly)&lt;/P&gt;&lt;P&gt;V45L0001  : SD component supplier processing (customer enhancements)&lt;/P&gt;&lt;P&gt;V45P0001  : SD customer function for cross-company code sales&lt;/P&gt;&lt;P&gt;V45S0001  : Update sales document from configuration&lt;/P&gt;&lt;P&gt;V45S0003  : MRP-relevance for incomplete configuration&lt;/P&gt;&lt;P&gt;V45S0004  : Effectivity type in sales order&lt;/P&gt;&lt;P&gt;V45W0001 : SD Service Management: Forward Contract Data to Item&lt;/P&gt;&lt;P&gt;V46H0001  : SD Customer functions for resource-related billing&lt;/P&gt;&lt;P&gt;V60F0001  : SD Billing plan (customer enhancement) diff. to billing plan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help full to you..........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jun 2009 05:42:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-for-va01-tcode/m-p/5695947#M1294082</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-01T05:42:31Z</dc:date>
    </item>
    <item>
      <title>Re: Badi for VA01 tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-for-va01-tcode/m-p/5695948#M1294083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually i want to put validation code for date in the tcode VA01 at the selection scrren only.&lt;/P&gt;&lt;P&gt;In va01 when we enter all order type then we click on create with reference tab.In which we select any order.In that if oreder is old one it should not procedd.For this only i want to put codition for displaying error message.Tht's it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnx.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jun 2009 06:02:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-for-va01-tcode/m-p/5695948#M1294083</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-01T06:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: Badi for VA01 tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-for-va01-tcode/m-p/5695949#M1294084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;F S_BDATE-LOW IS  INITIAL OR S_BDATE-HIGH IS  INITIAL .&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      MESSAGE E000 WITH 'For summary by quarter'&lt;/P&gt;&lt;P&gt;                        'do not enter the date range'.&lt;/P&gt;&lt;P&gt;      REFRESH : S_BDATE .&lt;/P&gt;&lt;P&gt;    ENDIF .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;heres a sample code for you...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i hope you are not clear about point system...Help us to help you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jun 2009 06:09:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-for-va01-tcode/m-p/5695949#M1294084</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-01T06:09:11Z</dc:date>
    </item>
    <item>
      <title>Re: Badi for VA01 tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-for-va01-tcode/m-p/5695950#M1294085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes my point is not cleared yet.&lt;/P&gt;&lt;P&gt;How can i implement this code in standard program?&lt;/P&gt;&lt;P&gt;can u tell me this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jun 2009 06:39:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-for-va01-tcode/m-p/5695950#M1294085</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-01T06:39:12Z</dc:date>
    </item>
    <item>
      <title>Re: Badi for VA01 tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-for-va01-tcode/m-p/5695951#M1294086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to implement a security validation logic (in VA01 selection&lt;/P&gt;&lt;P&gt;screen ) such that it would check date overview screen for further processing. This is usually done through configuration and appropriate Basis/Security&lt;/P&gt;&lt;P&gt;objects in place.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, I have new requirement to further limit this restriction i.e if date is not valid it shouldn't procedd further&lt;/P&gt;&lt;P&gt;I need to restrict this one by giving error messages on INITIAL SELECTION screen of VA01 BEFORE it goes&lt;/P&gt;&lt;P&gt;inside the sales order.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried to put the code below in USEREXIT_FIELD_MODIFICATION. But the&lt;/P&gt;&lt;P&gt;code below ALWAYS gets executed once screen processes inside the VA01&lt;/P&gt;&lt;P&gt;overview/detial screens (which is too late) as its PAI. Right now with&lt;/P&gt;&lt;P&gt;code belwo, I get error messages within overview screen that wipes ourt&lt;/P&gt;&lt;P&gt;everything from the screen (kicks out of VA01 altogether) and returns to&lt;/P&gt;&lt;P&gt;initial SAP menu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need the code below to work in a PBO module (somewhere being called from&lt;/P&gt;&lt;P&gt;BADI or one of the VA01 userexit in SAPMV45A)&lt;/P&gt;&lt;P&gt;so that it stay within VA01 selection screen and gives the error right&lt;/P&gt;&lt;P&gt;there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think now i hv cleared what exactly i wnt to do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnx.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jun 2009 10:20:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-for-va01-tcode/m-p/5695951#M1294086</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-01T10:20:07Z</dc:date>
    </item>
  </channel>
</rss>

