<?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: batch split for delivery note in Smartforms in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-split-for-delivery-note-in-smartforms/m-p/1588217#M265007</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sid,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I find the field for the Batch split indicator? I need to know if the Batch split exists or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Sep 2006 18:18:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-21T18:18:34Z</dc:date>
    <item>
      <title>batch split for delivery note in Smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-split-for-delivery-note-in-smartforms/m-p/1588215#M265005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am working on a smartform for delivery note using transaction VL02N. The current form calculates the total number of cases and pallets for the overall quantity. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, I have a requirement where I need to check if the batch is split and then calculate the cases and pallets for each split quantity and get the total cases and pallets. Please suggest as to how this can be achieved if anyone has already worked with a similar requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 17:39:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-split-for-delivery-note-in-smartforms/m-p/1588215#M265005</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T17:39:48Z</dc:date>
    </item>
    <item>
      <title>Re: batch split for delivery note in Smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-split-for-delivery-note-in-smartforms/m-p/1588216#M265006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In delivery line item table &amp;lt;b&amp;gt;LIPS&amp;lt;/b&amp;gt; you have the field &amp;lt;b&amp;gt;UEPOS&amp;lt;/b&amp;gt; and &amp;lt;b&amp;gt;UECHA&amp;lt;/b&amp;gt;, using these feilds you can get the batch split details&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 18:12:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-split-for-delivery-note-in-smartforms/m-p/1588216#M265006</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T18:12:30Z</dc:date>
    </item>
    <item>
      <title>Re: batch split for delivery note in Smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-split-for-delivery-note-in-smartforms/m-p/1588217#M265007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sid,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I find the field for the Batch split indicator? I need to know if the Batch split exists or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 18:18:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-split-for-delivery-note-in-smartforms/m-p/1588217#M265007</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T18:18:34Z</dc:date>
    </item>
    <item>
      <title>Re: batch split for delivery note in Smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-split-for-delivery-note-in-smartforms/m-p/1588218#M265008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is no batch indicator, you need check the value of POSNR with UECHA feild to get the batch split.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code would be something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: i_lips like  lips occurs 0 with header line,
      i_lips_split like lips occurs 0 with header line,
      x_lips like lips.


    loop at i_lips into x_lips.

     loop at i_lips where posnr = x_lips-uecha and 
                          charg &amp;lt;&amp;gt; ' '.
        i_lips_split = i_lips.
        append i_lips_split.
     
     endloop.
    endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 18:28:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-split-for-delivery-note-in-smartforms/m-p/1588218#M265008</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T18:28:56Z</dc:date>
    </item>
  </channel>
</rss>

