<?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: divbep in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/divbep/m-p/1620787#M277740</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Ramu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just declare 1 variable of type c as below-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: qty(19) TYPE c,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;and now transfer the value of tht field into this variable like-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; qty = itab-kwmeng.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!!!&lt;/P&gt;&lt;P&gt;Regds,&lt;/P&gt;&lt;P&gt;SeEmA.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Oct 2006 07:33:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-16T07:33:59Z</dc:date>
    <item>
      <title>divbep</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/divbep/m-p/1620776#M277729</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;Can any one kindly give me the solution for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to pass the quantity field to divbep-wmeng.&lt;/P&gt;&lt;P&gt;in the userexit include zxvdbu01.&lt;/P&gt;&lt;P&gt;but it is giving the runtime error while moving the divbep data to work area(like non convertable.)&lt;/P&gt;&lt;P&gt;tha run time error is UC_OBJECT_NOT_CONVERTIBLE.&lt;/P&gt;&lt;P&gt;Is Divbep some thing different to othe internal tables&lt;/P&gt;&lt;P&gt;like dxvbap,dxvbak.&lt;/P&gt;&lt;P&gt;Please kindly suggest me how declare a wa for this divbepa and how pass the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thaks in Advance.&lt;/P&gt;&lt;P&gt;Thanks&amp;amp;Regards.&lt;/P&gt;&lt;P&gt;Ramu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Oct 2006 05:12:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/divbep/m-p/1620776#M277729</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-15T05:12:16Z</dc:date>
    </item>
    <item>
      <title>Re: divbep</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/divbep/m-p/1620777#M277730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Ramu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Please note that if you are passing the data w.r.t structures both should be same in UNICODE enabled systems. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Alternatively if you just need to pass the quantity, do it explicitly like in below example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:l_qty like divbep-wmeng.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;populate the quantity with the value&lt;/P&gt;&lt;/LI&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;now pass the quantity like&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;    divbep-wmeng = l_qty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   I guess this will resolve your problem.&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>Sun, 15 Oct 2006 06:10:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/divbep/m-p/1620777#M277730</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-15T06:10:52Z</dc:date>
    </item>
    <item>
      <title>Re: divbep</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/divbep/m-p/1620778#M277731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ramu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Especially in a Unicode enabled system the source and the target should be of same type. Where as this not the case in a non-unicode system. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hence you may need to make the source and target of same type. I believe after that a individual MOVE: for each field will be a solution&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope I could help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Oct 2006 13:46:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/divbep/m-p/1620778#M277731</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-15T13:46:18Z</dc:date>
    </item>
    <item>
      <title>Re: divbep</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/divbep/m-p/1620779#M277732</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;As for u r suggestion i have declered the qty field like&lt;/P&gt;&lt;P&gt;w_wmeng like divbep-wmeng.&lt;/P&gt;&lt;P&gt;but it is showing the error like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The data object "DIVBEP" has no structure and therefore no component		&lt;/P&gt;&lt;P&gt;called "WMENG". called "WMENG".	&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but divbep is having the field wmeng.i am not able to understand what is this error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can please give me sggestion.&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;P&gt;Thanks&amp;amp;Regards.&lt;/P&gt;&lt;P&gt;Ramu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Oct 2006 04:44:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/divbep/m-p/1620779#M277732</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-16T04:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: divbep</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/divbep/m-p/1620780#M277733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please declare as VBEP-WMENG and check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: w_wmeng like vbep-wmeng.&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>Mon, 16 Oct 2006 04:58:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/divbep/m-p/1620780#M277733</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-16T04:58:21Z</dc:date>
    </item>
    <item>
      <title>Re: divbep</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/divbep/m-p/1620781#M277734</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;Divbep the wmeng is chr(18).&lt;/P&gt;&lt;P&gt;but the vbep-wmeng is quan.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i decleared as w_wmeng as char(18).&lt;/P&gt;&lt;P&gt;when assigning the value like &lt;/P&gt;&lt;P&gt;divbep-wmeng = w_wmeng.&lt;/P&gt;&lt;P&gt;the same error it is showing.&lt;/P&gt;&lt;P&gt;not for only wmeng,when i use other fields of divbep,the same error is comming.&lt;/P&gt;&lt;P&gt;Please suggest.&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;P&gt;Thanks&amp;amp;Regards.&lt;/P&gt;&lt;P&gt;Ramu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Oct 2006 05:06:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/divbep/m-p/1620781#M277734</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-16T05:06:26Z</dc:date>
    </item>
    <item>
      <title>Re: divbep</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/divbep/m-p/1620782#M277735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you tell us, what happened when you declared the variable as VBEP-WMENG.&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>Mon, 16 Oct 2006 05:19:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/divbep/m-p/1620782#M277735</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-16T05:19:43Z</dc:date>
    </item>
    <item>
      <title>Re: divbep</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/divbep/m-p/1620783#M277736</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;when i declered like vbep-wmeng it is accepting .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but when retrieving wmeng form vbep it is going to dump.&lt;/P&gt;&lt;P&gt;So i declered two veriables:&lt;/P&gt;&lt;P&gt;w_wmeng like vbep-wmeng,&lt;/P&gt;&lt;P&gt;w_wmeng1(18) type c.&lt;/P&gt;&lt;P&gt;and i retrieved the qty form vbep.&lt;/P&gt;&lt;P&gt;SELECT SINGLE wmeng INTO  w_wmeng FROM vbep&lt;/P&gt;&lt;P&gt;                        WHERE vbeln = w_salesorder&lt;/P&gt;&lt;P&gt;                        AND posnr = w_item.&lt;/P&gt;&lt;P&gt;and i moved to w_wmeng1.&lt;/P&gt;&lt;P&gt;w_wmeng1 = w_wmeng.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here i am assigning to divbep-wmeng.&lt;/P&gt;&lt;P&gt;divbep-wmeng = w_wmeng1.&lt;/P&gt;&lt;P&gt;The data object "DIVBEP" has no structure and therefore no component		&lt;/P&gt;&lt;P&gt;called "WMENG". called "WMENG".		&lt;/P&gt;&lt;P&gt;above error is comming.&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;P&gt;Thanks&amp;amp;Regards.&lt;/P&gt;&lt;P&gt;Ramu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Oct 2006 05:29:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/divbep/m-p/1620783#M277736</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-16T05:29:14Z</dc:date>
    </item>
    <item>
      <title>Re: divbep</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/divbep/m-p/1620784#M277737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; can u please suggest  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&amp;amp;Regards.&lt;/P&gt;&lt;P&gt;Ramu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Oct 2006 06:15:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/divbep/m-p/1620784#M277737</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-16T06:15:25Z</dc:date>
    </item>
    <item>
      <title>Re: divbep</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/divbep/m-p/1620785#M277738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Can you provide us the exit which you are using, and the whole code to get some picture.&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>Mon, 16 Oct 2006 06:18:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/divbep/m-p/1620785#M277738</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-16T06:18:31Z</dc:date>
    </item>
    <item>
      <title>Re: divbep</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/divbep/m-p/1620786#M277739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I dont find any object DIVBEP. Pl provide us the code or screen shot to be able to understand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Oct 2006 07:01:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/divbep/m-p/1620786#M277739</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-16T07:01:31Z</dc:date>
    </item>
    <item>
      <title>Re: divbep</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/divbep/m-p/1620787#M277740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Ramu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just declare 1 variable of type c as below-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: qty(19) TYPE c,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;and now transfer the value of tht field into this variable like-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; qty = itab-kwmeng.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!!!&lt;/P&gt;&lt;P&gt;Regds,&lt;/P&gt;&lt;P&gt;SeEmA.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Oct 2006 07:33:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/divbep/m-p/1620787#M277740</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-16T07:33:59Z</dc:date>
    </item>
    <item>
      <title>Re: divbep</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/divbep/m-p/1620788#M277741</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 include is zxvdbu01(exit_saplvedb_001).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the divbep is releated to unicode program.&lt;/P&gt;&lt;P&gt;i find a statement in abapdocu like &lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING STRU 1 TO STRU 2.&lt;/P&gt;&lt;P&gt;this statement is for unicode programs to pass the field values.&lt;/P&gt;&lt;P&gt;THIS statement saloved my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&amp;amp;Regards.&lt;/P&gt;&lt;P&gt;Ramu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Oct 2006 08:49:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/divbep/m-p/1620788#M277741</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-16T08:49:25Z</dc:date>
    </item>
  </channel>
</rss>

