<?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: TIME_OUT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8541855#M1657412</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sekhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you traces where it is taking more time.Check the tables declaration also.From flag tables delete if there is any duplicates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Madhu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: madhurao123 on Feb 1, 2012 9:23 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 Feb 2012 03:53:13 GMT</pubDate>
    <dc:creator>madhu_vadlamani</dc:creator>
    <dc:date>2012-02-01T03:53:13Z</dc:date>
    <item>
      <title>TIME_OUT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8541854#M1657411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Team&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please check the below mentioned code and suggest me the solution, how to resolve TIME_OUT error issue &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code works like,&lt;/P&gt;&lt;P&gt;its looping 4 times &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1 st time, it takes it_bsis - 500 records and cross check with table faglflexa and append into itab&lt;/P&gt;&lt;P&gt;2nd time, it takesit_bsas1 - 3500000 records and cross check with table faglflexa and append into itab - here TIME_OUT error fires&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;find the below mentioned code for your reference&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO c_4 TIMES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR: gwa_whr_line.&lt;/P&gt;&lt;P&gt;REFRESH git_whr.&lt;/P&gt;&lt;P&gt;UNASSIGN &amp;lt;gfs_bsis_bsas&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE sy-index.&lt;/P&gt;&lt;P&gt;WHEN c_1.&lt;/P&gt;&lt;P&gt;CHECK NOT it_bsis IS INITIAL.&lt;/P&gt;&lt;P&gt;ASSIGN it_bsis TO &amp;lt;gfs_bsis_bsas&amp;gt;.&lt;/P&gt;&lt;P&gt;lv_flag = c_x.&lt;/P&gt;&lt;P&gt;WHEN c_2.&lt;/P&gt;&lt;P&gt;CHECK NOT it_bsas IS INITIAL.&lt;/P&gt;&lt;P&gt;ASSIGN it_bsas TO &amp;lt;gfs_bsis_bsas&amp;gt;.&lt;/P&gt;&lt;P&gt;lv_flag = c_x.&lt;/P&gt;&lt;P&gt;WHEN c_3.&lt;/P&gt;&lt;P&gt;CHECK NOT it_bsak IS INITIAL.&lt;/P&gt;&lt;P&gt;ASSIGN it_bsak TO &amp;lt;gfs_bsis_bsas&amp;gt;.&lt;/P&gt;&lt;P&gt;CONCATENATE 'BUZEI =' '&amp;lt;GFS_BSIS_BSAS&amp;gt;-BUZEI' INTO gwa_whr_line SEPARATED BY space.&lt;/P&gt;&lt;P&gt;lv_flag = c_x.&lt;/P&gt;&lt;P&gt;WHEN c_4.&lt;/P&gt;&lt;P&gt;CHECK NOT it_bsad IS INITIAL.&lt;/P&gt;&lt;P&gt;ASSIGN it_bsad TO &amp;lt;gfs_bsis_bsas&amp;gt;.&lt;/P&gt;&lt;P&gt;lv_flag = c_x.&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHECK lv_flag = c_x.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not s_prctr[] is initial.&lt;/P&gt;&lt;P&gt;SELECT RYEAR&lt;/P&gt;&lt;P&gt;DOCNR&lt;/P&gt;&lt;P&gt;RBUKRS&lt;/P&gt;&lt;P&gt;RTCUR&lt;/P&gt;&lt;P&gt;RACCT&lt;/P&gt;&lt;P&gt;PRCTR&lt;/P&gt;&lt;P&gt;WSL&lt;/P&gt;&lt;P&gt;DRCRK&lt;/P&gt;&lt;P&gt;BUDAT&lt;/P&gt;&lt;P&gt;BUZEI&lt;/P&gt;&lt;P&gt;FROM faglflexa&lt;/P&gt;&lt;P&gt;APPENDING TABLE git_faglflexa&lt;/P&gt;&lt;P&gt;FOR ALL ENTRIES IN &amp;lt;gfs_bsis_bsas&amp;gt;&lt;/P&gt;&lt;P&gt;WHERE ryear = &amp;lt;gfs_bsis_bsas&amp;gt;-gjahr&lt;/P&gt;&lt;P&gt;AND rbukrs = &amp;lt;gfs_bsis_bsas&amp;gt;-bukrs&lt;/P&gt;&lt;P&gt;AND docnr = &amp;lt;gfs_bsis_bsas&amp;gt;-belnr&lt;/P&gt;&lt;P&gt;AND (gwa_whr_line)&lt;/P&gt;&lt;P&gt;AND prctr IN s_prctr.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;SELECT ryear&lt;/P&gt;&lt;P&gt;docnr&lt;/P&gt;&lt;P&gt;rbukrs&lt;/P&gt;&lt;P&gt;rtcur&lt;/P&gt;&lt;P&gt;racct&lt;/P&gt;&lt;P&gt;prctr&lt;/P&gt;&lt;P&gt;wsl&lt;/P&gt;&lt;P&gt;drcrk&lt;/P&gt;&lt;P&gt;budat&lt;/P&gt;&lt;P&gt;buzei&lt;/P&gt;&lt;P&gt;FROM faglflexa&lt;/P&gt;&lt;P&gt;APPENDING TABLE git_faglflexa&lt;/P&gt;&lt;P&gt;FOR ALL ENTRIES IN &amp;lt;gfs_bsis_bsas&amp;gt;&lt;/P&gt;&lt;P&gt;WHERE ryear = &amp;lt;gfs_bsis_bsas&amp;gt;-gjahr&lt;/P&gt;&lt;P&gt;AND docnr = &amp;lt;gfs_bsis_bsas&amp;gt;-belnr&lt;/P&gt;&lt;P&gt;AND rbukrs = &amp;lt;gfs_bsis_bsas&amp;gt;-bukrs&lt;/P&gt;&lt;P&gt;AND (gwa_whr_line).&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear lv_flag.&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance &lt;/P&gt;&lt;P&gt;Sekhar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Moderator Message: Duplicate post. Thread locked.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Suhas Saha on Feb 1, 2012 10:12 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Feb 2012 03:41:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8541854#M1657411</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-01T03:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: TIME_OUT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8541855#M1657412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sekhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you traces where it is taking more time.Check the tables declaration also.From flag tables delete if there is any duplicates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Madhu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: madhurao123 on Feb 1, 2012 9:23 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Feb 2012 03:53:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8541855#M1657412</guid>
      <dc:creator>madhu_vadlamani</dc:creator>
      <dc:date>2012-02-01T03:53:13Z</dc:date>
    </item>
  </channel>
</rss>

