<?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: reg Unicode: type convertion from byte and string charecter processing in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-unicode-type-convertion-from-byte-and-string-charecter-processing/m-p/1577159#M260555</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use like,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;cf&amp;gt; TYPE C. &lt;/P&gt;&lt;P&gt;ASSIGN BUFFER TO &amp;lt;cf&amp;gt; CASTING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T_PDF = &amp;lt;CF&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Srikanth.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Sep 2006 15:26:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-21T15:26:23Z</dc:date>
    <item>
      <title>reg Unicode: type convertion from byte and string charecter processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-unicode-type-convertion-from-byte-and-string-charecter-processing/m-p/1577154#M260550</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; I currently working on MM module where programs to be checked Unicode enabled in new versions 6.10 relase .&lt;/P&gt;&lt;P&gt;I have a problem in one of the program ..where the error is above mentioned type conversion is no longer possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; the program :&lt;/P&gt;&lt;P&gt;  LOOP AT pdf INTO wa_pdf.&lt;/P&gt;&lt;P&gt;    TRANSLATE wa_pdf USING ' ~'.&lt;/P&gt;&lt;P&gt;    CONCATENATE buffer wa_pdf INTO buffer.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  TRANSLATE buffer USING '~ '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DO.&lt;/P&gt;&lt;P&gt; --&amp;gt;   APPEND buffer TO t_pdf .error message&lt;/P&gt;&lt;P&gt;    SHIFT buffer LEFT BY 255 PLACES.&lt;/P&gt;&lt;P&gt;    IF buffer IS INITIAL.&lt;/P&gt;&lt;P&gt;      EXIT.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the fields  are declared as&lt;/P&gt;&lt;P&gt;   pdf        TYPE STANDARD TABLE OF tline,&lt;/P&gt;&lt;P&gt;    wa_pdf     LIKE LINE OF pdf,&lt;/P&gt;&lt;P&gt;    buffer     TYPE string,&lt;/P&gt;&lt;P&gt;    t_pdf      TYPE STANDARD TABLE OF solix.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question is how to make convertion using other logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any help is highly appreciated .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Amarnath Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 11:03:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-unicode-type-convertion-from-byte-and-string-charecter-processing/m-p/1577154#M260550</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T11:03:59Z</dc:date>
    </item>
    <item>
      <title>Re: reg Unicode: type convertion from byte and string charecter processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-unicode-type-convertion-from-byte-and-string-charecter-processing/m-p/1577155#M260551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;question is conversion of charecter string  to byte string&lt;/P&gt;&lt;P&gt;processing&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 11:29:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-unicode-type-convertion-from-byte-and-string-charecter-processing/m-p/1577155#M260551</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T11:29:08Z</dc:date>
    </item>
    <item>
      <title>Re: reg Unicode: type convertion from byte and string charecter processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-unicode-type-convertion-from-byte-and-string-charecter-processing/m-p/1577156#M260552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;REPORT  ZSRIM_TEMP23.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : PDF TYPE STANDARD TABLE OF TLINE,&lt;/P&gt;&lt;P&gt;WA_PDF LIKE LINE OF PDF,&lt;/P&gt;&lt;P&gt;BUFFER TYPE STRING,&lt;/P&gt;&lt;P&gt;T_PDF TYPE STANDARD TABLE OF SOLIX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT PDF INTO WA_PDF.&lt;/P&gt;&lt;P&gt;  TRANSLATE WA_PDF USING ' ~'.&lt;/P&gt;&lt;P&gt;  CONCATENATE BUFFER WA_PDF INTO BUFFER.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRANSLATE BUFFER USING '~ '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO.&lt;/P&gt;&lt;P&gt;*--&amp;gt; APPEND buffer TO t_pdf .error message&lt;/P&gt;&lt;P&gt;  SHIFT BUFFER LEFT BY 255 PLACES.&lt;/P&gt;&lt;P&gt;  IF BUFFER IS INITIAL.&lt;/P&gt;&lt;P&gt;    EXIT.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I copied your code in my sap system,but i am not getting any ERROR.can you please give the Error description along with the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Srikanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 12:06:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-unicode-type-convertion-from-byte-and-string-charecter-processing/m-p/1577156#M260552</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T12:06:23Z</dc:date>
    </item>
    <item>
      <title>Re: reg Unicode: type convertion from byte and string charecter processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-unicode-type-convertion-from-byte-and-string-charecter-processing/m-p/1577157#M260553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sridar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;error message was t_pdf and buffer are not mutually convertable in unicode as t_pdf is of type solix and solix contains raw data type of binary data which is of byte string  and buffer is having a string which is character string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think  there is a structure mismatch .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 14:27:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-unicode-type-convertion-from-byte-and-string-charecter-processing/m-p/1577157#M260553</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T14:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: reg Unicode: type convertion from byte and string charecter processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-unicode-type-convertion-from-byte-and-string-charecter-processing/m-p/1577158#M260554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try the following code:&lt;/P&gt;&lt;P&gt;Declare the following variables.&lt;/P&gt;&lt;P&gt;data: ls_pdf type solix,&lt;/P&gt;&lt;P&gt;      ls_char(255) type c.&lt;/P&gt;&lt;P&gt;field-symbols: &amp;lt;fs&amp;gt; type any.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Add this code  instead of 'append buffer to t_pdf in ur code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ls_char = buffer.&lt;/P&gt;&lt;P&gt;assign ls_char to &amp;lt;fs&amp;gt; casting type x.&lt;/P&gt;&lt;P&gt;ls_pdf-line = &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;append ls_pdf to t_pdf.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 15:23:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-unicode-type-convertion-from-byte-and-string-charecter-processing/m-p/1577158#M260554</guid>
      <dc:creator>sridhar_k1</dc:creator>
      <dc:date>2006-09-21T15:23:55Z</dc:date>
    </item>
    <item>
      <title>Re: reg Unicode: type convertion from byte and string charecter processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-unicode-type-convertion-from-byte-and-string-charecter-processing/m-p/1577159#M260555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use like,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;cf&amp;gt; TYPE C. &lt;/P&gt;&lt;P&gt;ASSIGN BUFFER TO &amp;lt;cf&amp;gt; CASTING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T_PDF = &amp;lt;CF&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Srikanth.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 15:26:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-unicode-type-convertion-from-byte-and-string-charecter-processing/m-p/1577159#M260555</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T15:26:23Z</dc:date>
    </item>
    <item>
      <title>Re: reg Unicode: type convertion from byte and string charecter processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-unicode-type-convertion-from-byte-and-string-charecter-processing/m-p/1577160#M260556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess in UNICODE enabled system, data transferring between structures is possible only when both the structures are same or both have only character format fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To avoid the error, i think we need to explicitly move field by field when the structure alters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 15:33:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-unicode-type-convertion-from-byte-and-string-charecter-processing/m-p/1577160#M260556</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T15:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: reg Unicode: type convertion from byte and string charecter processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-unicode-type-convertion-from-byte-and-string-charecter-processing/m-p/1577161#M260557</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;Thanks for the helping me in solving the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Amarnath Reddy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Sep 2006 05:54:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-unicode-type-convertion-from-byte-and-string-charecter-processing/m-p/1577161#M260557</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-22T05:54:55Z</dc:date>
    </item>
  </channel>
</rss>

