<?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: Unicode error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850078#M360200</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please can anyone provide a solution???????its urgent&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        keerthi kiran varanasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 12 Jan 2007 18:54:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-12T18:54:02Z</dc:date>
    <item>
      <title>Unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850074#M360196</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 have an internal table &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: IT_DATA(2048) TYPE C OCCURS 1 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Im trying to do this on certain conditions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  APPEND LINES OF IT_DATA TO I_EIPO_A.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Similarly im doing this for I_KONV_A, I_NAST_A, I_VBFA_A internal tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where I_EIPO_A is declared as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; DATA: BEGIN OF I_EIPO_A OCCURS 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  INCLUDE STRUCTURE EIPO .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; DATA: END OF I_EIPO_A.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And similarily are the internal tables I_KONV_A, I_NAST_A, I_VBFA_A&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Im getting a Unicode error as "I_EIPO_A" and "IT_DATA" are not mutually convertible in a Unicode program,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a solution that we need to declare all the fields in the internal tables as Type C&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any other solution other than this??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;keerthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jan 2007 19:06:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850074#M360196</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-11T19:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850075#M360197</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;In Unicode Enabled Systems, you can not just copy two tables with different structures. Both the tables should have same structure. Now, in your case, it_data &amp;amp; i_eipo_a have different structures. Therefore, you are getting an Unicode Error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To solve your problem, &lt;/P&gt;&lt;P&gt;- declare it_data same like it_eipo_a.&lt;/P&gt;&lt;P&gt;OR&lt;/P&gt;&lt;P&gt;- declare a work area of type it_eipo_a. Then, using SPLIT, split it_data into various fields of the work area &amp;amp; then append this work area to it_eipo_a.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mukul&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Mukul R. Kulkarni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jan 2007 19:13:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850075#M360197</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-11T19:13:56Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850076#M360198</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;Yes u can use the field-symbols and MOVE statament, something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: IT_DATA(2048) TYPE C OCCURS 1 WITH HEADER LINE.
DATA: DFIES_TAB TYPE STANDARD TABLE OF DFIES WITH HEADER LINE.

DATA: I_EIPO_A TYPE STANDARD TABLE OF EIPO WITH HEADER LINE.



CALL FUNCTION 'DDIF_FIELDINFO_GET'
     EXPORTING
          TABNAME   = 'EIPO'
     TABLES
          DFIES_TAB = DFIES_TAB.

FIELD-SYMBOLS: &amp;lt;FS&amp;gt; TYPE ANY.

LOOP AT IT_DATA.
  LOOP AT DFIES_TAB.
   ASSIGN COMPONENT DFIES_TAB-FIELDNAME OF STRUCTURE I_EIPO_A TO &amp;lt;FS&amp;gt;.
    MOVE IT_DATA+DFIES_TAB-OFFSET(DFIES_TAB-LENG) TO &amp;lt;FS&amp;gt;.
  ENDLOOP.
  APPEND I_EIPO_A.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jan 2007 19:26:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850076#M360198</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-11T19:26:05Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850077#M360199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi max,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'DDIF_FIELDINFO_GET'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;          TABNAME   = 'VBRK'&lt;/P&gt;&lt;P&gt;     TABLES&lt;/P&gt;&lt;P&gt;          DFIES_TAB = DFIES_TAB.&lt;/P&gt;&lt;P&gt; &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;LOOP AT IT_DATA.&lt;/P&gt;&lt;P&gt;  LOOP AT DFIES_TAB.&lt;/P&gt;&lt;P&gt;   ASSIGN COMPONENT DFIES_TAB-FIELDNAME OF STRUCTURE I_VBRK_A TO &amp;lt;FS&amp;gt;.&lt;/P&gt;&lt;P&gt;    MOVE IT_DATA+DFIES_TAB-OFFSET(DFIES_TAB-LENG) TO &amp;lt;FS&amp;gt;.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;  APPEND I_VBRK_A.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with the code u had given, its giving a dump  for a particular field KURRF as&lt;/P&gt;&lt;P&gt;Unable to interpret " " as a number, because the value for this field in the it_data is space...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so how to resolve this???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Jan 2007 18:24:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850077#M360199</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-12T18:24:45Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850078#M360200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please can anyone provide a solution???????its urgent&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        keerthi kiran varanasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Jan 2007 18:54:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850078#M360200</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-12T18:54:02Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850079#M360201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Am sorry if this answer sounds dumb coz am new to ABAP and was just wondering if this would work. Can you try running your report by unchecking the "Use Unicode Check" in the In the program---&amp;gt; Attributes screen....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Uday&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jan 2007 17:50:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850079#M360201</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-16T17:50:30Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850080#M360202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi uday,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i had unchecked that option i wouldn't have got this dump:-)....but sorry thats not the answer i want.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jan 2007 17:53:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850080#M360202</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-16T17:53:21Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850081#M360203</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;The problem is on the format of the number in the file: the SAP just only want the point as separator between integer and decimal part.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So if you have 1.000,10 =&amp;gt; 1000.10&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can check the type of the field, and so decide which action to be done to convert the number:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT IT_DATA.
  LOOP AT DFIES_TAB.
   ASSIGN COMPONENT DFIES_TAB-FIELDNAME OF STRUCTURE I_EIPO_A TO &amp;lt;FS&amp;gt;.
"--- Check the ABAP TYPE:
    IF DFIES_TAB-INTTYPE = 'P' OR
       DFIES_TAB-INTTYPE = 'F'.
"--- It means the data is a number with decimals: how to convert the number 
"--- depend on how it's written on the file, if you have 1.150,00    
      DO.
"--- Delete the points
        REPLACE '.' WITH SPACE INTO IT_DATA+DFIES_TAB-OFFSET(DFIES_TAB-LENG).
        IF SY-SUBRC &amp;lt;&amp;gt; 0. EXIT. ENDIF. 
        CONDENSE IT_DATA+DFIES_TAB-OFFSET(DFIES_TAB-LENG) NO-GAPS.
      ENDDO.
      REPLACE ',' WITH '.' INTO IT_DATA+DFIES_TAB-OFFSET(DFIES_TAB-LENG). 
      IF IF IT_DATA+DFIES_TAB-OFFSET(DFIES_TAB-LENG) IS INITIAL.
        MOVE '0' TO IT_DATA+DFIES_TAB-OFFSET(DFIES_TAB-LENG).
      ENDIF.    
    ENDIF. 
    MOVE IT_DATA+DFIES_TAB-OFFSET(DFIES_TAB-LENG) TO &amp;lt;FS&amp;gt;.
  ENDLOOP.
  APPEND I_EIPO_A.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jan 2007 19:46:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850081#M360203</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-16T19:46:00Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850082#M360204</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;For the field KURRF  the value in IT_DATA+DFIES_TAB-OFFSET(DFIES_TAB-LENG) it's taking as #### 000 because of which it's still going for a dump, inspite of checking..&lt;/P&gt;&lt;P&gt;IF IT_DATA+DFIES_TAB-OFFSET(DFIES_TAB-LENG) IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to correct this dump??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jan 2007 15:31:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850082#M360204</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-17T15:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850083#M360205</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;Just only a question: but you're dowloading the data from table (database) to internal (char) table or from internal (char) table to database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jan 2007 15:36:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850083#M360205</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-17T15:36:40Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850084#M360206</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;i have data in a internal table it_data which is declared as &lt;/P&gt;&lt;P&gt; IT_DATA(2048) TYPE C OCCURS 1 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;im trying to append the values in it_data to another internal table on certain conditions...i had tried with the code u had given but still its going for a dump&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to correct when its taking junk characters at runtime..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jan 2007 15:46:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850084#M360206</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-17T15:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850085#M360207</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;I believe the problem is how the numeriv fields are loaded on IT_DATA, where and how this table is filled?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jan 2007 16:11:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850085#M360207</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-17T16:11:32Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850086#M360208</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;im getting the data into IT_DATA as&lt;/P&gt;&lt;P&gt;  call function 'ARCHIVE_GET_NEXT_RECORD'&lt;/P&gt;&lt;P&gt;  exporting&lt;/P&gt;&lt;P&gt;    archive_handle             = v_read_handle&lt;/P&gt;&lt;P&gt;  importing&lt;/P&gt;&lt;P&gt;    record                    = it_data&lt;/P&gt;&lt;P&gt;   record_structure          = v_structure&lt;/P&gt;&lt;P&gt;  exceptions&lt;/P&gt;&lt;P&gt;    end_of_object                  = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case v_structure.&lt;/P&gt;&lt;P&gt;when 'VBRK'.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'DDIF_FIELDINFO_GET'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;          TABNAME   = 'EIPO'&lt;/P&gt;&lt;P&gt;     TABLES&lt;/P&gt;&lt;P&gt;          DFIES_TAB = DFIES_TAB.&lt;/P&gt;&lt;P&gt; &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;LOOP AT IT_DATA.&lt;/P&gt;&lt;P&gt;  LOOP AT DFIES_TAB.&lt;/P&gt;&lt;P&gt;   ASSIGN COMPONENT DFIES_TAB-FIELDNAME OF STRUCTURE I_VBRK_A TO &amp;lt;FS&amp;gt;.&lt;/P&gt;&lt;P&gt;    MOVE IT_DATA+DFIES_TAB-OFFSET(DFIES_TAB-LENG) TO &amp;lt;FS&amp;gt;.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;  APPEND I_VBRK_A.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jan 2007 16:47:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850086#M360208</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-17T16:47:47Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850087#M360209</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;So I suppose the code should be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT IT_DATA.
  LOOP AT DFIES_TAB.
     ASSIGN COMPONENT DFIES_TAB-FIELDNAME OF STRUCTURE I_VBRK_A TO &amp;lt;FS&amp;gt;.
*   MOVE IT_DATA+DFIES_TAB-OFFSET(DFIES_TAB-LENG) TO &amp;lt;FS&amp;gt;.
    MOVE IT_DATA-SEGMENT+DFIES_TAB-OFFSET(DFIES_TAB-LENG) TO &amp;lt;FS&amp;gt;.
   ENDLOOP.
  APPEND I_VBRK_A.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jan 2007 16:59:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850087#M360209</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-17T16:59:13Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850088#M360210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi max,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i didnt understand, IT_DATA-SEGMENT?? the table it_data does not have any segment..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can u explain me.. more clearly....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anybody has any solution???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        keerthi kiran varanasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jan 2007 18:03:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850088#M360210</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-17T18:03:52Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850089#M360211</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;Excuse me! I have mistaken, I confused the structure of the interfaces.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway U can check the format of the original data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I saw the report RASHSD03 here perhaps you can find out something can help you:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: XVBRK LIKE VBRK OCCURS 0 WITH HEADER LINE.

*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  GET_ONE_ENTRY_FROM_ARCHIVE
*&amp;amp;---------------------------------------------------------------------*
*       Explzit einen Eintrag aus dem Archiv holen VBRK                *
*----------------------------------------------------------------------*
FORM GET_ONE_ENTRY_FROM_ARCHIVE.

*.get object
  CALL FUNCTION 'ARCHIVE_READ_OBJECT'
       EXPORTING
            OBJECT         = 'SD_VBRK'
            ARCHIVKEY      = LT_RESULT-ARCHIVEKEY
            OFFSET         = LT_RESULT-ARCHIVEOFS
       IMPORTING
            ARCHIVE_HANDLE = HANDLE
       EXCEPTIONS
            OTHERS         = 1.

  IF SY-SUBRC &amp;lt;&amp;gt; 0.

*   message id sy-msgid type 'S' number sy-msgno with
*                sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    EXIT.
  ELSE.

    DO.
*.get records
      CALL FUNCTION 'ARCHIVE_GET_NEXT_RECORD'
           EXPORTING
                ARCHIVE_HANDLE   = HANDLE
           IMPORTING
                RECORD           = DATA
                RECORD_STRUCTURE = STRUCTURE
           EXCEPTIONS
                END_OF_OBJECT    = 1.

      IF SY-SUBRC &amp;lt;&amp;gt; 0.
        EXIT.
      ENDIF.

*.move records (relation-entries - subsequent data)
      CASE STRUCTURE.
*.move records (relation-entries - preceding data)
        WHEN 'VBRK'.
          XVBRK = DATA. APPEND XVBRK.  "billing document
          EXIT.
      ENDCASE.

    ENDDO.

    CALL FUNCTION 'ARCHIVE_CLOSE_FILE'
         EXPORTING
              ARCHIVE_HANDLE = HANDLE.

  ENDIF.

ENDFORM.                               " GET_ONE_ENTRY_FROM_ARCHIVE&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jan 2007 08:26:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/1850089#M360211</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-18T08:26:33Z</dc:date>
    </item>
  </channel>
</rss>

