<?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: Fetching DATE problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-date-problem/m-p/5241452#M1211115</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;    Could you please be more clear.&lt;/P&gt;&lt;P&gt;As per my understanding when you filter the data based on that,the ata will be retrieved .&lt;/P&gt;&lt;P&gt;In your case i think you want only begin date and you don't want end date corresponding to Begining date.&lt;/P&gt;&lt;P&gt;For a PERNR always we have only one enddate and one begin date .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;change the internal table and add as well as end date field .. This may serve your purpose .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Feb 2009 05:29:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-02-20T05:29:50Z</dc:date>
    <item>
      <title>Fetching DATE problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-date-problem/m-p/5241451#M1211114</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;&lt;/P&gt;&lt;P&gt;i need a help in the below ...........&lt;/P&gt;&lt;P&gt;i tried few but still cudnt get the solution &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is the query where&lt;/P&gt;&lt;P&gt;=======================&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select pernr  endda massn  from pa0000 into corresponding fields of table it_pa0000&lt;/P&gt;&lt;P&gt;     WHERE&lt;/P&gt;&lt;P&gt;            Endda = '99991231' and&lt;/P&gt;&lt;P&gt;            MASSN in ('S1', 'S2', 'S3', 'S4', 'S7')&lt;/P&gt;&lt;P&gt;            and pernr in so_pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where it fetches all the pernr which satisfies the condition &lt;/P&gt;&lt;P&gt;but problem is that since i have mentioned the Endda as '99991231 its fetching&lt;/P&gt;&lt;P&gt;the begda for the corresponding  endda ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but my requirement is that it shud satisfy my select criterial&lt;/P&gt;&lt;P&gt;and if satisfied it shud fetch the begda of S1 instead of  &lt;/P&gt;&lt;P&gt;fetching endda 's corresponding begda.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx in advance &lt;/P&gt;&lt;P&gt;Rachel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Feb 2009 05:15:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-date-problem/m-p/5241451#M1211114</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-20T05:15:34Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching DATE problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-date-problem/m-p/5241452#M1211115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;    Could you please be more clear.&lt;/P&gt;&lt;P&gt;As per my understanding when you filter the data based on that,the ata will be retrieved .&lt;/P&gt;&lt;P&gt;In your case i think you want only begin date and you don't want end date corresponding to Begining date.&lt;/P&gt;&lt;P&gt;For a PERNR always we have only one enddate and one begin date .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;change the internal table and add as well as end date field .. This may serve your purpose .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Feb 2009 05:29:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-date-problem/m-p/5241452#M1211115</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-20T05:29:50Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching DATE problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-date-problem/m-p/5241453#M1211116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If thats the case then give the BEGDA condition also in the where clause ...&lt;/P&gt;&lt;P&gt;rewrite your select as ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select pernr endda massn from pa0000 into corresponding fields of table it_pa0000&lt;/P&gt;&lt;P&gt;WHERE&lt;/P&gt;&lt;P&gt;pernr in so_pernr&lt;/P&gt;&lt;P&gt;Endda GE p_begda and &lt;/P&gt;&lt;P&gt;BEGDA LE p_endda and&lt;/P&gt;&lt;P&gt;MASSN in ('S1', 'S2', 'S3', 'S4', 'S7').&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sort it_pa0000 by pernr begda descending.&lt;/P&gt;&lt;P&gt;delete adjacent duplicates from it_pa0000 comparing pernr. &amp;lt;-- will fetch latest record&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P_BEGDA and P_ENDDA are selection screen parameters for begin date and enddate.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Feb 2009 05:31:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-date-problem/m-p/5241453#M1211116</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-20T05:31:31Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching DATE problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-date-problem/m-p/5241454#M1211117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi:&lt;/P&gt;&lt;P&gt;do one thing, select the data without using date condition and later on, under the loop; the matching conditions of date, filter the data and append into another internal table.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shashi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Feb 2009 05:32:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-date-problem/m-p/5241454#M1211117</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-20T05:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching DATE problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-date-problem/m-p/5241455#M1211118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi thanx but i dont use parameters for begda and endda ....i pick only from table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Feb 2009 05:38:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-date-problem/m-p/5241455#M1211118</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-20T05:38:41Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching DATE problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-date-problem/m-p/5241456#M1211119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ,&lt;/P&gt;&lt;P&gt;by your select it will always get you begda correponding to enda...&lt;/P&gt;&lt;P&gt;now you want according to s1...&lt;/P&gt;&lt;P&gt;so for employee...with begda of s1 and endda as 31129999..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so wht you need to get begda related to s1:&lt;/P&gt;&lt;P&gt;define it_tab with fields pernr and begda&lt;/P&gt;&lt;P&gt;select pernr begda form p0000 into it_tab &lt;/P&gt;&lt;P&gt;for all entries in  it_pa0000 &lt;/P&gt;&lt;P&gt;where pernr =  it_pa0000-pernr&lt;/P&gt;&lt;P&gt;and massn = s1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then loop at  it_pa0000-pernr into wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read table it_tab into watab with key pernr = wa-pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa-begda = watab-begda.&lt;/P&gt;&lt;P&gt;modify it_pa0000 form wa.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the code written by you will get you correct begda if only s1 action is performed on employee..&lt;/P&gt;&lt;P&gt;but if your employyee has more actions after s1..the the second recod will have endda as 3112999..&lt;/P&gt;&lt;P&gt;then in that case do as above code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: pratyush v on Feb 20, 2009 11:09 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Feb 2009 05:38:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-date-problem/m-p/5241456#M1211119</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-20T05:38:55Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching DATE problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-date-problem/m-p/5241457#M1211120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi thanx for the reply.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here i have furnished my coding ....can u tel me how can it be done....&lt;/P&gt;&lt;P&gt;thanx &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;Select pernr begda endda massn  from pa0000 into corresponding fields of table it_pa0000&lt;/P&gt;&lt;P&gt;     WHERE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             Endda = '99991231' and&lt;/P&gt;&lt;P&gt;            MASSN in ('S1', 'S2', 'S3', 'S4', 'S7')&lt;/P&gt;&lt;P&gt;            and pernr in so_pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Elseif pr_sep = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select pernr begda from pa0000 into corresponding fields of table it_pa0000&lt;/P&gt;&lt;P&gt;     WHERE&lt;/P&gt;&lt;P&gt;           BEGDA &amp;lt;= SY-DATUM AND&lt;/P&gt;&lt;P&gt;           ENDDA  &amp;gt;= SY-DATUM AND&lt;/P&gt;&lt;P&gt;           MASSN in ('S5')&lt;/P&gt;&lt;P&gt;           and pernr in so_pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF it_pa0000[] is not initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  select pernr bukrs abkrs from pa0001 into corresponding fields of table it_pa0001&lt;/P&gt;&lt;P&gt;        for all entries in it_pa0000&lt;/P&gt;&lt;P&gt;        where abkrs =  pr_abkrs and&lt;/P&gt;&lt;P&gt;              bukrs =  pr_bukrs and&lt;/P&gt;&lt;P&gt;              pernr = it_pa0000-pernr.&lt;/P&gt;&lt;P&gt;Endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF it_pa0001[] is not initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Select pernr vorna begda Nachn from pa0002 into corresponding fields of table it_pa0002&lt;/P&gt;&lt;P&gt;        for all entries in it_pa0001&lt;/P&gt;&lt;P&gt;        where pernr = it_pa0001-pernr and&lt;/P&gt;&lt;P&gt;              BEGDA &amp;lt;= SY-DATUM AND&lt;/P&gt;&lt;P&gt;              ENDDA  &amp;gt;= SY-DATUM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Endif.&lt;/P&gt;&lt;P&gt;IF it_pa0002[] is not initial.&lt;/P&gt;&lt;P&gt;     Select pernr begda EEPFN from pa0587 into corresponding fields of table it_pa0587&lt;/P&gt;&lt;P&gt;         for all entries in it_pa0001&lt;/P&gt;&lt;P&gt;         where pernr = it_pa0001-pernr and&lt;/P&gt;&lt;P&gt;         BEGDA &amp;lt;= SY-DATUM AND&lt;/P&gt;&lt;P&gt;         ENDDA  &amp;gt;= SY-DATUM  .&lt;/P&gt;&lt;P&gt;   Endif.&lt;/P&gt;&lt;P&gt;  IF it_pa0587[] is not initial.&lt;/P&gt;&lt;P&gt;    Select pernr begda esino from pa0588 into corresponding fields of table it_pa0588&lt;/P&gt;&lt;P&gt;         for all entries in it_pa0001&lt;/P&gt;&lt;P&gt;         where pernr = it_pa0001-pernr and&lt;/P&gt;&lt;P&gt;         BEGDA &amp;lt;= SY-DATUM AND&lt;/P&gt;&lt;P&gt;         ENDDA  &amp;gt;= SY-DATUM .&lt;/P&gt;&lt;P&gt;  Endif.&lt;/P&gt;&lt;P&gt; IF IT_PA0588[] is not initial.&lt;/P&gt;&lt;P&gt;     Select pernr begda favor famsa from pa0021 into corresponding fields of table it_pa0021&lt;/P&gt;&lt;P&gt;         for all entries in it_pa0001&lt;/P&gt;&lt;P&gt;           where pernr = it_pa0001-pernr and&lt;/P&gt;&lt;P&gt;                 famsa = '11' and " Selecting type as father&lt;/P&gt;&lt;P&gt;                 BEGDA &amp;lt;= SY-DATUM AND&lt;/P&gt;&lt;P&gt;                 ENDDA  &amp;gt;= SY-DATUM .&lt;/P&gt;&lt;P&gt;  Endif.&lt;/P&gt;&lt;P&gt; IF IT_pa0021[] is not initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      Select pernr begda  BET02 from pa0008 into corresponding fields of table it_pa0008&lt;/P&gt;&lt;P&gt;           for all entries in it_pa0001&lt;/P&gt;&lt;P&gt;             where pernr = it_pa0001-pernr and&lt;/P&gt;&lt;P&gt;                 BEGDA &amp;lt;= SY-DATUM AND&lt;/P&gt;&lt;P&gt;                 ENDDA  &amp;gt;= SY-DATUM .&lt;/P&gt;&lt;P&gt;    Endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at it_pa0001 into wa_pa0001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         wa_final-abkrs = wa_pa0001-abkrs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read table it_pa0000 into wa_pa0000 with key pernr = wa_pa0001-pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         wa_final-pernr = wa_pa0000-pernr.&lt;/P&gt;&lt;P&gt;         wa_final-begda = wa_pa0000-begda.&lt;/P&gt;&lt;P&gt;       Endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read table it_pa0002 into wa_pa0002 with key pernr = wa_pa0001-pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;         wa_final-vorna = wa_pa0002-vorna.&lt;/P&gt;&lt;P&gt;         wa_final-nachn = wa_pa0002-nachn.&lt;/P&gt;&lt;P&gt;       Endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; read table it_pa0587 into wa_pa0587 with key pernr = wa_pa0001-pernr.&lt;/P&gt;&lt;P&gt;        IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;           wa_final-eepfn = wa_pa0587-eepfn.&lt;/P&gt;&lt;P&gt;        Endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; read table it_pa0588 into wa_pa0588 with key pernr = wa_pa0001-pernr.&lt;/P&gt;&lt;P&gt;        IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;           wa_final-esino = wa_pa0588-esino.&lt;/P&gt;&lt;P&gt;        Endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; read table it_pa0021 into wa_pa0021 with key pernr = wa_pa0001-pernr  .&lt;/P&gt;&lt;P&gt;       IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;          wa_final-favor = wa_pa0021-favor.&lt;/P&gt;&lt;P&gt;       Endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read table it_pa0008 into wa_pa0008 with key pernr = wa_pa0001-pernr.&lt;/P&gt;&lt;P&gt;      IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      wa_final-bet02 = wa_pa0008-bet02.&lt;/P&gt;&lt;P&gt;      Endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     Append wa_FINAL to IT_FINAL.&lt;/P&gt;&lt;P&gt;     clear wa_final.&lt;/P&gt;&lt;P&gt;  Endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Feb 2009 05:45:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-date-problem/m-p/5241457#M1211120</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-20T05:45:03Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching DATE problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-date-problem/m-p/5241458#M1211121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just sort your internal table as ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sort it_pa0000 by pernr begda.&lt;/P&gt;&lt;P&gt;delete adjacent duplicates from  it_pa0000 comparing pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here it gets the BEGIN DATE of S1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Feb 2009 05:52:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-date-problem/m-p/5241458#M1211121</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-20T05:52:30Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching DATE problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-date-problem/m-p/5241459#M1211122</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;thanx ....this is wat i was trying but  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Types :  begin of  ty_dates,&lt;/P&gt;&lt;P&gt;         pernr type pa0000-pernr,&lt;/P&gt;&lt;P&gt;         begda type pa0000-begda,&lt;/P&gt;&lt;P&gt;         endda type pa0000-endda,&lt;/P&gt;&lt;P&gt;         massn type pa0000-massn,&lt;/P&gt;&lt;P&gt;         end of ty_dates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: it_Dates type table of ty_dates,&lt;/P&gt;&lt;P&gt;      wa_dates type ty_Dates.&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 pernr begda form pa0000 into corresponding fields of table it_dates &lt;/P&gt;&lt;P&gt;for all entries in it_pa0000 &lt;/P&gt;&lt;P&gt;where pernr = it_pa0000-pernr&lt;/P&gt;&lt;P&gt;and massn = S1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;giving so i get bypassing  buffer package size  or upto rows expected after it_dates error occurs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Feb 2009 05:58:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-date-problem/m-p/5241459#M1211122</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-20T05:58:30Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching DATE problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-date-problem/m-p/5241460#M1211123</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;iam sorry....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have made the syntax....thats not the error.....&lt;/P&gt;&lt;P&gt;lemme try and let u know&lt;/P&gt;&lt;P&gt;thanx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Feb 2009 06:00:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-date-problem/m-p/5241460#M1211123</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-20T06:00:36Z</dc:date>
    </item>
  </channel>
</rss>

