<?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: ABAP dump in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump/m-p/3846384#M924758</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kumar ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is no mistake in Your Select Statment ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but we need to check firstly whether the LIKP table is initial or not then only we need hit the data base..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just chect whether it_likp is having data or not..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;sg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 May 2008 03:09:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-26T03:09:55Z</dc:date>
    <item>
      <title>ABAP dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump/m-p/3846380#M924754</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 following statement going to dump. pls advise me if anything wrong&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SELECT VBELN POSNR MATNR ERDAT LFIMG ERNAM WERKS VGBEL VGPOS FROM LIPS INTO&lt;/P&gt;&lt;P&gt;      TABLE LT_LIPOV&lt;/P&gt;&lt;P&gt;      for all entries in it_likp&lt;/P&gt;&lt;P&gt;       WHERE VBELN = it_LIKP-VBELN.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 02:55:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump/m-p/3846380#M924754</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T02:55:20Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump/m-p/3846381#M924755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there..&lt;/P&gt;&lt;P&gt;check the structure of lt_lipov... are the field in the same order in the decleration of ur table...VBELN POSNR MATNR ERDAT LFIMG ERNAM WERKS VGBEL VGPOS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
if not it_likp[ ] is initial. "&amp;lt;&amp;lt; this is mandatory for all entries.
SELECT VBELN POSNR MATNR ERDAT LFIMG ERNAM WERKS VGBEL VGPOS FROM LIPS INTO
TABLE LT_LIPOV
for all entries in it_likp
WHERE VBELN = it_LIKP-VBELN.

endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 03:01:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump/m-p/3846381#M924755</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-05-26T03:01:46Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump/m-p/3846382#M924756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do the following before using for all entries.........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.delete adjacent duplicates from that itab...&lt;/P&gt;&lt;P&gt;2.sort that itab.........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 03:03:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump/m-p/3846382#M924756</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T03:03:08Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump/m-p/3846383#M924757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the structure of table LT_LIPOV.&lt;/P&gt;&lt;P&gt;Has it got all the fields that you have given in the select statement?&lt;/P&gt;&lt;P&gt;Any change in the field mentioned in the select and the structure of LT_LIPOV will go to dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 03:04:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump/m-p/3846383#M924757</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T03:04:43Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump/m-p/3846384#M924758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kumar ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is no mistake in Your Select Statment ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but we need to check firstly whether the LIKP table is initial or not then only we need hit the data base..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just chect whether it_likp is having data or not..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;sg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 03:09:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump/m-p/3846384#M924758</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T03:09:55Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump/m-p/3846385#M924759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Kumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Check out if the structure of LT_LIPOV has fields of order VBELN POSNR MATNR ERDAT LFIMG ERNAM WERKS VGBEL VGPOS ...&lt;/P&gt;&lt;P&gt;else use corresponding fields of table statement ...&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
if not it_likp[] is initial.
SELECT VBELN POSNR MATNR ERDAT LFIMG ERNAM WERKS VGBEL VGPOS FROM LIPS INTO corresponding fields of
TABLE LT_LIPOV
for all entries in it_likp
WHERE VBELN = it_LIKP-VBELN
endif..&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 03:21:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump/m-p/3846385#M924759</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T03:21:14Z</dc:date>
    </item>
  </channel>
</rss>

