<?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 active problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-active-problem/m-p/987245#M73280</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anu,&lt;/P&gt;&lt;P&gt; Can you post the source &amp;amp; target structure definitions?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Aug 2005 10:55:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-08-16T10:55:00Z</dc:date>
    <item>
      <title>Unicode active problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-active-problem/m-p/987239#M73274</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 had activated the unicode checks in abap program.Now i am facing problem in program which have Read DATAset clause. In Unicode wherevr i know we can download the file from app. server in string type. Now when i am splitting the screen using offset its working perfect for the fields that are of char type.But for the database fields that are type P are throwing short dumps.For Ex:&lt;/P&gt;&lt;P&gt;t_itab-bdmeng = w+strng120(12).&lt;/P&gt;&lt;P&gt;bdmeng(type p field)&lt;/P&gt;&lt;P&gt;w+strng120(12). string that has fetch value from app. server of type p value.&lt;/P&gt;&lt;P&gt;At this point it gave short dump.And the Dump says that t_itab-bdmeng is type p and therefore not compatible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the main prblm is when i fetch the type p value from application server into string type and then pass the value to type p Database field this gaves error.&lt;/P&gt;&lt;P&gt;So can please anyone suggest the solution for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will be great help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2005 06:27:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-active-problem/m-p/987239#M73274</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-16T06:27:47Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode active problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-active-problem/m-p/987240#M73275</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 "clean" w+strng120(12) (with replace or translate) with a help-field (type char)&lt;/P&gt;&lt;P&gt;before moving to p-field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2005 06:48:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-active-problem/m-p/987240#M73275</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2005-08-16T06:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode active problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-active-problem/m-p/987241#M73276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; Avoid accessing the structure using offset &amp;amp; length instead create a new structure of type char components and move data into it. now access it using component name.&lt;/P&gt;&lt;P&gt;Here is an example given by SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Report TECHED_UNICODE_SOLUTION_3 *&lt;/P&gt;&lt;P&gt;REPORT teched_unicode_solution_3 .&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;Exercise 3: Accessing structures with offset or length&lt;/P&gt;&lt;/LI&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;before Unicode enabling&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;types:&lt;/P&gt;&lt;P&gt;begin of PART1,&lt;/P&gt;&lt;P&gt;  F1(10) type C,&lt;/P&gt;&lt;P&gt;   F2(10) type C,&lt;/P&gt;&lt;P&gt;F3(10) type C,&lt;/P&gt;&lt;P&gt;F4(10) type C,&lt;/P&gt;&lt;P&gt;F5(10) type C,&lt;/P&gt;&lt;P&gt;end of PART1.&lt;/P&gt;&lt;P&gt;data: begin of STRUC1,&lt;/P&gt;&lt;P&gt;F0 type I.&lt;/P&gt;&lt;P&gt;include type PART1 as INCL1.&lt;/P&gt;&lt;P&gt;data: F6 type P,&lt;/P&gt;&lt;P&gt;end of STRUC1,&lt;/P&gt;&lt;P&gt;CF(50) type C,&lt;/P&gt;&lt;P&gt;begin of STRUC2,&lt;/P&gt;&lt;P&gt;F0 type I value 42,&lt;/P&gt;&lt;P&gt;F1 type I value 12,&lt;/P&gt;&lt;P&gt;F2 type I value 34,&lt;/P&gt;&lt;P&gt;F3 type I value 56,&lt;/P&gt;&lt;P&gt;F4 type I value 78,&lt;/P&gt;&lt;P&gt;F5 type I value 90,&lt;/P&gt;&lt;P&gt;end of STRUC2.&lt;/P&gt;&lt;P&gt;move-corresponding STRUC2 to STRUC1.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;cf = struc1+4(50). " &amp;lt;-------- Unicode error !!!&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CF = STRUC1-INCL1.&lt;/P&gt;&lt;P&gt;condense CF.&lt;/P&gt;&lt;P&gt;write: / CF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2005 07:16:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-active-problem/m-p/987241#M73276</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-16T07:16:23Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode active problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-active-problem/m-p/987242#M73277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello &lt;/P&gt;&lt;P&gt;can anyone suggest some solution or this issue.&lt;/P&gt;&lt;P&gt;Its not clear from this examples.Can anyone please help on this...&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;anu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2005 09:17:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-active-problem/m-p/987242#M73277</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-16T09:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode active problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-active-problem/m-p/987243#M73278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i just created a sample program and it works fine.(unicode system)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: a type p decimals 2.
data: b type string .
move: '000123456.780' to b .
a = b+3(10) .
write:/ a .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you try this code in your system and let us know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also give us the exact dump analysis details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2005 10:13:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-active-problem/m-p/987243#M73278</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2005-08-16T10:13:17Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode active problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-active-problem/m-p/987244#M73279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;i have differnet problem.i am downloading the data frm application server into string. And then using offset.And then the offset value to mo ve to type p variable.And the offset is of string type.&lt;/P&gt;&lt;P&gt;At this point it creates the prblm. so i need help on this..pplz help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2005 10:33:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-active-problem/m-p/987244#M73279</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-16T10:33:03Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode active problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-active-problem/m-p/987245#M73280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anu,&lt;/P&gt;&lt;P&gt; Can you post the source &amp;amp; target structure definitions?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2005 10:55:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-active-problem/m-p/987245#M73280</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-16T10:55:00Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode active problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-active-problem/m-p/987246#M73281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DATA:w_struct(1160) TYPE c.&lt;/P&gt;&lt;P&gt;    tab_wa-matnr           = w_struct+221(18).&lt;/P&gt;&lt;P&gt;    tab_wa-crd             = w_struct+239(8).&lt;/P&gt;&lt;P&gt;    tab_wa-ffd             = w_struct+247(8).&lt;/P&gt;&lt;P&gt;    tab_wa-edatu           = w_struct+255(8).&lt;/P&gt;&lt;P&gt;    tab_wa-shpd            = w_struct+263(8).&lt;/P&gt;&lt;P&gt;ASSIGN w_struct+297(13) to &amp;lt;f2&amp;gt; CASTING type P DECIMALS 2.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   MOVE &amp;lt;f2&amp;gt; TO tab_wa-oqty.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   x3 = w_struct+310(11).&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ASSIGN w_struct+310(11) to &amp;lt;f1&amp;gt; CASTING type P DECIMALS 2.&lt;/P&gt;&lt;P&gt;    MOVE &amp;lt;F1&amp;gt; TO tab_wa-netpr.&lt;/P&gt;&lt;P&gt;Now if i ran the report it gaves short dump..&lt;/P&gt;&lt;P&gt;1.Unable to interpret "IS000" as a number.&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;2.A calculation field is defined too small&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz suggest the solutions for this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2005 11:13:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-active-problem/m-p/987246#M73281</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-16T11:13:16Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode active problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-active-problem/m-p/987247#M73282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anu, &lt;/P&gt;&lt;P&gt; Can u post the definition of the structure TAB_WA?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2005 11:21:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-active-problem/m-p/987247#M73282</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-16T11:21:21Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode active problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-active-problem/m-p/987248#M73283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;THE tab_wa     TYPE zsr08_sodextr,&lt;/P&gt;&lt;P&gt;WHERE zsr08_sodextr IS LIKE ZSODEXTR.WHICH IS DATABASE TABLE&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2005 11:37:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-active-problem/m-p/987248#M73283</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-16T11:37:37Z</dc:date>
    </item>
  </channel>
</rss>

