<?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: Using BADI (MRM_WT_SPLIT_UPDATE) in MIRO in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-badi-mrm-wt-split-update-in-miro/m-p/5941516#M1334652</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use CLEAR, REFRESH statement. Do not do the Loop..Endloop that you are doing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Jul 2009 19:28:31 GMT</pubDate>
    <dc:creator>TusharP</dc:creator>
    <dc:date>2009-07-14T19:28:31Z</dc:date>
    <item>
      <title>Using BADI (MRM_WT_SPLIT_UPDATE) in MIRO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-badi-mrm-wt-split-update-in-miro/m-p/5941515#M1334651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In some cases i will use the BADI (MRM_WT_SPLIT_UPDATE) to clear the table of Withholding Tax in miro&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;I want to clear the table of Withholding Tax, look my font:&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;METHOD if_ex_mrm_wt_split_update~whtax_split_update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: wa_rbws TYPE rbws,&lt;/P&gt;&lt;P&gt;wa_rbvs TYPE rbvs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;te_rbws[ ] = i_rbkpv-h_rbws[ ].&lt;/P&gt;&lt;P&gt;te_rbvs[ ] = i_rbkpv-h_rbvs[ ].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT i_rbkpv-h_rbws INTO wa_rbws.&lt;/P&gt;&lt;P&gt;CLEAR wa_rbws.&lt;/P&gt;&lt;P&gt;MODIFY te_rbws FROM wa_rbws INDEX sy-tabix.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT i_rbkpv-h_rbvs INTO wa_rbvs.&lt;/P&gt;&lt;P&gt;CLEAR wa_rbvs.&lt;/P&gt;&lt;P&gt;MODIFY te_rbvs FROM wa_rbvs INDEX sy-tabix.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMETHOD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;But does not work.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jul 2009 19:05:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-badi-mrm-wt-split-update-in-miro/m-p/5941515#M1334651</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-14T19:05:56Z</dc:date>
    </item>
    <item>
      <title>Re: Using BADI (MRM_WT_SPLIT_UPDATE) in MIRO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-badi-mrm-wt-split-update-in-miro/m-p/5941516#M1334652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use CLEAR, REFRESH statement. Do not do the Loop..Endloop that you are doing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jul 2009 19:28:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-badi-mrm-wt-split-update-in-miro/m-p/5941516#M1334652</guid>
      <dc:creator>TusharP</dc:creator>
      <dc:date>2009-07-14T19:28:31Z</dc:date>
    </item>
    <item>
      <title>Re: Using BADI (MRM_WT_SPLIT_UPDATE) in MIRO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-badi-mrm-wt-split-update-in-miro/m-p/5941517#M1334653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Thanks for the help Tushar Pradhan but do not solved my problem, i changed the font code to:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;METHOD if_ex_mrm_wt_split_update~whtax_split_update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: wa_rbws TYPE rbws,&lt;/P&gt;&lt;P&gt;        wa_rbvs TYPE rbvs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    te_rbws[ ] = i_rbkpv-h_rbws[ ].&lt;/P&gt;&lt;P&gt;    te_rbvs[ ] = i_rbkpv-h_rbvs[ ].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    REFRESH: te_rbws,&lt;/P&gt;&lt;P&gt;                     te_rbvs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMETHOD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;In any case, thanks for try.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Raphael Maia on Jul 14, 2009 9:47 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jul 2009 19:46:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-badi-mrm-wt-split-update-in-miro/m-p/5941517#M1334653</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-14T19:46:44Z</dc:date>
    </item>
    <item>
      <title>Re: Using BADI (MRM_WT_SPLIT_UPDATE) in MIRO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-badi-mrm-wt-split-update-in-miro/m-p/5941518#M1334654</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 dont know the exact solution but reading the documentation of the BADI.....i can figure out u need to do the configuration settings in SPRO.........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Secondly,try only refreshing and clearing the fields u dont want dont refresh the whole internal table.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;kanishak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jul 2009 20:52:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-badi-mrm-wt-split-update-in-miro/m-p/5941518#M1334654</guid>
      <dc:creator>kanishakgupta1</dc:creator>
      <dc:date>2009-07-14T20:52:19Z</dc:date>
    </item>
  </channel>
</rss>

