<?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: Problem in Badi Invoice_update through Memory use. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-badi-invoice-update-through-memory-use/m-p/1880464#M369772</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gerard,&lt;/P&gt;&lt;P&gt;SAP has provided a SAP note regarding BADI INVOICE_UPDATE. Where we cannot change the field value. please see the&amp;lt;b&amp;gt; OSS Note: 392342&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chidanand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 Feb 2007 16:03:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-19T16:03:48Z</dc:date>
    <item>
      <title>Problem in Badi Invoice_update through Memory use.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-badi-invoice-update-through-memory-use/m-p/1880461#M369769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Champs,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would appreciate if anyone could explain one query regarding my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am working in one Badi (Invoice_update) which doesn't have any export parameter as a result i am facing the problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;Problem is: I have to insert the PO#  in Assignment field(ZUONR) number. By default Assignment field contains Date. but my requirement is to change the date to PO# in the Assignment field(ZUONR).&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;P&gt;I have debugged and analysed that through Memory if i change the value then it updates the ZUONR field with the PO#.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;(SAPLMR1M)RM08M-EBELN contains the PO#&lt;/P&gt;&lt;P&gt;(SAPLMR1M)RBKPV-ZUONR conains the Assignment no.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now please let me know how to insert  the value of  (SAPLMR1M)RM08M-EBELN  into (SAPLMR1M)RBKPV-ZUONR .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would definatly appreciate it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Jan 2007 18:29:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-badi-invoice-update-through-memory-use/m-p/1880461#M369769</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-12T18:29:08Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Badi Invoice_update through Memory use.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-badi-invoice-update-through-memory-use/m-p/1880462#M369770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;At last I solved my problem. I am posting the solution for the future reference.&lt;/P&gt;&lt;P&gt;Please have a look.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  FIELD-SYMBOLS : &amp;lt;FS1&amp;gt; tYPE  any,&lt;/P&gt;&lt;P&gt;                  &amp;lt;FS2&amp;gt; TYPE  any.&lt;/P&gt;&lt;P&gt;  data:v_fieldname1(30) type c,&lt;/P&gt;&lt;P&gt;       v_fieldname2(30) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  v_fieldname1 = '(SAPLMR1M)RM08M-EBELN'.&lt;/P&gt;&lt;P&gt;  v_fieldname2 = '(SAPLMR1M)RBKPV-ZUONR'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  assign (v_fieldname1) to &amp;lt;fs1&amp;gt;.&lt;/P&gt;&lt;P&gt;  assign (v_fieldname2) to &amp;lt;fs2&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &amp;lt;fs2&amp;gt;  =  &amp;lt;fs1&amp;gt; .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jan 2007 02:00:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-badi-invoice-update-through-memory-use/m-p/1880462#M369770</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-15T02:00:04Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Badi Invoice_update through Memory use.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-badi-invoice-update-through-memory-use/m-p/1880463#M369771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chidanand,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I saw your thread on the net and I have the same problem as you. I was wondering which method you used within Badi INVOICE_UPDATE: CHANGE_AT_SAVE, CHANGE_BEFORE_UPDATE or CHANGE_IN_UPDATE. I have used the same source code you posted with method but it doesn't update table RBKP. I use the field RBKP-REBZG to insert the PO instead of ZUONR, but it don't think this is the problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd appreciate any help. Thanks in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gerard&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 18:55:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-badi-invoice-update-through-memory-use/m-p/1880463#M369771</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T18:55:16Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Badi Invoice_update through Memory use.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-badi-invoice-update-through-memory-use/m-p/1880464#M369772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gerard,&lt;/P&gt;&lt;P&gt;SAP has provided a SAP note regarding BADI INVOICE_UPDATE. Where we cannot change the field value. please see the&amp;lt;b&amp;gt; OSS Note: 392342&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chidanand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Feb 2007 16:03:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-badi-invoice-update-through-memory-use/m-p/1880464#M369772</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-19T16:03:48Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Badi Invoice_update through Memory use.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-badi-invoice-update-through-memory-use/m-p/1880465#M369773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chidanand,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you say as per the OSS Note: 392342&lt;/P&gt;&lt;P&gt;we cannot change the field value through BADI INVOICE_UPDATE did you put your fieldsymbols code in core mod?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jyotsna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Aug 2008 15:32:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-badi-invoice-update-through-memory-use/m-p/1880465#M369773</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-01T15:32:28Z</dc:date>
    </item>
  </channel>
</rss>

