<?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 BADI Problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-problem/m-p/6907322#M1482324</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;good day sap experts,&lt;/P&gt;&lt;P&gt;ive got a problem in ie03 t.code. there i need to populate the screen exit..but unable to going the process.&lt;/P&gt;&lt;P&gt;Recently ive imp the BADI for ie03 t.code..As per oss note 1111023 got a problem. so ive implemented  the BADI one which is the badi defination from equi_update. Badi implementation name is zwarrenty.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 field-symbols:&amp;lt;bgmkobj_new&amp;gt; TYPE wty_bgmkobj_tab,
                &amp;lt;bgmkobj_old&amp;gt; TYPE table.
  ASSIGN ('(SAPLWTY20)gt_bgmkobj_new') TO &amp;lt;bgmkobj_new&amp;gt;.
  check sy-subrc = 0.
  ASSIGN ('(SAPLWTY20)gt_bgmkobj_old2') TO &amp;lt;bgmkobj_old&amp;gt;.
  check sy-subrc = 0.
  CALL FUNCTION 'WTY20_DB_UPDATE_BGMKOBJ2'
    EXPORTING
      i_data_equi          = i_data_equi
      it_bgmkobj_new       = &amp;lt;bgmkobj_new&amp;gt;
      it_bgmkobj_old       = &amp;lt;bgmkobj_old&amp;gt;.
  unassign:&amp;lt;bgmkobj_new&amp;gt;, &amp;lt;bgmkobj_old&amp;gt;.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;But its not working. Before i did three activies. first ive created the screen in XTOB Function group. In the screen flow logic level&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PROCESS BEFORE OUTPUT.
CALL SUBSCREEN sub1 INCLUDING 'SAPLWTY20' '0110'.
PROCESS AFTER INPUT.
CALL SUBSCREEN sub1.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Second Activity, ive immplemented the function exit for EXIT_SAPLITO0_001&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
e_subscreen_number = '1004'.
CALL FUNCTION 'WTY20_OBJNR_SET'
 EXPORTING
   IV_OBJNR         = i_data_equi-objnr
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;and the thrid activi is BAdi as above mentioned.  I did perfectly well but its not working. Plz let me know if any one did before&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Apr 2010 05:44:33 GMT</pubDate>
    <dc:creator>former_member251546</dc:creator>
    <dc:date>2010-04-26T05:44:33Z</dc:date>
    <item>
      <title>BADI Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-problem/m-p/6907322#M1482324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;good day sap experts,&lt;/P&gt;&lt;P&gt;ive got a problem in ie03 t.code. there i need to populate the screen exit..but unable to going the process.&lt;/P&gt;&lt;P&gt;Recently ive imp the BADI for ie03 t.code..As per oss note 1111023 got a problem. so ive implemented  the BADI one which is the badi defination from equi_update. Badi implementation name is zwarrenty.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 field-symbols:&amp;lt;bgmkobj_new&amp;gt; TYPE wty_bgmkobj_tab,
                &amp;lt;bgmkobj_old&amp;gt; TYPE table.
  ASSIGN ('(SAPLWTY20)gt_bgmkobj_new') TO &amp;lt;bgmkobj_new&amp;gt;.
  check sy-subrc = 0.
  ASSIGN ('(SAPLWTY20)gt_bgmkobj_old2') TO &amp;lt;bgmkobj_old&amp;gt;.
  check sy-subrc = 0.
  CALL FUNCTION 'WTY20_DB_UPDATE_BGMKOBJ2'
    EXPORTING
      i_data_equi          = i_data_equi
      it_bgmkobj_new       = &amp;lt;bgmkobj_new&amp;gt;
      it_bgmkobj_old       = &amp;lt;bgmkobj_old&amp;gt;.
  unassign:&amp;lt;bgmkobj_new&amp;gt;, &amp;lt;bgmkobj_old&amp;gt;.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;But its not working. Before i did three activies. first ive created the screen in XTOB Function group. In the screen flow logic level&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PROCESS BEFORE OUTPUT.
CALL SUBSCREEN sub1 INCLUDING 'SAPLWTY20' '0110'.
PROCESS AFTER INPUT.
CALL SUBSCREEN sub1.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Second Activity, ive immplemented the function exit for EXIT_SAPLITO0_001&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
e_subscreen_number = '1004'.
CALL FUNCTION 'WTY20_OBJNR_SET'
 EXPORTING
   IV_OBJNR         = i_data_equi-objnr
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;and the thrid activi is BAdi as above mentioned.  I did perfectly well but its not working. Plz let me know if any one did before&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Apr 2010 05:44:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-problem/m-p/6907322#M1482324</guid>
      <dc:creator>former_member251546</dc:creator>
      <dc:date>2010-04-26T05:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: BADI Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-problem/m-p/6907323#M1482325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;problem was solved with cofiguration..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz can any one tell. how to close this issue..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Apr 2010 11:34:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-problem/m-p/6907323#M1482325</guid>
      <dc:creator>former_member251546</dc:creator>
      <dc:date>2010-04-28T11:34:21Z</dc:date>
    </item>
    <item>
      <title>Re: BADI Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-problem/m-p/6907324#M1482326</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;I have created an implementation for badi EQUI_UPDATE but it's not getting triggered in IE01 or IE02. I have made sure that badi implementation is active and don't know what could be the problem. Any suggestions?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanking you in advance, best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nisha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2013 14:56:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-problem/m-p/6907324#M1482326</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-01-23T14:56:04Z</dc:date>
    </item>
  </channel>
</rss>

