<?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: Update BSID table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075604#M729260</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;UL&gt;&lt;LI&gt;When I wrote "use SHDB to build a small BDC wrapper report", How did you understand that SHDB will update your data ?&lt;/LI&gt;&lt;LI&gt;Wrapper is a common english word, not only a java concept, look at wikipedia for "wrapper function" in Computing.&lt;/LI&gt;&lt;LI&gt;Look much more carefully to&amp;nbsp; FI_ITEMS_MASS_CHANGE documentation, and at the first parameter structure&lt;/LI&gt;&lt;LI&gt;Look at help.sap.com and OSS notes to find the definition of financial secondary indexes which were created cause BSEG is a cluster/pool table to optimize database access. Those tables must NEVER been updated by user, they are updated by update FM to reflect BSEG update, and must be coherent with BSEG data (eg. when clearing record are copied from BSIx to BSAx and removed from first table) (Also description of BSID is "Accounting: Secondary Index for Customers")&lt;/LI&gt;&lt;/UL&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>Mon, 12 Nov 2012 09:45:40 GMT</pubDate>
    <dc:creator>RaymondGiuseppi</dc:creator>
    <dc:date>2012-11-12T09:45:40Z</dc:date>
    <item>
      <title>Update BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075596#M729252</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;           Is there a standard function module to update BSID table. Thanks&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Siby&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Nov 2007 12:53:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075596#M729252</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-27T12:53:19Z</dc:date>
    </item>
    <item>
      <title>Re: Update BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075597#M729253</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 don't think so but u can do like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  SUB_READ_UPDATE_BSEG&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM sub_read_update_bseg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF NOT it_final[] IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    LOOP AT it_final INTO wa_final.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      UPDATE bseg SET zuonr = wa_final-ccnum&lt;/P&gt;&lt;P&gt;                  WHERE bukrs EQ wa_final-bukrs&lt;/P&gt;&lt;P&gt;                  AND   belnr EQ wa_final-vbeln&lt;/P&gt;&lt;P&gt;                  AND   rfzei EQ wa_final-rfzei&lt;/P&gt;&lt;P&gt;                  AND   saknr NE ' '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--Message data updated successfully&lt;/P&gt;&lt;P&gt;    MESSAGE i888 WITH text-002.&lt;/P&gt;&lt;P&gt;    LEAVE LIST-PROCESSING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--Message No data found&lt;/P&gt;&lt;P&gt;    MESSAGE i888 WITH text-003.&lt;/P&gt;&lt;P&gt;    LEAVE LIST-PROCESSING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " SUB_READ_UPDATE_BSEG&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;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Nov 2007 12:56:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075597#M729253</guid>
      <dc:creator>former_member386202</dc:creator>
      <dc:date>2007-11-27T12:56:34Z</dc:date>
    </item>
    <item>
      <title>Re: Update BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075598#M729254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Sibi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables like BSID are updated by transactions (or complex FMs), because of the integrity of the system. Which field do you want to update at all?.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ec&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Nov 2007 12:58:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075598#M729254</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2007-11-27T12:58:36Z</dc:date>
    </item>
    <item>
      <title>Re: Update BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075599#M729255</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 want to update ZLSCH (Payment Method) field for a customer credit note.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Nov 2007 13:02:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075599#M729255</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-27T13:02:05Z</dc:date>
    </item>
    <item>
      <title>Re: Update BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075600#M729256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can use tranaction FB09 for modifiing line items in FI. You can easily develop a program which uses BDC or call transaction to do this. If you need more help, just let me know.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Nov 2007 13:08:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075600#M729256</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2007-11-27T13:08:38Z</dc:date>
    </item>
    <item>
      <title>Re: Update BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075601#M729257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FB09 is not an executable program and in do not see BSID anywhere here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone answer this question with a code sample? &lt;/P&gt;&lt;P&gt;It has been asked multiple times but there is not a single answer fitting the job here.&lt;/P&gt;&lt;P&gt;Me I want to update BSID-ZLSCH among others.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Nov 2012 16:48:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075601#M729257</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-11-09T16:48:04Z</dc:date>
    </item>
    <item>
      <title>Re: Update BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075602#M729258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Read more carefully, FB09 is a transaction not a program (update line item, where FB02 is update document), use SHDB to build a small BDC wrapper report (very easy, try it) or use a FM like FI_ITEMS_MASS_CHANGE (which will build a BDC for FB02)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BSID in only a copy (secondary index) of some BSEG items for performance (not cleared, debitor) so update MUST come from BSEG standard updates.&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>Sat, 10 Nov 2012 12:00:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075602#M729258</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2012-11-10T12:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: Update BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075603#M729259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raymond&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are several things that I do not understand and/or are wrong in your answer:&lt;/P&gt;&lt;P&gt;- SHDB is for recording purposes, not for updating let alone that it is a code generator;&lt;/P&gt;&lt;P&gt;- I have yet to see a usable, reliable and understandable BDC report. Wrapper is a Java term meaning something totally not bound to this subject;&lt;/P&gt;&lt;P&gt;- I saw FI_ITEMS_MASS_CHANGE and it does not seem to do anything with BSID or BSEG;&lt;/P&gt;&lt;P&gt;- I have used BSID as a real table and never BSEG, and I do not understand what you mean here by copy. A secondary index is totally not related, that is something you use to look up database records if you can not select on primary key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you (or anyone else) tell me how to update standard SAP tables with BDC or how to update BSID (through BSEG?) (preferably by coding sample)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR Dennis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Nov 2012 09:17:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075603#M729259</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-11-12T09:17:26Z</dc:date>
    </item>
    <item>
      <title>Re: Update BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075604#M729260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;UL&gt;&lt;LI&gt;When I wrote "use SHDB to build a small BDC wrapper report", How did you understand that SHDB will update your data ?&lt;/LI&gt;&lt;LI&gt;Wrapper is a common english word, not only a java concept, look at wikipedia for "wrapper function" in Computing.&lt;/LI&gt;&lt;LI&gt;Look much more carefully to&amp;nbsp; FI_ITEMS_MASS_CHANGE documentation, and at the first parameter structure&lt;/LI&gt;&lt;LI&gt;Look at help.sap.com and OSS notes to find the definition of financial secondary indexes which were created cause BSEG is a cluster/pool table to optimize database access. Those tables must NEVER been updated by user, they are updated by update FM to reflect BSEG update, and must be coherent with BSEG data (eg. when clearing record are copied from BSIx to BSAx and removed from first table) (Also description of BSID is "Accounting: Secondary Index for Customers")&lt;/LI&gt;&lt;/UL&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>Mon, 12 Nov 2012 09:45:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075604#M729260</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2012-11-12T09:45:40Z</dc:date>
    </item>
    <item>
      <title>Re: Update BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075605#M729261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I start to believe I might be able to use FI_ITEMS_MASS_CHANGE but still it is too vague..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I could understand it with just the importing and exporting parameter since I would then give in a BSEG record to update, nothing special about that.&lt;/P&gt;&lt;P&gt;It seems it_fldtab does nothing more than listing which fields are updated, I can do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But what to do with IT_BUZTAB? It seems to be a few key fields from BSEG, but I believe I already put those in S_BSEG.&lt;/P&gt;&lt;P&gt;Also I do not see how I could have more than one table line.&lt;/P&gt;&lt;P&gt;If I would have to put all my records in it to update I would understand that but then S_BSEG is not clear to me since I now have more than one BSEG record so what could be the logic of S_BSEG..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe with the answer to this I can produce working code to update BSEG and implicit BSID, and put it here as an instructive example.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Nov 2012 10:35:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075605#M729261</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-11-12T10:35:25Z</dc:date>
    </item>
    <item>
      <title>Re: Update BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075606#M729262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Fill the parameters so :&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;IT_FLDTAB -&amp;gt; Name of fields to update&lt;/LI&gt;&lt;LI&gt;IT_BUZTAB -&amp;gt; Current values in BSEG -&amp;gt; List of items to update (fill it with a SELECT INTO TABLE statement)&lt;/LI&gt;&lt;LI&gt;S_BSEG -&amp;gt; New values of field to update (only value of field of IT_FLDTAB will be used)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;This FM allow to apply the same change to multiple items.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Else, record transaction FB09 with SHDB and generate a program with this transaction (don't call it a wrapper if it cause trouble)&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>Mon, 12 Nov 2012 10:48:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075606#M729262</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2012-11-12T10:48:12Z</dc:date>
    </item>
    <item>
      <title>Re: Update BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075607#M729263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;though this seems to be ok, I see that BSID and BSEG are not identical in all columns.&lt;/P&gt;&lt;P&gt;How should I copy with that since I have to update the BSEG record to get to the BSID record?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Nov 2012 13:31:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075607#M729263</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-11-12T13:31:07Z</dc:date>
    </item>
    <item>
      <title>Re: Update BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075608#M729264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Read current values from BSEG, as &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;though this seems to be ok, I see that BSID and BSEG are not identical in all columns.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;can be a serious problem of database consistency, try to diagnose this with report RFINDEX (read its documentation) and&amp;nbsp; raise an OSS message (component &lt;SPAN class="urTxtStd urVt1"&gt;FI-GL-GL-X&lt;/SPAN&gt;) if it returns inconsistencies joint the report results to the message. (theorically, only SAP can use the correction report) &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>Mon, 12 Nov 2012 13:57:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075608#M729264</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2012-11-12T13:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: Update BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075609#M729265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I meant column names differed between BSID and BSEG, not the content.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway it seems not to work.. I get the non-informative message 'No changes were made'.&lt;/P&gt;&lt;P&gt;My code is this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;TYPE-POOLS &lt;SPAN class="L0S55"&gt;: &lt;/SPAN&gt;tpit&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S52"&gt;DATA&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lw_bseg_new_values&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;bseg&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; it_errtab &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;tpit_t_errdoc &lt;SPAN class="L0S52"&gt;WITH &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;HEADER &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;LINE&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; it_fldtab &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;tpit_t_fname &lt;SPAN class="L0S52"&gt;WITH &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;HEADER &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;LINE&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; it_buztab &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;tpit_t_buztab &lt;SPAN class="L0S52"&gt;WITH &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;HEADER &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;LINE&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S31"&gt;" Retrieve BSEG records.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S52"&gt;SELECT &lt;/SPAN&gt;* &lt;SPAN class="L0S52"&gt;FROM &lt;/SPAN&gt;bseg&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;CORRESPONDING &lt;SPAN class="L0S52"&gt;FIELDS &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OF &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TABLE &lt;/SPAN&gt;it_buztab &lt;SPAN class="L0S52"&gt;UP &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TO &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;2 &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ROWS&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S31"&gt;" Set the new field value for the BSEG.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;lw_bseg_new_values&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;bschl &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'TE'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S31"&gt;" Mention the fields to change.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;it_fldtab&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;fname &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'BSCHL'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S52"&gt;APPEND &lt;/SPAN&gt;it_fldtab&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S31"&gt;" Perform the update.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S52"&gt;CALL &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;FUNCTION &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'FI_ITEMS_MASS_CHANGE'&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &lt;SPAN class="L0S52"&gt;EXPORTING&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; s_bseg&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;lw_bseg_new_values&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &lt;SPAN class="L0S52"&gt;IMPORTING&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; errtab&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;it_errtab[]&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &lt;SPAN class="L0S52"&gt;TABLES&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; it_buztab&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;it_buztab&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; it_fldtab&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;it_fldtab&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &lt;SPAN class="L0S52"&gt;EXCEPTIONS&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; bdc_errors &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;1&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;OTHERS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;2&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S52"&gt;IF &lt;/SPAN&gt;sy&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;subrc &amp;lt;&amp;gt; &lt;SPAN class="L0S32"&gt;0&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &lt;SPAN class="L0S52"&gt;MESSAGE &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ID &lt;/SPAN&gt;sy&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;msgid &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;sy&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;msgty &lt;SPAN class="L0S52"&gt;NUMBER &lt;/SPAN&gt;sy&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;msgno&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;WITH &lt;/SPAN&gt;sy&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;msgv1 sy&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;msgv2 sy&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;msgv3 sy&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;msgv4&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S52"&gt;ENDIF&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;Do you see an error here?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;If this is correct it does not seem to work and it would be undoable to debug the whole FB02 which is called inside the function module.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;Let me know if you need any debug shot to answer this and on what moment.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;BR Dennis&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Nov 2012 14:12:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075609#M729265</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-11-12T14:12:47Z</dc:date>
    </item>
    <item>
      <title>Re: Update BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075610#M729266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;BSCHL cannot be modified. Look via Customizing on available fields list : Financial Accounting, Financial Accounting Global Settings, Document, Line Item, Document Change Rules, Line Item. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;PS: The FM seems to be more restrictive than transactions FB02/FB09, look at form SCREEN_DETAIL in include LFI_ITEMSF03.&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Nov 2012 14:21:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075610#M729266</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2012-11-12T14:21:08Z</dc:date>
    </item>
    <item>
      <title>Re: Update BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075611#M729267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Now I try to do it with KIDNO which should be okay according to this list:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S31"&gt;" Set the new field value for the BSEG.&lt;BR /&gt;lw_bseg_new_values&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;KIDNO &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'TESTTESTTESTTESTTESTTESTTEST'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="L0S31"&gt;" Mention the fields to change.&lt;/SPAN&gt;&lt;BR /&gt;it_fldtab&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;fname &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'KIDNO'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="L0S52"&gt;APPEND &lt;/SPAN&gt;it_fldtab&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S31"&gt;&lt;SPAN class="L0S55"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S31"&gt;&lt;SPAN class="L0S55"&gt;Instead of the BSCHL lines above.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S31"&gt;&lt;SPAN class="L0S55"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S31"&gt;&lt;SPAN class="L0S55"&gt;But I still get the same error, also when I put X in AENKZ in IT_FLDTAB it does not make a difference..&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Nov 2012 14:41:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075611#M729267</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-11-12T14:41:27Z</dc:date>
    </item>
    <item>
      <title>Re: Update BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075612#M729268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is your version, on my ECC6 Ehp4, KIDNO not allowed in Customizing. As it is not managed by the FM, you must create the BDC yourself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So try to change this field via transaction FB02 or FB09, read the source of the form, look for the Customizing. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For old version, look for OSS notes to implement.&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>Mon, 12 Nov 2012 15:31:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075612#M729268</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2012-11-12T15:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: Update BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075613#M729269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would you know which BSEG field I can update for this function module? Then I will try it with this one.. I really hope to get it working at least for one field it would be helpful for us to get this working even if just for futural versions. I have no idea about my version..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Nov 2012 15:55:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075613#M729269</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-11-12T15:55:58Z</dc:date>
    </item>
    <item>
      <title>Re: Update BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075614#M729270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got a program here that works.&lt;/P&gt;&lt;P&gt;Be sure to edit the belnr and bukrs to an existing record in your own database.&lt;/P&gt;&lt;P&gt;Do not only use belnr since this use s less of the full primary index and can cause performance issues..&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;SPAN class="L0S31"&gt;*&amp;amp;---------------------------------------------------------------------*&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S31"&gt;*&amp;amp; Report&amp;nbsp; ZTEST_FB02&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S31"&gt;*&amp;amp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S31"&gt;*&amp;amp;---------------------------------------------------------------------*&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S31"&gt;*&amp;amp; Demo program for FI_ITEMS_MASS_CHANGE, a module to update BSEG.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S31"&gt;*&amp;amp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S31"&gt;*&amp;amp;---------------------------------------------------------------------*&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S52"&gt;REPORT&amp;nbsp; &lt;/SPAN&gt;ztest_fb02&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S52"&gt;TYPE-POOLS &lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;: &lt;/SPAN&gt;tpit&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S52"&gt;DATA &lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;: &lt;/SPAN&gt;w_bseg &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;bseg&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;w_message &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;t100&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;text&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S52"&gt;DATA &lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;: &lt;/SPAN&gt;it_errtab &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;tpit_t_errdoc &lt;SPAN class="L0S52"&gt;WITH &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;HEADER &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;LINE&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; it_fldtab &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;tpit_t_fname &lt;SPAN class="L0S52"&gt;WITH &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;HEADER &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;LINE&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; it_buztab &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;tpit_t_buztab &lt;SPAN class="L0S52"&gt;WITH &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;HEADER &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;LINE&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S31"&gt;* Field name to be changed&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;it_fldtab&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;fname &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'ZUONR'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S52"&gt;APPEND &lt;/SPAN&gt;it_fldtab&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S52"&gt;CLEAR &lt;/SPAN&gt;it_fldtab&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S31"&gt;* Field value&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;w_bseg&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;zuonr &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'TESTtest'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S31"&gt;* ITEM 7&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S52"&gt;SELECT &lt;/SPAN&gt;bukrs belnr gjahr buzei koart umskz bschl mwart mwskz&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &lt;SPAN class="L0S52"&gt;FROM &lt;/SPAN&gt;bseg &lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;CORRESPONDING &lt;SPAN class="L0S52"&gt;FIELDS &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OF &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TABLE &lt;/SPAN&gt;it_buztab&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &lt;SPAN class="L0S52"&gt;WHERE &lt;/SPAN&gt;belnr &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'0411219696' &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;AND &lt;/SPAN&gt;bukrs &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'0010'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S52"&gt;CALL &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;FUNCTION &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'FI_ITEMS_MASS_CHANGE'&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &lt;SPAN class="L0S52"&gt;EXPORTING&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; s_bseg&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;w_bseg&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &lt;SPAN class="L0S52"&gt;IMPORTING&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; errtab&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;it_errtab[]&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &lt;SPAN class="L0S52"&gt;TABLES&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; it_buztab&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;it_buztab&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; it_fldtab&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;it_fldtab&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &lt;SPAN class="L0S52"&gt;EXCEPTIONS&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; bdc_errors &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;1&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;OTHERS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;2&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S52"&gt;IF &lt;/SPAN&gt;sy&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;subrc &amp;lt;&amp;gt; &lt;SPAN class="L0S32"&gt;0&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &lt;SPAN class="L0S52"&gt;MESSAGE &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ID &lt;/SPAN&gt;sy&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;msgid &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;sy&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;msgty &lt;SPAN class="L0S52"&gt;NUMBER &lt;/SPAN&gt;sy&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;msgno&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &lt;SPAN class="L0S52"&gt;WITH &lt;/SPAN&gt;sy&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;msgv1 sy&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;msgv2 sy&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;msgv3 sy&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;msgv4&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S52"&gt;ENDIF&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S31"&gt;&lt;SPAN class="L0S55"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S31"&gt;&lt;SPAN class="L0S55"&gt;Raymond thanks for your input:)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Nov 2012 12:37:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-bsid-table/m-p/3075614#M729270</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-11-20T12:37:13Z</dc:date>
    </item>
  </channel>
</rss>

