<?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: incorrect Data element in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/incorrect-data-element/m-p/7931645#M1599819</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Char70 should work unless you have a validation in place to throw the "Invalid value" error. As the lowercase attribute is not set for Char70 system will convert the text to all caps but shouldn't be getting error. Debug to find from where you are getting that error. For you requirement I would recommend to use "TEXT70" data element instead of the "CHAR70".&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 09 Jun 2011 15:10:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-06-09T15:10:20Z</dc:date>
    <item>
      <title>incorrect Data element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/incorrect-data-element/m-p/7931643#M1599817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to create a Table which has a field to hold Transaction IDs in following format:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;20110609155601_ss25A5  (numbers, chars and underscore)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have used char70 as data element for this field and getting invalid value error.Also,I am not able to select STRING, XSTRING, BLOB, etc as data element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone please let me know what could be the data element which can hold such values?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Shweta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jun 2011 14:54:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/incorrect-data-element/m-p/7931643#M1599817</guid>
      <dc:creator>shweta_walaskar2</dc:creator>
      <dc:date>2011-06-09T14:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: incorrect Data element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/incorrect-data-element/m-p/7931644#M1599818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;Try two things:&lt;/P&gt;&lt;P&gt;1. check if you have any foreign key relation for this field (a check table). If yes, these could raise the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. If suggestion as in point 1 is invalid, try to create a domain with data-type char, length 70. Create Data-element out of it. And use it in your table. Technically it may not make sense. But I am having a Z table with Char 50 and tried entering the value you mentioned and it works for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Anid&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jun 2011 15:02:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/incorrect-data-element/m-p/7931644#M1599818</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-09T15:02:41Z</dc:date>
    </item>
    <item>
      <title>Re: incorrect Data element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/incorrect-data-element/m-p/7931645#M1599819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Char70 should work unless you have a validation in place to throw the "Invalid value" error. As the lowercase attribute is not set for Char70 system will convert the text to all caps but shouldn't be getting error. Debug to find from where you are getting that error. For you requirement I would recommend to use "TEXT70" data element instead of the "CHAR70".&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jun 2011 15:10:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/incorrect-data-element/m-p/7931645#M1599819</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-09T15:10:20Z</dc:date>
    </item>
    <item>
      <title>Re: incorrect Data element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/incorrect-data-element/m-p/7931646#M1599820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Anid,Hello Suman,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot for your valuable inputs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This was my mistake.I realized that it was not a problem with Table data element but a problem with the import parameter of the FM which is used to populate this field.&lt;/P&gt;&lt;P&gt;I had set the type of this import parameter in FM as PI predefined type SXMSMGUID, hence it wasn't accepting the values.&lt;/P&gt;&lt;P&gt;I have now made this change in FM and it works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Shweta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jun 2011 08:44:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/incorrect-data-element/m-p/7931646#M1599820</guid>
      <dc:creator>shweta_walaskar2</dc:creator>
      <dc:date>2011-06-10T08:44:05Z</dc:date>
    </item>
  </channel>
</rss>

