<?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: Change the Tax Code in Tcode - MIRO in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-the-tax-code-in-tcode-miro/m-p/11657876#M1944133</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kaushik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply, i have changed the code as below now. I am using constants and field symbol.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;&lt;SPAN class="L0S52"&gt;method &lt;/SPAN&gt;IF_EX_MRM_HEADER_CHECK&lt;SPAN class="L0S70"&gt;~&lt;/SPAN&gt;HEADERDATA_CHECK&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;DATA&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;: &lt;/SPAN&gt;lv_name&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;30&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;) &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;c &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;VALUE &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'(SAPLMR1M)DRSEG'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;FIELD-SYMBOLS &lt;/SPAN&gt;&amp;lt;fs_drseg&amp;gt; &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;drseg&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;ASSIGN &lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;lv_name&lt;SPAN class="L0S55"&gt;) &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;to &lt;/SPAN&gt;&amp;lt;fs_drseg&amp;gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;IF &lt;/SPAN&gt;&amp;lt;fs_drseg&amp;gt; &lt;SPAN class="L0S52"&gt;IS &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ASSIGNED&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;fs_drseg&amp;gt;&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;mwskz &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'VN'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;ENDIF&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="L0S52"&gt;endmethod&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;But still the value is not changing. Please let me know how to solve this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KR,&lt;/P&gt;&lt;P&gt;Venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 May 2016 10:24:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2016-05-12T10:24:02Z</dc:date>
    <item>
      <title>Change the Tax Code in Tcode - MIRO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-the-tax-code-in-tcode-miro/m-p/11657874#M1944131</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;I need to change the tax code in the MIRO screen(Please see the attached image). I have created an implementation for the BADI 'MRM_HEADER_CHECK'. I programmed as below to change the tax code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: &lt;SPAN style="font-size: 13.3333px;"&gt;I will change the tax code depending upon the custom values which we get, I just used VN for the test purpose.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;&lt;SPAN class="L0S52"&gt;method &lt;/SPAN&gt;IF_EX_MRM_HEADER_CHECK&lt;SPAN class="L0S70"&gt;~&lt;/SPAN&gt;HEADERDATA_CHECK&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;FIELD-SYMBOLS &lt;/SPAN&gt;&amp;lt;ls_drseg&amp;gt; &lt;SPAN class="L0S52"&gt;LIKE &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;LINE &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OF &lt;/SPAN&gt;ti_drseg[]&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;LOOP &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;AT &lt;/SPAN&gt;ti_drseg &lt;SPAN class="L0S52"&gt;ASSIGNING &lt;/SPAN&gt;&amp;lt;ls_drseg&amp;gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;ls_drseg&amp;gt;&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;mwskz &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'VN'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;ENDLOOP&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="L0S52"&gt;endmethod&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the tax code value is not changing. Is there any way to change the tax code? Please let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 May 2016 10:05:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-the-tax-code-in-tcode-miro/m-p/11657874#M1944131</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-05-12T10:05:57Z</dc:date>
    </item>
    <item>
      <title>Re: Change the Tax Code in Tcode - MIRO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-the-tax-code-in-tcode-miro/m-p/11657875#M1944132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In the method, TI_DRSEG is &lt;STRONG&gt;importing parameter&lt;/STRONG&gt; hence change will not be effective until you have changing or exporting parameters in method parameters.&lt;/P&gt;&lt;P&gt;You can search for other options..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 May 2016 10:10:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-the-tax-code-in-tcode-miro/m-p/11657875#M1944132</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-05-12T10:10:51Z</dc:date>
    </item>
    <item>
      <title>Re: Change the Tax Code in Tcode - MIRO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-the-tax-code-in-tcode-miro/m-p/11657876#M1944133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kaushik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply, i have changed the code as below now. I am using constants and field symbol.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;&lt;SPAN class="L0S52"&gt;method &lt;/SPAN&gt;IF_EX_MRM_HEADER_CHECK&lt;SPAN class="L0S70"&gt;~&lt;/SPAN&gt;HEADERDATA_CHECK&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;DATA&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;: &lt;/SPAN&gt;lv_name&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;30&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;) &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;c &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;VALUE &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'(SAPLMR1M)DRSEG'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;FIELD-SYMBOLS &lt;/SPAN&gt;&amp;lt;fs_drseg&amp;gt; &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;drseg&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;ASSIGN &lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;lv_name&lt;SPAN class="L0S55"&gt;) &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;to &lt;/SPAN&gt;&amp;lt;fs_drseg&amp;gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;IF &lt;/SPAN&gt;&amp;lt;fs_drseg&amp;gt; &lt;SPAN class="L0S52"&gt;IS &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ASSIGNED&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;fs_drseg&amp;gt;&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;mwskz &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'VN'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;ENDIF&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="L0S52"&gt;endmethod&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;But still the value is not changing. Please let me know how to solve this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KR,&lt;/P&gt;&lt;P&gt;Venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 May 2016 10:24:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-the-tax-code-in-tcode-miro/m-p/11657876#M1944133</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-05-12T10:24:02Z</dc:date>
    </item>
    <item>
      <title>Re: Change the Tax Code in Tcode - MIRO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-the-tax-code-in-tcode-miro/m-p/11657877#M1944134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;Hi Kaushik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;Thanks for the reply, i have changed the code as below now. I am using constants and field symbol.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="dp-highlighter" style="color: #333333; background-position: initial;"&gt;&lt;/P&gt;&lt;DIV class="bar" style="font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;&lt;P&gt;&lt;/P&gt;&lt;OL class="dp-sql" start="1" style="font-weight: inherit; font-style: inherit; font-family: inherit; background-position: initial;"&gt;&lt;LI&gt;&lt;SPAN style="font-style: inherit; font-weight: inherit; background-position: initial;"&gt;method IF_EX_MRM_HEADER_CHECK~HEADERDATA_CHECK.&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; background-position: initial;"&gt;&amp;nbsp;&amp;nbsp; DATA: lv_name(30) TYPE c VALUE &lt;SPAN class="string" style="font-weight: inherit; font-style: inherit; background-position: initial;"&gt;'(SAPLMR1M)DRSEG'&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; background-position: initial;"&gt;.&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; background-position: initial;"&gt;&amp;nbsp;&amp;nbsp; FIELD-SYMBOLS &amp;lt;fs_drseg&amp;gt; TYPE drseg.&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; background-position: initial;"&gt;&amp;nbsp;&amp;nbsp; ASSIGN (lv_name) &lt;SPAN class="keyword" style="font-weight: inherit; font-style: inherit; background-position: initial;"&gt;to&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; background-position: initial;"&gt; &amp;lt;fs_drseg&amp;gt;.&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; background-position: initial;"&gt;&amp;nbsp;&amp;nbsp; IF &amp;lt;fs_drseg&amp;gt; &lt;SPAN class="keyword" style="font-weight: inherit; font-style: inherit; background-position: initial;"&gt;IS&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; background-position: initial;"&gt; ASSIGNED.&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; background-position: initial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;fs_drseg&amp;gt;-mwskz = &lt;SPAN class="string" style="font-weight: inherit; font-style: inherit; background-position: initial;"&gt;'VN'&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; background-position: initial;"&gt;.&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; background-position: initial;"&gt;&amp;nbsp;&amp;nbsp; ENDIF.&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; background-position: initial;"&gt;endmethod.&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;/DIV&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;But still the value is not changing. Please let me know how to solve this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;KR,&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;Venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 May 2016 10:24:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-the-tax-code-in-tcode-miro/m-p/11657877#M1944134</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-05-12T10:24:57Z</dc:date>
    </item>
    <item>
      <title>Re: Change the Tax Code in Tcode - MIRO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-the-tax-code-in-tcode-miro/m-p/11657878#M1944135</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;The BADI you are using is only for Additional Checks of the Document Header Data not for changing the values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check alternate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 May 2016 10:44:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-the-tax-code-in-tcode-miro/m-p/11657878#M1944135</guid>
      <dc:creator>jay_kumar8</dc:creator>
      <dc:date>2016-05-12T10:44:31Z</dc:date>
    </item>
    <item>
      <title>Re: Change the Tax Code in Tcode - MIRO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-the-tax-code-in-tcode-miro/m-p/11657879#M1944136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;SAP Note 395973 reference would be useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shubham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 May 2016 10:50:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-the-tax-code-in-tcode-miro/m-p/11657879#M1944136</guid>
      <dc:creator>Shubham_Srivastava1</dc:creator>
      <dc:date>2016-05-12T10:50:34Z</dc:date>
    </item>
    <item>
      <title>Re: Change the Tax Code in Tcode - MIRO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-the-tax-code-in-tcode-miro/m-p/11657880#M1944137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Like I said, this method is not to change any value ( all parameters are importing) , you can change the value in the method , but when control goes back to main code , you cant see any change value. To change any value method should have changing or exporting parameters. &lt;/P&gt;&lt;P&gt;Hence search for another BADi which allows to change parameters.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 May 2016 03:35:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-the-tax-code-in-tcode-miro/m-p/11657880#M1944137</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-05-13T03:35:01Z</dc:date>
    </item>
    <item>
      <title>Re: Change the Tax Code in Tcode - MIRO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-the-tax-code-in-tcode-miro/m-p/11657881#M1944138</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;Try this badi MRM_WT_SPLIT_UPDATE(BAdI for Changing Withholding Tax and Amount Split).&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;Regards,&lt;/P&gt;&lt;P&gt;E.Ananthachari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 May 2016 04:02:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-the-tax-code-in-tcode-miro/m-p/11657881#M1944138</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-05-13T04:02:07Z</dc:date>
    </item>
    <item>
      <title>Re: Change the Tax Code in Tcode - MIRO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-the-tax-code-in-tcode-miro/m-p/11657882#M1944139</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;shouldn´t that be a customizing issue rather than development one?&lt;/P&gt;&lt;P&gt;Why can´t that be done via SPRO?&lt;/P&gt;&lt;P&gt;i don´t get it...&lt;/P&gt;&lt;P&gt;Please read this oss note:&lt;/P&gt;&lt;P&gt;&lt;A href="http://service.sap.com/sap/support/notes/904652" style="font-family: Arial, Helvetica, sans-serif; background-color: #cbdbea;" title="904652  - MIRO: Different from FB60"&gt;&lt;SPAN class="title" style="color: #000000; font-weight: bold;"&gt;904652 - MIRO: Different from FB60&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Pablo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 May 2016 07:36:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-the-tax-code-in-tcode-miro/m-p/11657882#M1944139</guid>
      <dc:creator>former_member182371</dc:creator>
      <dc:date>2016-05-15T07:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: Change the Tax Code in Tcode - MIRO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-the-tax-code-in-tcode-miro/m-p/11657883#M1944140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ABAP SCN,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you solved your problem?. I need to do the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 08:03:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-the-tax-code-in-tcode-miro/m-p/11657883#M1944140</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-06-16T08:03:45Z</dc:date>
    </item>
    <item>
      <title>Re: Change the Tax Code in Tcode - MIRO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-the-tax-code-in-tcode-miro/m-p/11657884#M1944141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi David,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try the BAdI&amp;nbsp; 'MRM_HEADER_CHECK'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;&lt;SPAN class="L0S52"&gt;METHOD &lt;/SPAN&gt;if_ex_mrm_header_check&lt;SPAN class="L0S70"&gt;~&lt;/SPAN&gt;headerdata_check.&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="L0S52"&gt;DATA&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;: &lt;/SPAN&gt;lv_drseg&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;30&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;) &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;c &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;VALUE &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'(SAPLMR1M)YDRSEG[]'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt; &lt;SPAN class="L0S52"&gt;DATA&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;: &lt;/SPAN&gt;ls_drseg &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;LINE &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OF &lt;/SPAN&gt;mmcr_tdrseg&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt; &lt;SPAN class="L0S52"&gt;FIELD-SYMBOLS&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;: &lt;/SPAN&gt;&amp;lt;fs_drseg&amp;gt; &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;mmcr_tdrseg&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt; &lt;SPAN class="L0S52"&gt;ASSIGN &lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;lv_drseg&lt;SPAN class="L0S55"&gt;) &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TO &lt;/SPAN&gt;&amp;lt;fs_drseg&amp;gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt; &lt;SPAN class="L0S52"&gt;IF &lt;/SPAN&gt;&amp;lt;fs_drseg&amp;gt; &lt;SPAN class="L0S52"&gt;IS &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ASSIGNED&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;LOOP &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;AT &lt;/SPAN&gt;&amp;lt;fs_drseg&amp;gt; &lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;ls_drseg&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ls_drseg&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;mwskz &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'VN'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;MODIFY &lt;/SPAN&gt;&amp;lt;fs_drseg&amp;gt; &lt;SPAN class="L0S52"&gt;FROM &lt;/SPAN&gt;ls_drseg &lt;SPAN class="L0S52"&gt;INDEX &lt;/SPAN&gt;sy&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;tabix&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;ENDLOOP&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt; &lt;SPAN class="L0S52"&gt;ENDIF.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;SPAN class="L0S52"&gt;ENDMETHOD&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KR&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 11:38:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-the-tax-code-in-tcode-miro/m-p/11657884#M1944141</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-06-16T11:38:39Z</dc:date>
    </item>
    <item>
      <title>Re: Change the Tax Code in Tcode - MIRO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-the-tax-code-in-tcode-miro/m-p/11657885#M1944142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That works!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 13:26:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-the-tax-code-in-tcode-miro/m-p/11657885#M1944142</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-06-16T13:26:33Z</dc:date>
    </item>
  </channel>
</rss>

