<?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: Dynamic table issue with special character in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-issue-with-special-character/m-p/10374370#M1840067</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you consider building of the internal table with technical field names : F0001, F0002, etc. and a column header that uses the user input so header of FIELDNAME = 'F0001' would be COLTEXT = 'F.30' ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 May 2014 09:08:45 GMT</pubDate>
    <dc:creator>RaymondGiuseppi</dc:creator>
    <dc:date>2014-05-26T09:08:45Z</dc:date>
    <item>
      <title>Dynamic table issue with special character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-issue-with-special-character/m-p/10374362#M1840059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While creating a dynamic internal table if the fieldname in the fieldcatalog contains any special character like dot(.) , ot is showing the message without creating the dynamic internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;EM style="color: #808080; font-size: 10pt;"&gt;&lt;EM style="color: #808080; font-size: 10pt;"&gt;&amp;nbsp; &lt;/EM&gt;&lt;/EM&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;* Create a dynamic internal table with this structure&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;EM style="color: #808080; font-size: 10pt;"&gt;&lt;/EM&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;CALL METHOD &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;cl_alv_table_create&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-size: 10pt;"&gt;=&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;create_dynamic_table&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;EXPORTING&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;i_style_table &lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-size: 10pt;"&gt;= &lt;/SPAN&gt;&lt;SPAN style="color: #4da619; font-size: 10pt;"&gt;'X'&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;it_fieldcatalog &lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-size: 10pt;"&gt;= &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;gt_dyn_fcat&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;IMPORTING&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;ep_table &lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-size: 10pt;"&gt;= &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;gt_dyn_table&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;EXCEPTIONS&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;generate_subpool_dir_full &lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-size: 10pt;"&gt;= &lt;/SPAN&gt;&lt;SPAN style="color: #3399ff; font-size: 10pt;"&gt;1&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;OTHERS &lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-size: 10pt;"&gt;= &lt;/SPAN&gt;&lt;SPAN style="color: #3399ff; font-size: 10pt;"&gt;2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gt_dyn_fcat contains fieldname with dot.&lt;/P&gt;&lt;P&gt;So the table gt_dyn_table is not creating.&lt;/P&gt;&lt;P&gt;I searched in SCN andd found another method&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;cl_abap_structdescr&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-size: 10pt;"&gt;=&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="color: #333333; font-size: 10pt;"&gt;create&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #575757; font-size: 10pt;"&gt;But the same issue is aslo here in this method.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #575757; font-size: 10pt;"&gt;Please suggest me any new method in sap to solve the issue.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #575757; font-size: 10pt;"&gt;Best Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #575757; font-size: 10pt;"&gt;Munu&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 May 2014 12:39:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-issue-with-special-character/m-p/10374362#M1840059</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-22T12:39:10Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic table issue with special character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-issue-with-special-character/m-p/10374363#M1840060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A . is a forbidden character in a field. You must remove the . You simply are not permitted to use some characters.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 May 2014 13:04:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-issue-with-special-character/m-p/10374363#M1840060</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2014-05-22T13:04:21Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic table issue with special character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-issue-with-special-character/m-p/10374364#M1840061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Matthew,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I understand your suggestion but my requirement is like that. i have to enter a fieldname with dot.&lt;/P&gt;&lt;P&gt;may i use any new methods or any new ideas, will be helpful to me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Munu &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2014 07:23:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-issue-with-special-character/m-p/10374364#M1840061</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-23T07:23:46Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic table issue with special character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-issue-with-special-character/m-p/10374365#M1840062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How can I put this more clearly? It is &lt;STRONG&gt;not possible &lt;/STRONG&gt;in SAP to have a &lt;SPAN style="text-decoration: underline;"&gt;fieldname&lt;/SPAN&gt; that contains a dot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why do you think you require a fieldname with a dot in it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2014 07:26:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-issue-with-special-character/m-p/10374365#M1840062</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2014-05-23T07:26:58Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic table issue with special character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-issue-with-special-character/m-p/10374366#M1840063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can't. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I believe you would not be able to use "." in any (or most of them) programming languages, as it is part of other syntax. ABAP (and C, JAVA, even VB etc.) would not be able to sort it out - is it:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a) object method / variable separator?&lt;/P&gt;&lt;P&gt;b) is it still part of the field?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do not search for any workaround other than suggested by Matthew. Do not try using dots in the field names.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2014 07:28:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-issue-with-special-character/m-p/10374366#M1840063</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-23T07:28:56Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic table issue with special character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-issue-with-special-character/m-p/10374367#M1840064</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;&lt;/P&gt;&lt;P&gt;Every programing language has its syntax rules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to use this language you have to follow the rules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the peoples involve with SAP ABAP must follow the rules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;and here it is: from &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://help.sap.com/abapdocu_740/en/abennaming_conventions.htm"&gt;http://help.sap.com/abapdocu_740/en/abennaming_conventions.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/459471" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How abut using underscores (&lt;SPAN class="qtext"&gt;_&lt;/SPAN&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 May 2014 07:11:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-issue-with-special-character/m-p/10374367#M1840064</guid>
      <dc:creator>rosenberg_eitan</dc:creator>
      <dc:date>2014-05-24T07:11:04Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic table issue with special character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-issue-with-special-character/m-p/10374368#M1840065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Munu ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was also facing the same problem some times ago , &lt;/P&gt;&lt;P&gt;I was creating a dynamic table where fields where containing special character.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now , for the solution what I did was , used dynamic variable for those field naming as F1 , F2 , F3 etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help you out &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;Yogendra Bhaskar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 May 2014 08:00:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-issue-with-special-character/m-p/10374368#M1840065</guid>
      <dc:creator>yogendra_bhaskar</dc:creator>
      <dc:date>2014-05-24T08:00:00Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic table issue with special character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-issue-with-special-character/m-p/10374369#M1840066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually as per the values entered in the selection screen, the dynamic field will grow as per that.&lt;/P&gt;&lt;P&gt;If in the selection screen we have entered "F.30" then in the dynamic table column it should be F.30.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But while creating the dynamic table it is showing the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Munu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2014 07:14:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-issue-with-special-character/m-p/10374369#M1840066</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-26T07:14:46Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic table issue with special character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-issue-with-special-character/m-p/10374370#M1840067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you consider building of the internal table with technical field names : F0001, F0002, etc. and a column header that uses the user input so header of FIELDNAME = 'F0001' would be COLTEXT = 'F.30' ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2014 09:08:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-issue-with-special-character/m-p/10374370#M1840067</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2014-05-26T09:08:45Z</dc:date>
    </item>
  </channel>
</rss>

