<?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 with RFUMSV00 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfumsv00/m-p/4386943#M1043253</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try something like this:  &lt;/P&gt;&lt;P&gt;(I didn't know what name1 was defined like)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;method IF_EX_FI_TAX_BADI_014~MODIFY_FIELDCAT.&lt;/P&gt;&lt;P&gt;data: wa_ch_tab_fieldcat type slis_fieldcat_alv,&lt;/P&gt;&lt;P&gt;name1(10).&lt;/P&gt;&lt;P&gt;Loop at CH_TAB_FIELDCAT into wa_ch_tab_fieldcat.&lt;/P&gt;&lt;P&gt;If wa_ch_tab_fieldcat-fieldname = NAME1.&lt;/P&gt;&lt;P&gt;wa_ch_tab_fieldcat-text_fieldname = 'Billto Party'.&lt;/P&gt;&lt;P&gt;modify ch_tab_fieldcat from wa_ch_tab_fieldcat.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;endmethod.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OOP does not allow header lines in internal tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Michelle&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Aug 2008 15:11:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-27T15:11:59Z</dc:date>
    <item>
      <title>Problem with RFUMSV00</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfumsv00/m-p/4386940#M1043250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi I had problem with RFUMSV00 program.Let me explain the requirment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After executing the program RFUMSV00,in the selection screen there is TAB OUTPUT LIST.After you press the OUTPUT list and then if you press configure button we can able to see the out put list in teh ALV format.After disoplaying the ALV format if we go to the change layout we can find some fields in the Hidden fields list.So in the hidden field list there is fields called USER FIELD1,2,3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So i want to change the Field name and i need to populate those values.&lt;/P&gt;&lt;P&gt;For this is there any way to do it.I find some of the BADI are existed but i am not sure how to implement those changes in BADI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any body have an idea please help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Aug 2008 09:53:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfumsv00/m-p/4386940#M1043250</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-27T09:53:28Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with RFUMSV00</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfumsv00/m-p/4386941#M1043251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The BADI that you would use is FI_TAX_BADI_014.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SE19 -&amp;gt;  &lt;/P&gt;&lt;P&gt;Enter Z* - * is what you name it.&lt;/P&gt;&lt;P&gt;The definition name is FI_TAX_BADI_014.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enter the filter data for your country key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Save.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Double click on the method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enter in your code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: I haven't used this code, and it is just a general idea.  You will have to create it with proper sytax.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop CH_TAB_FIELDCAT.&lt;/P&gt;&lt;P&gt;   .... When you find the field name that you want to change the description in CH_TAB_FIELDCAT-fieldname&lt;/P&gt;&lt;P&gt;CH_TAB_FIELDCAT-text_fieldname = 'Your Text'.&lt;/P&gt;&lt;P&gt;modify ch_tab_fieldcat.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you are ready to go, activate your BADI.  You can set break-points, and watch it work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Michelle&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Aug 2008 13:04:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfumsv00/m-p/4386941#M1043251</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-27T13:04:15Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with RFUMSV00</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfumsv00/m-p/4386942#M1043252</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;Thanks for your valuble answer.I am traying to do the same ,in the method i have return the code like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;method IF_EX_FI_TAX_BADI_014~MODIFY_FIELDCAT.&lt;/P&gt;&lt;P&gt;Loop at CH_TAB_FIELDCAT .&lt;/P&gt;&lt;P&gt;If CH_TAB-FIELDCAT-FIELDNAME = NAME1.&lt;/P&gt;&lt;P&gt;CH_TAB_FIELDCAT-text_NAME1 = 'Billto Party'.&lt;/P&gt;&lt;P&gt;modify ch_tab_fieldcat.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;endmethod.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it is giving an error &lt;/P&gt;&lt;P&gt;Class ZCL_IM_RFIDIT_TAX_BADI_010,Method IF_EX_FI_TAX_BADI_014~MODIFY_FIELDCAT&lt;/P&gt;&lt;P&gt;At "LOOP AT itab", one of the additions "INTO", "ASSIGNING", or&lt;/P&gt;&lt;P&gt;"TRANSPORTING NO FIELDS" is required. in the OO context.&lt;/P&gt;&lt;P&gt;I am poor OOPS that is my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please help me with this.I am very much greate full for this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Aug 2008 14:36:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfumsv00/m-p/4386942#M1043252</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-27T14:36:58Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with RFUMSV00</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfumsv00/m-p/4386943#M1043253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try something like this:  &lt;/P&gt;&lt;P&gt;(I didn't know what name1 was defined like)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;method IF_EX_FI_TAX_BADI_014~MODIFY_FIELDCAT.&lt;/P&gt;&lt;P&gt;data: wa_ch_tab_fieldcat type slis_fieldcat_alv,&lt;/P&gt;&lt;P&gt;name1(10).&lt;/P&gt;&lt;P&gt;Loop at CH_TAB_FIELDCAT into wa_ch_tab_fieldcat.&lt;/P&gt;&lt;P&gt;If wa_ch_tab_fieldcat-fieldname = NAME1.&lt;/P&gt;&lt;P&gt;wa_ch_tab_fieldcat-text_fieldname = 'Billto Party'.&lt;/P&gt;&lt;P&gt;modify ch_tab_fieldcat from wa_ch_tab_fieldcat.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;endmethod.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OOP does not allow header lines in internal tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Michelle&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Aug 2008 15:11:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfumsv00/m-p/4386943#M1043253</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-27T15:11:59Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with RFUMSV00</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfumsv00/m-p/4386944#M1043254</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;Yes i got it ,but when i am trying to display in the report it is giving ABAP dump.I mean when i am transffering the USERFIELD1 from hidden fields to display field it is giving dump.An one more thing in which BADI i can write the code to populate the filed value in the perticular field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your response.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Aug 2008 09:24:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfumsv00/m-p/4386944#M1043254</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-28T09:24:51Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with RFUMSV00</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfumsv00/m-p/4386945#M1043255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The badi is FI_TAX_BADI_014.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you paste the short dump here?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Aug 2008 10:36:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfumsv00/m-p/4386945#M1043255</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-28T10:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with RFUMSV00</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfumsv00/m-p/4386946#M1043256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The badi is IF_EX_FI_TAX_BADI_011.  Sorry I read the question wrong.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Aug 2008 10:43:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfumsv00/m-p/4386946#M1043256</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-28T10:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with RFUMSV00</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfumsv00/m-p/4386947#M1043257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is the short dump it is giving.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ShrtText&lt;/P&gt;&lt;P&gt;    Field symbol has not yet been assigned.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What happened?&lt;/P&gt;&lt;P&gt;    Error in ABAP application program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    The current ABAP program "SAPLKKBL" had to be terminated because one of the&lt;/P&gt;&lt;P&gt;    statements could not be executed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    This is probably due to an error in the ABAP program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What can you do?&lt;/P&gt;&lt;P&gt;    Print out the error message (using the "Print" function)&lt;/P&gt;&lt;P&gt;    and make a note of the actions and input that caused the&lt;/P&gt;&lt;P&gt;    error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    To resolve the problem, contact your SAP system administrator.&lt;/P&gt;&lt;P&gt;    You can use transaction ST22 (ABAP Dump Analysis) to view and administer&lt;/P&gt;&lt;P&gt;     termination messages, especially those beyond their normal deletion&lt;/P&gt;&lt;P&gt;    date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    is especially useful if you want to keep a particular message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error analysis&lt;/P&gt;&lt;P&gt;    You attempted to access an unassigned field symbol&lt;/P&gt;&lt;P&gt;    (data segment 105).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    This error may occur for any of the following reasons:&lt;/P&gt;&lt;P&gt;    - You address a typed field symbol before it is set using ASSIGN&lt;/P&gt;&lt;P&gt;    - You address a field symbol that points to a line in an internal table&lt;/P&gt;&lt;P&gt;      that has been deleted&lt;/P&gt;&lt;P&gt;    - You address a field symbol that had previously been reset using&lt;/P&gt;&lt;P&gt;      UNASSIGN, or that pointed to a local field that no longer exists&lt;/P&gt;&lt;P&gt;    - You address a global function interface parameter, even&lt;/P&gt;&lt;P&gt;      though the relevant function module is not active,&lt;/P&gt;&lt;P&gt;      that is it is not in the list of active calls. You can get the list&lt;/P&gt;&lt;P&gt;      of active calls from the this short dump.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Aug 2008 11:25:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfumsv00/m-p/4386947#M1043257</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-28T11:25:36Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with RFUMSV00</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfumsv00/m-p/4386948#M1043258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried looking at SAP notes?   (Only if it isn't your field symbol that is creating the short-dump.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you using a field symbol in your BADI?   If you are, please update with the code in your badi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Michelle&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Sep 2008 11:22:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfumsv00/m-p/4386948#M1043258</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-02T11:22:26Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with RFUMSV00</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfumsv00/m-p/4386949#M1043259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michelle,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good Morning, Thanks for your valuable inputs. Using BADI, FI_TAX_BADI_014, I am trying to change the name of User Field 1, User Field 2 for the display variants under handles 'HAN1' and 'HAN3'. But I have a small problem there please help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For HAN1, I am able to change the names of User Field 1 and User Field 2.&lt;/P&gt;&lt;P&gt;But for HAN3, when I am doing the same thing, system is showing the changed name for User Field 2 but it is not taking the changed name for User Field 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I debugged it a lot, in the internal table for field catalogue, it is having the changed values for both the fields under SELTEXT_L field upto the point where the function module 'REUSE_ALV_LIST_DISPALY' is used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But finally if I am executing it it is showing me the field name as 'User Field 1' in final output list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attaching the screen shot also for your reference, please help me.&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/198250" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prameet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Mar 2013 06:48:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfumsv00/m-p/4386949#M1043259</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-03-25T06:48:02Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with RFUMSV00</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfumsv00/m-p/4386950#M1043260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Issue resolved myself, in field catalogue I have to pass the value to field REPTEXT_DDIC also, in order to populate in the output list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the sample code, friends please code it like below for all parameters like seltext_l, seltext_m, seltext_s, and reptext_ddic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;READ &lt;SPAN class="L0S52"&gt;TABLE &lt;/SPAN&gt;ch_tab_fieldcat &lt;SPAN class="L0S52"&gt;WITH &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;KEY &lt;/SPAN&gt;fieldname &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'USER_FIELD_1'&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;INTO&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;ls_fieldcat&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ls_fieldcat&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;seltext_l &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'Vendor Code'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ls_fieldcat&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;seltext_m &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'Vendor Code'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ls_fieldcat&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;seltext_s &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'Vend. Code'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ls_fieldcat&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;reptext_ddic &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'Vendor Code'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;MODIFY &lt;/SPAN&gt;ch_tab_fieldcat &lt;SPAN class="L0S52"&gt;FROM &lt;/SPAN&gt;ls_fieldcat &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;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;clear &lt;/SPAN&gt;ls_fieldcat&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Mar 2013 07:49:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfumsv00/m-p/4386950#M1043260</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-03-25T07:49:24Z</dc:date>
    </item>
  </channel>
</rss>

