<?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 Problem with RFC_READ_TABLE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfc-read-table/m-p/902838#M55478</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   I am using the FM 'RFC_READ_TABLE' to read data from a table on CRM called 'CRMD_ORDERADM_I'. The field I am trying to select is 'HEADER'. The field is of the type '' and that is an ABAP type 'X' with a length of 16.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Everytime I run this FM, I am getting a truncated value back from the table. If the field in the table contains the value 'CFC6D923F005FB41A655CF81677C0F12', I am getting back the value 'CFC6D923F005FB41' in my RFC_READ_TABLE exporting table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I fix this problem? Your help will be greatly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;- Vik.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Apr 2005 16:28:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-04-27T16:28:31Z</dc:date>
    <item>
      <title>Problem with RFC_READ_TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfc-read-table/m-p/902838#M55478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   I am using the FM 'RFC_READ_TABLE' to read data from a table on CRM called 'CRMD_ORDERADM_I'. The field I am trying to select is 'HEADER'. The field is of the type '' and that is an ABAP type 'X' with a length of 16.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Everytime I run this FM, I am getting a truncated value back from the table. If the field in the table contains the value 'CFC6D923F005FB41A655CF81677C0F12', I am getting back the value 'CFC6D923F005FB41' in my RFC_READ_TABLE exporting table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I fix this problem? Your help will be greatly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;- Vik.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Apr 2005 16:28:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfc-read-table/m-p/902838#M55478</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-04-27T16:28:31Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with RFC_READ_TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfc-read-table/m-p/902839#M55479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can not get the result you want using FM RFC_READ_TABLE because the MOVE statement on line 188 of the FM's source code is converting your 16 byte hexadecimal field to a character field of length 32, and then outputting the first 16 characters only because the data dictionary tells it that is the length of the field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The FM only pays attention to the FIELDS-FIELDNAME field, so you cannot override the length there ... The call to DDIF_FIELDINFO_GET sets the length of the output character field in table WA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looks like you are going to need a custom RFC function.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Apr 2005 23:12:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfc-read-table/m-p/902839#M55479</guid>
      <dc:creator>juan_suros</dc:creator>
      <dc:date>2005-04-27T23:12:52Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with RFC_READ_TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfc-read-table/m-p/902840#M55480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Juan-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Thank you for your informative response.&lt;/P&gt;&lt;P&gt;I noticed that it was a data type conversion issue.&lt;/P&gt;&lt;P&gt;Since this was a time critical issue, I went ahead and created a view on the CRM system that provisioned me the content in the format that I desired.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;- Vik.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Apr 2005 00:37:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfc-read-table/m-p/902840#M55480</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-04-28T00:37:00Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with RFC_READ_TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfc-read-table/m-p/902841#M55481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello vik,&lt;/P&gt;&lt;P&gt;How are you...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we are also trying to pull some hexadecimal format data from CRM. could you please give me some idea how you did that through views..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will be very helpful to me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ala.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jun 2006 07:25:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-rfc-read-table/m-p/902841#M55481</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-30T07:25:06Z</dc:date>
    </item>
  </channel>
</rss>

