<?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: Dump : MESSAGE_TYPE_X in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-message-type-x/m-p/4115386#M983905</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;try: &lt;STRONG&gt;ls_fieldcat-fieldname = 'TOT_BSLOT'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;not&lt;/STRONG&gt;: ls_fieldcat-fieldname = 'tot_Bslot'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Jul 2008 07:26:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-07T07:26:45Z</dc:date>
    <item>
      <title>Dump : MESSAGE_TYPE_X</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-message-type-x/m-p/4115384#M983903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;                I have done some modifications in the existing ALV report, added field in the internal table , and added it into field catalog&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pos = pos + 1.&lt;/P&gt;&lt;P&gt;  ls_fieldcat-col_pos       =  pos.&lt;/P&gt;&lt;P&gt;  ls_fieldcat-fieldname     = 'tot_Bslot'.&lt;/P&gt;&lt;P&gt;  ls_fieldcat-outputlen     = 12.&lt;/P&gt;&lt;P&gt;  ls_fieldcat-inttype       = 'P'.&lt;/P&gt;&lt;P&gt;  ls_fieldcat-NO_OUT        = ' '.&lt;/P&gt;&lt;P&gt;  ls_fieldcat-seltext_l     = 'Net Bill Amount1'.&lt;/P&gt;&lt;P&gt;  append ls_fieldcat to  rt_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it's giving me dump , if i commented or used the old value in fieldcat-fieldname in the code then it's working fine. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tot_Bslot i have added in the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could plz any1 suggest for the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looking forward to your response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gulrez Alam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 07:15:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-message-type-x/m-p/4115384#M983903</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T07:15:09Z</dc:date>
    </item>
    <item>
      <title>Re: Dump : MESSAGE_TYPE_X</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-message-type-x/m-p/4115385#M983904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pl. pass the field name in uppercase.Also mention the internal table name in uppercase in field tabname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;os = pos + 1.&lt;/P&gt;&lt;P&gt;ls_fieldcat-col_pos = pos.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ls_fieldcat-fieldname = 'TOT_BSLOT'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ls_fieldcat-tabname = '&amp;lt;Internal table name in uppercase&amp;gt;'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;ls_fieldcat-outputlen = 12.&lt;/P&gt;&lt;P&gt;ls_fieldcat-inttype = 'P'.&lt;/P&gt;&lt;P&gt;ls_fieldcat-NO_OUT = ' '.&lt;/P&gt;&lt;P&gt;ls_fieldcat-seltext_l = 'Net Bill Amount1'.&lt;/P&gt;&lt;P&gt;append ls_fieldcat to rt_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Joy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 07:24:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-message-type-x/m-p/4115385#M983904</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T07:24:33Z</dc:date>
    </item>
    <item>
      <title>Re: Dump : MESSAGE_TYPE_X</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-message-type-x/m-p/4115386#M983905</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;try: &lt;STRONG&gt;ls_fieldcat-fieldname = 'TOT_BSLOT'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;not&lt;/STRONG&gt;: ls_fieldcat-fieldname = 'tot_Bslot'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 07:26:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-message-type-x/m-p/4115386#M983905</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T07:26:45Z</dc:date>
    </item>
    <item>
      <title>Re: Dump : MESSAGE_TYPE_X</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-message-type-x/m-p/4115387#M983906</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;  Always use Capital letters for the text using between 2 single quotation's(').&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Bujji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 07:27:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-message-type-x/m-p/4115387#M983906</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T07:27:27Z</dc:date>
    </item>
  </channel>
</rss>

