<?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: UI program problem: table field charctor length problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/ui-program-problem-table-field-charctor-length-problem/m-p/6360798#M1400390</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mohan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you using simple ABAP Dynpro Screens or ALV Functionality ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Samantak.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Dec 2009 17:53:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-12-02T17:53:11Z</dc:date>
    <item>
      <title>UI program problem: table field charctor length problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ui-program-problem-table-field-charctor-length-problem/m-p/6360796#M1400388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi team,&lt;/P&gt;&lt;P&gt;  I created program which will be useful for modify the custom table entries.In this UI,,we can save new entries ,Delete and change. while giving new entries,screen is not tsking length which i provided in tables.It is taking only 130 charactor length instead of taking 200 ...i have used grid  and dynamic internal table in this program...i am not understanding y it is taking like this.&lt;/P&gt;&lt;P&gt;i have used fm for field catalog...Plz let me know how to rectify this problem...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 11:37:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ui-program-problem-table-field-charctor-length-problem/m-p/6360796#M1400388</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-02T11:37:54Z</dc:date>
    </item>
    <item>
      <title>Re: UI program problem: table field charctor length problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ui-program-problem-table-field-charctor-length-problem/m-p/6360797#M1400389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mohan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While builiding Field catalog, pass 'REF_FIELD' and "REF_TABLE' also.&lt;/P&gt;&lt;P&gt;If 'REF_FIELD' and "REF_TABLE' is passed, all characteristics(Length,Type) of database field are inherited to internal table field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Data: l_r_fieldcat type lvc_s_fcat,
         l_t_fieldcat type lvc_t_fcat.

  l_r_fieldcat-ref_field = 'MATNR'.   " Table
  l_r_fieldcat-ref_table = 'MARA'.   " Field name
  append l_r_fieldcat to l_t_fieldcat.
  clear l_r_fieldcat.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 15:30:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ui-program-problem-table-field-charctor-length-problem/m-p/6360797#M1400389</guid>
      <dc:creator>awin_prabhu</dc:creator>
      <dc:date>2009-12-02T15:30:09Z</dc:date>
    </item>
    <item>
      <title>Re: UI program problem: table field charctor length problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ui-program-problem-table-field-charctor-length-problem/m-p/6360798#M1400390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mohan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you using simple ABAP Dynpro Screens or ALV Functionality ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Samantak.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 17:53:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ui-program-problem-table-field-charctor-length-problem/m-p/6360798#M1400390</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-02T17:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: UI program problem: table field charctor length problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ui-program-problem-table-field-charctor-length-problem/m-p/6360799#M1400391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;oops alv concept&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Dec 2009 03:52:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ui-program-problem-table-field-charctor-length-problem/m-p/6360799#M1400391</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-03T03:52:29Z</dc:date>
    </item>
    <item>
      <title>Re: UI program problem: table field charctor length problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ui-program-problem-table-field-charctor-length-problem/m-p/6360800#M1400392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For field catalog ,,i am using LVC_FIELDCATALOG_MERGE.......i dont think it will give problem.......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Dec 2009 04:00:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ui-program-problem-table-field-charctor-length-problem/m-p/6360800#M1400392</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-03T04:00:03Z</dc:date>
    </item>
    <item>
      <title>Re: UI program problem: table field charctor length problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ui-program-problem-table-field-charctor-length-problem/m-p/6360801#M1400393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mohan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since u are using 'LVC_FIELDCATALOG_MERGE', no need for that. But check whether internal table field names and Dictionary Table field names are same. It should be same. If not change it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Dec 2009 05:02:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ui-program-problem-table-field-charctor-length-problem/m-p/6360801#M1400393</guid>
      <dc:creator>awin_prabhu</dc:creator>
      <dc:date>2009-12-03T05:02:06Z</dc:date>
    </item>
  </channel>
</rss>

