<?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: MIRO in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/miro/m-p/6585067#M1434983</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you look for BADI in MIRO, you should read [Note 1156325 - BAdIs in the Logistics Invoice Verification environment|https://service.sap.com/sap/support/notes/1156325]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Jan 2010 13:12:03 GMT</pubDate>
    <dc:creator>RaymondGiuseppi</dc:creator>
    <dc:date>2010-01-27T13:12:03Z</dc:date>
    <item>
      <title>MIRO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/miro/m-p/6585065#M1434981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have issue regarding automatic bank pick up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have activated partner bank type in my MIRO/FB60 and user has to enter this field manually while posting.&lt;/P&gt;&lt;P&gt;My user wantst to fill this field automatically based on the currency given while posting the invoice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex: In miro we are giving currency as USD based on this the Partner bank type field to be filled as USD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please advise is there any User exists or badi for getting this functionality.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Balu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2010 12:55:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/miro/m-p/6585065#M1434981</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-27T12:55:20Z</dc:date>
    </item>
    <item>
      <title>Re: MIRO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/miro/m-p/6585066#M1434982</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 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LMR1M001----- User exits in Logistics Invoice Verification&lt;/P&gt;&lt;P&gt;&amp;gt; EXIT_SAPLMR1M_003&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Aditya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2010 13:07:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/miro/m-p/6585066#M1434982</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-27T13:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: MIRO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/miro/m-p/6585067#M1434983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you look for BADI in MIRO, you should read [Note 1156325 - BAdIs in the Logistics Invoice Verification environment|https://service.sap.com/sap/support/notes/1156325]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2010 13:12:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/miro/m-p/6585067#M1434983</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2010-01-27T13:12:03Z</dc:date>
    </item>
    <item>
      <title>Re: MIRO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/miro/m-p/6585068#M1434984</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;1.- One possibility is in INVOICE_UPDATE (CHANGE_AT_SAVE):&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
IF SY-TCODE = 'MIRO' OR SY-TCODE = 'FB60'
  CONSTANTS: c_rbkpvb(15) TYPE c VALUE '(SAPLMR1M)RBKPV'.
  FIELD-SYMBOLS: &amp;lt;fs_rbkpvb&amp;gt; TYPE mrm_rbkpv.
  ASSIGN (c_rbkpvb) TO &amp;lt;fs_rbkpvb&amp;gt;.
  IF NOT &amp;lt;fs_rbkpvb&amp;gt;-waers IS INITIAL.
    &amp;lt;fs_rbkpvb&amp;gt;-vbtyp = &amp;lt;fs_rbkpvb&amp;gt;-waers.
  ENDIF.
ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.- Another possibility is in badi MRM_HEADER_CHECK (method HEADERDATA_CHECK)  &lt;/P&gt;&lt;P&gt;try something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
IF sy-tode = 'MIRO' OR sy-tcode = 'FB60'.
  CONSTANTS: c_waers(21) TYPE c VALUE '(SAPLMR1M)RBKPV-WAERS'.
  FIELD-SYMBOLS: &amp;lt;fs_waers&amp;gt; TYPE ANY.
  ASSIGN (c_waers) TO &amp;lt;fs_waers&amp;gt;.

  IF NOT &amp;lt;fs_waers&amp;gt; IS INITIAL.
    CONSTANTS: c_bvtyp(21) TYPE c VALUE '(SAPLMR1M)RBKPV-BVTYP'.
    FIELD-SYMBOLS: &amp;lt;fs_bvtyp&amp;gt; TYPE ANY.
    ASSIGN (c_bvtyp) TO &amp;lt;fs_bvtyp&amp;gt;.
    &amp;lt;fs_bvtyp&amp;gt; = &amp;lt;fs_waers&amp;gt;.
  ENDIF.
ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Pablo Casamayor on Jan 29, 2010 12:24 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jan 2010 10:48:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/miro/m-p/6585068#M1434984</guid>
      <dc:creator>former_member182371</dc:creator>
      <dc:date>2010-01-29T10:48:25Z</dc:date>
    </item>
    <item>
      <title>Re: MIRO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/miro/m-p/6585069#M1434985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;s&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Feb 2010 06:21:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/miro/m-p/6585069#M1434985</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-16T06:21:55Z</dc:date>
    </item>
  </channel>
</rss>

