<?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: Help me - Error ABAP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-me-error-abap/m-p/5567642#M1270142</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;taht is bcoz in the internal table it_lips ur having only 3 fileds...&lt;/P&gt;&lt;P&gt;vbeln type lips-vgbel,&lt;/P&gt;&lt;P&gt;posnr type lips-posnr,&lt;/P&gt;&lt;P&gt;lfimg type lips-lfimg,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but in the select querry ur tryying to get all fields...(*)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select *&lt;/P&gt;&lt;P&gt;from lips&lt;/P&gt;&lt;P&gt;into &lt;STRONG&gt;corresponding fields of&lt;/STRONG&gt; table it_lips &lt;/P&gt;&lt;P&gt;where vgbel = R_MC11VA0ITM-vbeln and&lt;/P&gt;&lt;P&gt;posnr = R_MC11VA0ITM-posnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;select &lt;STRONG&gt;vbeln&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;              &lt;STRONG&gt;posnr&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;              &lt;STRONG&gt;lfimg&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;from lips&lt;/P&gt;&lt;P&gt;into table it_lips &lt;/P&gt;&lt;P&gt;where vgbel = R_MC11VA0ITM-vbeln and&lt;/P&gt;&lt;P&gt;posnr = R_MC11VA0ITM-posnr.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 May 2009 01:32:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-20T01:32:15Z</dc:date>
    <item>
      <title>Help me - Error ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-me-error-abap/m-p/5567641#M1270141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm expanding the staff 2lis_11_vaitm extractor. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I'm with error which indicates that the internal table can not be converted to unicode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    data:begin of it_lips occurs 0,&lt;/P&gt;&lt;P&gt;         vbeln  type lips-vgbel,&lt;/P&gt;&lt;P&gt;         posnr  type lips-posnr,&lt;/P&gt;&lt;P&gt;         lfimg   type lips-lfimg,&lt;/P&gt;&lt;P&gt;    end of it_lips.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    data:begin of it_lips_tot occurs 0,&lt;/P&gt;&lt;P&gt;         vbeln  type lips-vgbel,&lt;/P&gt;&lt;P&gt;         posnr  type lips-posnr,&lt;/P&gt;&lt;P&gt;         lfimg   type lips-lfimg,&lt;/P&gt;&lt;P&gt;    end of it_lips_tot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   LOOP AT c_t_data INTO r_mc11va0itm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      v_tabix = sy-tabix.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      clear : it_lips, it_lips_tot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      select  *&lt;/P&gt;&lt;P&gt;       from lips&lt;/P&gt;&lt;P&gt;        into table it_lips &lt;STRONG&gt;(here is where the error indicates)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;        where vgbel = R_MC11VA0ITM-vbeln   and&lt;/P&gt;&lt;P&gt;              posnr = R_MC11VA0ITM-posnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      sort it_lips.&lt;/P&gt;&lt;P&gt;      loop at it_lips.&lt;/P&gt;&lt;P&gt;        move-corresponding it_lips to it_lips_tot.&lt;/P&gt;&lt;P&gt;        collect it_lips_tot&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        R_MC11VA0ITM-ZZLFIMG = it_lips_tot-lfmig.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        MODIFY c_t_data FROM r_mc11va0itm INDEX v_tabix.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message error :&lt;/P&gt;&lt;P&gt;The type of the database table and work area (or internal table)&lt;/P&gt;&lt;P&gt;"IT_LIPS" are not Unicode convertible. .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2009 01:22:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-me-error-abap/m-p/5567641#M1270141</guid>
      <dc:creator>former_member1335810</dc:creator>
      <dc:date>2009-05-20T01:22:23Z</dc:date>
    </item>
    <item>
      <title>Re: Help me - Error ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-me-error-abap/m-p/5567642#M1270142</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;taht is bcoz in the internal table it_lips ur having only 3 fileds...&lt;/P&gt;&lt;P&gt;vbeln type lips-vgbel,&lt;/P&gt;&lt;P&gt;posnr type lips-posnr,&lt;/P&gt;&lt;P&gt;lfimg type lips-lfimg,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but in the select querry ur tryying to get all fields...(*)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select *&lt;/P&gt;&lt;P&gt;from lips&lt;/P&gt;&lt;P&gt;into &lt;STRONG&gt;corresponding fields of&lt;/STRONG&gt; table it_lips &lt;/P&gt;&lt;P&gt;where vgbel = R_MC11VA0ITM-vbeln and&lt;/P&gt;&lt;P&gt;posnr = R_MC11VA0ITM-posnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;select &lt;STRONG&gt;vbeln&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;              &lt;STRONG&gt;posnr&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;              &lt;STRONG&gt;lfimg&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;from lips&lt;/P&gt;&lt;P&gt;into table it_lips &lt;/P&gt;&lt;P&gt;where vgbel = R_MC11VA0ITM-vbeln and&lt;/P&gt;&lt;P&gt;posnr = R_MC11VA0ITM-posnr.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2009 01:32:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-me-error-abap/m-p/5567642#M1270142</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-20T01:32:15Z</dc:date>
    </item>
    <item>
      <title>Re: Help me - Error ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-me-error-abap/m-p/5567643#M1270143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;
Hello Thiago Mösken,  

Try to change your code from 
&lt;PRE&gt;&lt;CODE&gt;
into table it_lips
&lt;/CODE&gt;&lt;/PRE&gt;


to 
&lt;PRE&gt;&lt;CODE&gt;
into corresponding fields of table it_lips
&lt;/CODE&gt;&lt;/PRE&gt;


I believe that it works.

Thanks
Venkat.O
&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2009 02:39:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-me-error-abap/m-p/5567643#M1270143</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2009-05-20T02:39:50Z</dc:date>
    </item>
    <item>
      <title>Re: Help me - Error ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-me-error-abap/m-p/5567644#M1270144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In Mr. A's post, the second option is the better one performance wise&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2009 02:49:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-me-error-abap/m-p/5567644#M1270144</guid>
      <dc:creator>former_member189059</dc:creator>
      <dc:date>2009-05-20T02:49:30Z</dc:date>
    </item>
    <item>
      <title>Re: Help me - Error ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-me-error-abap/m-p/5567645#M1270145</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 Internal table you created is:&lt;/P&gt;&lt;P&gt;data:begin of it_lips occurs 0,&lt;/P&gt;&lt;P&gt;            vbeln type lips-vgbel,&lt;/P&gt;&lt;P&gt;            posnr type lips-posnr,&lt;/P&gt;&lt;P&gt;            lfimg type lips-lfimg,&lt;/P&gt;&lt;P&gt;       end of it_lips.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(1) While selecting the rows from the standard table, the syntax should be:&lt;/P&gt;&lt;P&gt;          &lt;STRONG&gt;into corresponding fields of table it_lips&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(2) Otherwise, the Internal table table declaration should be:&lt;/P&gt;&lt;P&gt;          &lt;STRONG&gt;data: it_lips like lips occurs 0 with header line.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For your case, we have to adopt the step (1) given above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RamaniN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2009 03:11:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-me-error-abap/m-p/5567645#M1270145</guid>
      <dc:creator>former_member229729</dc:creator>
      <dc:date>2009-05-20T03:11:09Z</dc:date>
    </item>
    <item>
      <title>Re: Help me - Error ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-me-error-abap/m-p/5567646#M1270146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u can use &lt;STRONG&gt;INTO CORRESPONDING FIELDS OF TABLE IT_LIPS&lt;/STRONG&gt;  insted of into table it_lips&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2009 06:34:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-me-error-abap/m-p/5567646#M1270146</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-20T06:34:17Z</dc:date>
    </item>
  </channel>
</rss>

