<?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: In Loop how to move condition type data in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-loop-how-to-move-condition-type-data/m-p/4661710#M1096756</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; yeh kya code kyu paste kiya hai&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; there is no solution for this question kindly close this thread.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use common language, which is &lt;STRONG&gt;english&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Oct 2008 12:29:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-16T12:29:42Z</dc:date>
    <item>
      <title>In Loop how to move condition type data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-loop-how-to-move-condition-type-data/m-p/4661708#M1096754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In loop while i am collecting data in final loop,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have different pack sizes in pricing procedures viz. p10kg,&lt;/P&gt;&lt;P&gt;p20kg., p15kg.....like wise along with  BED, EDU CESS,&lt;/P&gt;&lt;P&gt;Sec &amp;amp; High &amp;amp; VAT . i have fetch data from KONV. &lt;/P&gt;&lt;P&gt;for this i have written two select queries for pack size only in it_konv and other for taxes in it_konv1.&lt;/P&gt;&lt;P&gt;now, for one item no. i have three pack sizes 10, 20 40.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see the following.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM GET_ITEM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: QUANT TYPE KONV-KWERT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR QUANT.&lt;/P&gt;&lt;P&gt;CLEAR WA_FINAL-BEDTX.&lt;/P&gt;&lt;P&gt;CLEAR WA_FINAL-EDUTX.&lt;/P&gt;&lt;P&gt;CLEAR WA_FINAL-SECTX.&lt;/P&gt;&lt;P&gt;CLEAR WA_FINAL-VATTX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT IT_VBRK INTO WA_VBRK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WA_FINAL-VBELN   =  WA_VBRK-VBELN.&lt;/P&gt;&lt;P&gt;    WA_FINAL-FKDAT   =  WA_VBRK-FKDAT.&lt;/P&gt;&lt;P&gt;    WA_FINAL-KUNAG   =  WA_VBRK-KUNAG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        READ TABLE IT_KNA1 INTO WA_KNA1 WITH KEY KUNNR = WA_VBRK-KUNAG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          WA_FINAL-ADRNR = WA_KNA1-ADRNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        READ TABLE IT_ADRC INTO WA_ADRC WITH KEY ADDRNUMBER = WA_KNA1-ADRNR.&lt;/P&gt;&lt;P&gt;          WA_FINAL-NAME1   = WA_ADRC-NAME1.&lt;/P&gt;&lt;P&gt;          WA_FINAL-STREET  = WA_ADRC-STREET.&lt;/P&gt;&lt;P&gt;          WA_FINAL-STRET1  = wa_adrc-STR_SUPPL1.&lt;/P&gt;&lt;P&gt;          WA_FINAL-STRET2  = WA_ADRC-STR_SUPPL2.&lt;/P&gt;&lt;P&gt;          WA_FINAL-CITY1   = WA_ADRC-MC_CITY1.&lt;/P&gt;&lt;P&gt;          WA_FINAL-POSTAL  = WA_ADRC-POST_CODE1.&lt;/P&gt;&lt;P&gt;          WA_FINAL-TIMEZ   = WA_ADRC-TIME_ZONE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        LOOP AT IT_VBRP INTO WA_VBRP WHERE VBELN = WA_VBRK-VBELN.&lt;/P&gt;&lt;P&gt;          WA_FINAL-ITEM    = WA_VBRP-POSNR.&lt;/P&gt;&lt;P&gt;          WA_FINAL-SALQT   = WA_VBRP-FKIMG.&lt;/P&gt;&lt;P&gt;          WA_FINAL-SALUN   = WA_VBRP-VRKME.&lt;/P&gt;&lt;P&gt;          WA_FINAL-MATNR   = WA_VBRP-MATNR.&lt;/P&gt;&lt;P&gt;          WA_FINAL-DESCP   = WA_VBRP-ARKTX.&lt;/P&gt;&lt;P&gt;          WA_FINAL-ORDNO   = WA_VBRP-AUBEL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        LOOP AT IT_KONV INTO WA_KONV WHERE KNUMV = WA_VBRK-KNUMV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           WA_FINAL-PACKSZ   = WA_KONV-KSCHL.&lt;/P&gt;&lt;P&gt;           WA_FINAL-EXVALUE = WA_KONV-KWERT.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WRITE : / WA_FINAL-PACKSZ,&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                  WA_FINAL-EXVALUE.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        LOOP AT IT_KONV1 INTO WA_KONV1 WHERE KNUMV = WA_VBRK-KNUMV.&lt;/P&gt;&lt;P&gt;           IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;               IF     WA_KONV1-KSCHL = 'JEXP' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                      WA_FINAL-BEDTX = WA_KONV1-KWERT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;               ELSEIF WA_KONV1-KSCHL =  'JECS'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                      WA_FINAL-EDUTX = WA_KONV1-KWERT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;               ELSEIF WA_KONV1-KSCHL =  'JA1X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                      WA_FINAL-SECTX = WA_KONV1-KWERT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;               ELSEIF WA_KONV1-KSCHL =  'JIVP'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                      WA_FINAL-VATTX = WA_KONV1-KWERT.&lt;/P&gt;&lt;P&gt;               ENDIF.&lt;/P&gt;&lt;P&gt;           ENDIF.&lt;/P&gt;&lt;P&gt;        ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     ENDLOOP.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;        APPEND WA_FINAL TO IT_FINAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz experts giv me solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thaanks In Advance,&lt;/P&gt;&lt;P&gt;Ashish.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Oct 2008 05:23:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-loop-how-to-move-condition-type-data/m-p/4661708#M1096754</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-16T05:23:03Z</dc:date>
    </item>
    <item>
      <title>Re: In Loop how to move condition type data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-loop-how-to-move-condition-type-data/m-p/4661709#M1096755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yeh kya code kyu paste kiya hai&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there is no solution for this question kindly close this thread.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Oct 2008 12:20:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-loop-how-to-move-condition-type-data/m-p/4661709#M1096755</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-16T12:20:50Z</dc:date>
    </item>
    <item>
      <title>Re: In Loop how to move condition type data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-loop-how-to-move-condition-type-data/m-p/4661710#M1096756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; yeh kya code kyu paste kiya hai&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; there is no solution for this question kindly close this thread.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use common language, which is &lt;STRONG&gt;english&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Oct 2008 12:29:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-loop-how-to-move-condition-type-data/m-p/4661710#M1096756</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-16T12:29:42Z</dc:date>
    </item>
  </channel>
</rss>

