<?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: help needed in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed/m-p/1607742#M272762</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;  SELECT MATNR &lt;/P&gt;&lt;P&gt;         BDMNG MEINS  CHARG&lt;/P&gt;&lt;P&gt;INTO TABLE I_resb&lt;/P&gt;&lt;P&gt;FROM RESB .&lt;/P&gt;&lt;P&gt;if not i_resb[] is initial.&lt;/P&gt;&lt;P&gt;SELECT OBJEK ATWRT ATINN &lt;/P&gt;&lt;P&gt;FROM AUSP&lt;/P&gt;&lt;P&gt;INTO TABLE I_ausp&lt;/P&gt;&lt;P&gt;FOR ALL ENTRIES IN I_resb&lt;/P&gt;&lt;P&gt;WHERE OBJEK = I_resb-CHARG&lt;/P&gt;&lt;P&gt;AND (( ATINN eq 'LOBM_VFDAT' )or &lt;/P&gt;&lt;P&gt;      ATINN eq  'LOBM_QNDAT' )).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT I_resg.&lt;/P&gt;&lt;P&gt; read table I_ausp WHERE OBJEK = I_resb-CHARG.&lt;/P&gt;&lt;P&gt;  prepare final tab.e&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;&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;amole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Sep 2006 14:02:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-19T14:02:44Z</dc:date>
    <item>
      <title>help needed</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed/m-p/1607740#M272760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts,&lt;/P&gt;&lt;P&gt;could u plz help me to code for the below desc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Material number (RESB-MATNR) material short text,( MAKT-MAKTX) quantity weighed (RESB-BDMNG), unit of measure (RESB-MEINS), next retest date (READ AUSP-ATWRT where batch equals AUSP-OBJEK and AUSP-ATINN equals LOBM_QNDAT), manufacturer expiration date(READ AUSP-ATWRT where batch equals AUSP-OBJEK and AUSP-ATINN equals LOBM_VFDAT), batch number.(RESB-CHARG).&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;siri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2006 13:40:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed/m-p/1607740#M272760</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-19T13:40:51Z</dc:date>
    </item>
    <item>
      <title>Re: help needed</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed/m-p/1607741#M272761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Material number (RESB-MATNR) material short text,( MAKT-MAKTX) quantity weighed (RESB-BDMNG), unit of measure (RESB-MEINS), next retest date (READ AUSP-ATWRT where batch equals AUSP-OBJEK and AUSP-ATINN equals LOBM_QNDAT), manufacturer expiration date(READ AUSP-ATWRT where batch equals AUSP-OBJEK and AUSP-ATINN equals LOBM_VFDAT), batch number.(RESB-CHARG).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT RESB&lt;SUB&gt;MATNR MAKT&lt;/SUB&gt;MAKTX RESB&lt;SUB&gt;BDMNG RESB&lt;/SUB&gt;MEINS RESB~CHARG&lt;/P&gt;&lt;P&gt;INTO TABLE ITAB&lt;/P&gt;&lt;P&gt;FROM RESB INNER JOIN MAKT ON RESB&lt;SUB&gt;MATNR = MAKT&lt;/SUB&gt;MATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT OBJEK ATWRT ATINN &lt;/P&gt;&lt;P&gt;FROM AUSP&lt;/P&gt;&lt;P&gt;INTO TABLE IBATCH&lt;/P&gt;&lt;P&gt;FOR ALL ENTRIES IN ITAB&lt;/P&gt;&lt;P&gt;WHERE OBJEK = ITAB-CHARG&lt;/P&gt;&lt;P&gt;AND ATINN IN ('LOBM_VFDAT','LOBM_QNDAT').&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IBATCH AND ITAB CONTAINS YOUR DATA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;  LOOP AT IBATCH WHERE OBJEK = ITAB-CHARG.&lt;/P&gt;&lt;P&gt;*NEXT RESET DATE&lt;/P&gt;&lt;P&gt;*MANUFACTURE EXPIRATION DATE&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Anurag Bankley&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2006 13:49:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed/m-p/1607741#M272761</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-19T13:49:19Z</dc:date>
    </item>
    <item>
      <title>Re: help needed</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed/m-p/1607742#M272762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;  SELECT MATNR &lt;/P&gt;&lt;P&gt;         BDMNG MEINS  CHARG&lt;/P&gt;&lt;P&gt;INTO TABLE I_resb&lt;/P&gt;&lt;P&gt;FROM RESB .&lt;/P&gt;&lt;P&gt;if not i_resb[] is initial.&lt;/P&gt;&lt;P&gt;SELECT OBJEK ATWRT ATINN &lt;/P&gt;&lt;P&gt;FROM AUSP&lt;/P&gt;&lt;P&gt;INTO TABLE I_ausp&lt;/P&gt;&lt;P&gt;FOR ALL ENTRIES IN I_resb&lt;/P&gt;&lt;P&gt;WHERE OBJEK = I_resb-CHARG&lt;/P&gt;&lt;P&gt;AND (( ATINN eq 'LOBM_VFDAT' )or &lt;/P&gt;&lt;P&gt;      ATINN eq  'LOBM_QNDAT' )).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT I_resg.&lt;/P&gt;&lt;P&gt; read table I_ausp WHERE OBJEK = I_resb-CHARG.&lt;/P&gt;&lt;P&gt;  prepare final tab.e&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;&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;amole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2006 14:02:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed/m-p/1607742#M272762</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-19T14:02:44Z</dc:date>
    </item>
  </channel>
</rss>

