<?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: Label for Predefined Types in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/label-for-predefined-types/m-p/8332416#M1638320</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, Thank you very much.&lt;/P&gt;&lt;P&gt;But I forgot to tell you that I'm in an Enhancement ..&lt;/P&gt;&lt;P&gt;so, I can just Append the Structure (SE11)&lt;/P&gt;&lt;P&gt;and Enter Code as an Enhancement .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Nov 2011 14:55:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-11-16T14:55:27Z</dc:date>
    <item>
      <title>Label for Predefined Types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/label-for-predefined-types/m-p/8332413#M1638317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Peace be Upon you All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I make a Label (Field Label) for a Predefined Type ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was appending a Structure to a Table, to add a 'Text' Field with a 'String' type&lt;/P&gt;&lt;P&gt;so I added the field ZZTEXT with the predefined type 'STRING' and added a Description&lt;/P&gt;&lt;P&gt;but in the ALV Output, it had now label on top of it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know that Field labels are stored for the Data Elements&lt;/P&gt;&lt;P&gt;but I don't want to use a data element 'Component Type'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SO, how can I add a field label to the Output without Creating a New Data Element ???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2011 13:49:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/label-for-predefined-types/m-p/8332413#M1638317</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-15T13:49:16Z</dc:date>
    </item>
    <item>
      <title>Re: Label for Predefined Types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/label-for-predefined-types/m-p/8332414#M1638318</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;Please refer link &lt;A href="http://wiki.sdn.sap.com/wiki/display/ABAP/ALV" target="test_blank"&gt;http://wiki.sdn.sap.com/wiki/display/ABAP/ALV&lt;/A&gt;&lt;EM&gt;TUTOTIAL&lt;/EM&gt;FOR&lt;EM&gt;BEGINERS&lt;/EM&gt;WITH+EXAMPLES .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will resolve your issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rahul Mahajan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2011 14:14:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/label-for-predefined-types/m-p/8332414#M1638318</guid>
      <dc:creator>rahul_mahajan</dc:creator>
      <dc:date>2011-11-15T14:14:59Z</dc:date>
    </item>
    <item>
      <title>Re: Label for Predefined Types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/label-for-predefined-types/m-p/8332415#M1638319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;When you build field catalog for your ALV,you can sepcify what label you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM buid_fieldcatalog.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      i_program_name     = sy-repid&lt;/P&gt;&lt;P&gt;      i_internal_tabname = 'IT_ALV1'&lt;/P&gt;&lt;P&gt;      i_inclname               = sy-repid&lt;/P&gt;&lt;P&gt;    CHANGING&lt;/P&gt;&lt;P&gt;      ct_fieldcat                = int_fcat[].&lt;/P&gt;&lt;P&gt;  IF sy-subrc  NE 0.&lt;/P&gt;&lt;P&gt;    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno&lt;/P&gt;&lt;P&gt;    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT int_fcat.&lt;/P&gt;&lt;P&gt;    CASE int_fcat-fieldname.&lt;/P&gt;&lt;P&gt;      WHEN 'XBLNR'.&lt;/P&gt;&lt;P&gt;        int_fcat-reptext_ddic = 'Custom Label'.&lt;/P&gt;&lt;P&gt;        int_fcat-seltext_s   = ''Custom Label'.&lt;/P&gt;&lt;P&gt;        int_fcat-seltext_m = 'Custom Label'.&lt;/P&gt;&lt;P&gt;        int_fcat-seltext_l   = ''Custom Label'.&lt;/P&gt;&lt;P&gt;     ENCASE.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Nov 2011 14:10:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/label-for-predefined-types/m-p/8332415#M1638319</guid>
      <dc:creator>former_member712377</dc:creator>
      <dc:date>2011-11-16T14:10:58Z</dc:date>
    </item>
    <item>
      <title>Re: Label for Predefined Types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/label-for-predefined-types/m-p/8332416#M1638320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, Thank you very much.&lt;/P&gt;&lt;P&gt;But I forgot to tell you that I'm in an Enhancement ..&lt;/P&gt;&lt;P&gt;so, I can just Append the Structure (SE11)&lt;/P&gt;&lt;P&gt;and Enter Code as an Enhancement .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Nov 2011 14:55:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/label-for-predefined-types/m-p/8332416#M1638320</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-16T14:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: Label for Predefined Types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/label-for-predefined-types/m-p/8332417#M1638321</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;Could you provide the Enhancement  the one which you are using for appending new field for which you want to change the Label text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Shailaja Ainala,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Nov 2011 15:44:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/label-for-predefined-types/m-p/8332417#M1638321</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-17T15:44:10Z</dc:date>
    </item>
    <item>
      <title>Re: Label for Predefined Types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/label-for-predefined-types/m-p/8332418#M1638322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LMEREPI02&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Method:&lt;/P&gt;&lt;P&gt;Build_Base_List&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2011 11:57:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/label-for-predefined-types/m-p/8332418#M1638322</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-21T11:57:14Z</dc:date>
    </item>
  </channel>
</rss>

