<?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: with konv,konp tables in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/with-konv-konp-tables/m-p/4166187#M996007</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;jyothsna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use KNUMV  and KPOSN field .KNUMV is available in VBRK and KONV both and comapre KPOSN with VBRP-POSNR.&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Jul 2008 09:53:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-18T09:53:22Z</dc:date>
    <item>
      <title>with konv,konp tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/with-konv-konp-tables/m-p/4166186#M996006</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 am developin a smartform for credit note. in maiin window i suppossed to populate the price (MRP) based on the condition type VKPO. i need to retrieve the price for vbrk-vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anyone help me , how to do that&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 09:48:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/with-konv-konp-tables/m-p/4166186#M996006</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-18T09:48:48Z</dc:date>
    </item>
    <item>
      <title>Re: with konv,konp tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/with-konv-konp-tables/m-p/4166187#M996007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;jyothsna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use KNUMV  and KPOSN field .KNUMV is available in VBRK and KONV both and comapre KPOSN with VBRP-POSNR.&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 09:53:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/with-konv-konp-tables/m-p/4166187#M996007</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-18T09:53:22Z</dc:date>
    </item>
    <item>
      <title>Re: with konv,konp tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/with-konv-konp-tables/m-p/4166188#M996008</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;get the KNUMV (Number of the document condition) from vbak for the credit note number .......then next go to KONP table &lt;/P&gt;&lt;P&gt;match the record with KNUMV and kschl = 'VKPO' and get the value&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 09:56:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/with-konv-konp-tables/m-p/4166188#M996008</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-18T09:56:39Z</dc:date>
    </item>
    <item>
      <title>Re: with konv,konp tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/with-konv-konp-tables/m-p/4166189#M996009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jyothsna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to consider line item also while retrieving the conditionproce, coz for every line item conditional value differs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find the below sample code for your reference&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select vbeln posnr knumv from vbrk inner join vbrp &lt;/P&gt;&lt;P&gt;            on condition vbrk&lt;SUB&gt;vbeln = vbrp&lt;/SUB&gt;vbeln&lt;/P&gt;&lt;P&gt;            into table ivbrp where &amp;lt;condtion&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if ivbrp[] is not initial.&lt;/P&gt;&lt;P&gt; loop at ivbrp. &lt;/P&gt;&lt;P&gt; select knumv kposn kawrt kbetr from konv into w_konv &lt;/P&gt;&lt;P&gt;where knumv = ivbrp-knumv and&lt;/P&gt;&lt;P&gt;         kposn = ivbrp-posnr    and  &lt;/P&gt;&lt;P&gt;         kschl = 'VKPO'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope the above will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sujatha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Sujatha Reddy on Jul 18, 2008 12:49 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 10:03:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/with-konv-konp-tables/m-p/4166189#M996009</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-18T10:03:15Z</dc:date>
    </item>
    <item>
      <title>Re: with konv,konp tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/with-konv-konp-tables/m-p/4166190#M996010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for ur reply sailaja.&lt;/P&gt;&lt;P&gt;from which field i should get the price. is there anu necessary to use the table A073. in which cases we use this table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;being an abap fresher i wold like to know the details clearly. can u explain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 10:08:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/with-konv-konp-tables/m-p/4166190#M996010</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-18T10:08:12Z</dc:date>
    </item>
    <item>
      <title>Re: with konv,konp tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/with-konv-konp-tables/m-p/4166191#M996011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi J , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables started with A* is for 'Z' condition tables , while creating the access sequence u will need to create a table, In case of Z conditions u need to get the data from these A* 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;regards&lt;/P&gt;&lt;P&gt;Prabhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 11:12:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/with-konv-konp-tables/m-p/4166191#M996011</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-18T11:12:49Z</dc:date>
    </item>
  </channel>
</rss>

