<?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: ALV Reference Field in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-reference-field/m-p/1255665#M146065</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Murali,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try maintaining the values for &lt;/P&gt;&lt;P&gt;LS_FIELDCAT-SELTEXT_M&lt;/P&gt;&lt;P&gt;LS_FIELDCAT-SELTEXT_s&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as well, _L will work only when you have the column width set to max.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : Please mark the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Apr 2006 09:59:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-04-19T09:59:58Z</dc:date>
    <item>
      <title>ALV Reference Field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-reference-field/m-p/1255662#M146062</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 have want to display a custom label for a field in ALV. But that field uses REFERENCE Table and Field name. hence the label for that column is picked from dictionary level. I even used SEL_TEXT_L of the fieldCatalog, But still the text maintained in Dataelement of the REF field is only displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR LS_FIELDCAT.&lt;/P&gt;&lt;P&gt;  LS_FIELDCAT-COL_POS = 10.&lt;/P&gt;&lt;P&gt;  LS_FIELDCAT-FIELDNAME = TEXT-032.&lt;/P&gt;&lt;P&gt;  LS_FIELDCAT-TABNAME = GC_TAB.&lt;/P&gt;&lt;P&gt;  LS_FIELDCAT-REF_TABNAME = 'MYTABLE'.&lt;/P&gt;&lt;P&gt;  LS_FIELDCAT-REF_FIELDNAME = 'MYFIELD'.&lt;/P&gt;&lt;P&gt;  LS_FIELDCAT-OUTPUTLEN = 8.&lt;/P&gt;&lt;P&gt;  LS_FIELDCAT-SELTEXT_L = TEXT-012.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Apr 2006 09:50:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-reference-field/m-p/1255662#M146062</guid>
      <dc:creator>Murali_Shanmu</dc:creator>
      <dc:date>2006-04-19T09:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Reference Field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-reference-field/m-p/1255663#M146063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You remove the reference table then you can get the text. I think it is because you are giving only Long text ie seltext_l give others too then you can get the text you want&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Apr 2006 09:55:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-reference-field/m-p/1255663#M146063</guid>
      <dc:creator>varun_maharshi</dc:creator>
      <dc:date>2006-04-19T09:55:55Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Reference Field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-reference-field/m-p/1255664#M146064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Muralidaran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this out...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR LS_FIELDCAT.&lt;/P&gt;&lt;P&gt;LS_FIELDCAT-COL_POS = 10.&lt;/P&gt;&lt;P&gt;LS_FIELDCAT-FIELDNAME = 'MYFIELD'.&lt;/P&gt;&lt;P&gt;LS_FIELDCAT-TABNAME = GC_TAB.&lt;/P&gt;&lt;P&gt;LS_FIELDCAT-OUTPUTLEN = 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if the answer was helpful...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kunal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Apr 2006 09:58:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-reference-field/m-p/1255664#M146064</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-19T09:58:02Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Reference Field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-reference-field/m-p/1255665#M146065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Murali,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try maintaining the values for &lt;/P&gt;&lt;P&gt;LS_FIELDCAT-SELTEXT_M&lt;/P&gt;&lt;P&gt;LS_FIELDCAT-SELTEXT_s&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as well, _L will work only when you have the column width set to max.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : Please mark the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Apr 2006 09:59:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-reference-field/m-p/1255665#M146065</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-19T09:59:58Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Reference Field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-reference-field/m-p/1255666#M146066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It didnt work. I cannot remove the reference table and field&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Apr 2006 10:01:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-reference-field/m-p/1255666#M146066</guid>
      <dc:creator>Murali_Shanmu</dc:creator>
      <dc:date>2006-04-19T10:01:43Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Reference Field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-reference-field/m-p/1255667#M146067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt; comment those 2 lines of code&lt;/P&gt;&lt;P&gt;LS_FIELDCAT-REF_TABNAME = 'MYTABLE'.&lt;/P&gt;&lt;P&gt;LS_FIELDCAT-REF_FIELDNAME = 'MYFIELD'.&lt;/P&gt;&lt;P&gt; in the population.&lt;/P&gt;&lt;P&gt;&amp;amp; give outputlen = 15 like that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try out this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;srikanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Apr 2006 10:02:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-reference-field/m-p/1255667#M146067</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-19T10:02:41Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Reference Field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-reference-field/m-p/1255668#M146068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Murali,&lt;/P&gt;&lt;P&gt;Move your custom text to FIELDCAT-REPTEXT_DDIC&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;Raghavendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Apr 2006 10:06:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-reference-field/m-p/1255668#M146068</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-19T10:06:50Z</dc:date>
    </item>
  </channel>
</rss>

