<?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: Extended programme check in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-programme-check/m-p/5369565#M1235333</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; I am counting only the values in the field ECNT which is error count and warnings are populated in WCNT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you excluded the programs where the error count = 0 so that they are not downloaded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you paste the code extract ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Apr 2009 07:17:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-07T07:17:53Z</dc:date>
    <item>
      <title>Extended programme check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-programme-check/m-p/5369559#M1235327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus,&lt;/P&gt;&lt;P&gt;               I have a requirement. Its simple.. I need to check EXTENDED PROGRAM CHECK for 2500 programs... For that i have written a BDC program . In that program i passed the file(containing all the program names) , then i downloaded the output and i manually checked the output whether it contains any error....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it is tedious task to manually check.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What i want is that i want only the erroneous program as the output.... Is there any way in which i can pass the erroneous program as the output.. this will help me not to check every program manually whether it contains error or not.. Plsss help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2009 05:54:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-programme-check/m-p/5369559#M1235327</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-07T05:54:04Z</dc:date>
    </item>
    <item>
      <title>Re: Extended programme check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-programme-check/m-p/5369560#M1235328</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;Have a look at the function module EXTENDED_PROGRAM_CHECK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The output table &lt;STRONG&gt;IT_SLIN_RESULT_STAT-SET&lt;/STRONG&gt; contains the count of errors warnings etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can build a logic with this data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPE-POOLS SLIN.

DATA : IT_SLIN_RESULT TYPE SLIN_RESULT,
       IT_SLIN_RESULT_STAT TYPE SLIN_RESULT_STAT.

CALL FUNCTION 'EXTENDED_PROGRAM_CHECK'
  EXPORTING
    COMMENT_FLAG       = SLIN_TRUE
*   LOAD_CHECK         = SLIN_FALSE
*   CALL_CNTX          = 'S'
*   CACHE_USE          = SLIN_CACHE_USE-ALL
    PROGRAM            = 'ZRR_TEST_04'
*   TEST_FLAGS         =
    TEST_ALL           = SLIN_TRUE
*   TEST_BRE           = SLIN_FALSE
*   TEST_CAL           = SLIN_FALSE
*   TEST_DAT           = SLIN_FALSE
*   TEST_DYC           = SLIN_FALSE
*   TEST_GES           = SLIN_FALSE
*   TEST_MES           = SLIN_FALSE
*   TEST_OPF           = SLIN_FALSE
*   TEST_PER           = SLIN_FALSE
*   TEST_PFS           = SLIN_FALSE
*   TEST_UNR           = SLIN_FALSE
*   TEST_STE           = SLIN_FALSE
*   TEST_WRN           = SLIN_FALSE
*   TEST_TXT           = SLIN_FALSE
*   TEST_SUB           = SLIN_FALSE
*   TEST_AUT           = SLIN_FALSE
*   TEST_LOA           = SLIN_FALSE
*   TEST_MLS           = SLIN_FALSE
*   TEST_PAC           = SLIN_FALSE
  IMPORTING
    RESULT             = IT_SLIN_RESULT
    RESULT_STAT        = IT_SLIN_RESULT_STAT
* CHANGING
*   DEPENDENCIES       =
* EXCEPTIONS
*   FATAL_ERROR        = 1
*   OTHERS             = 2
          .
IF SY-SUBRC &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rajvansh Ravi on Apr 7, 2009 8:01 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2009 05:59:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-programme-check/m-p/5369560#M1235328</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-07T05:59:03Z</dc:date>
    </item>
    <item>
      <title>Re: Extended programme check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-programme-check/m-p/5369561#M1235329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many Thanks a lot.. i understand your logic.. but i have lost the touch of ABAP programming.. it has been one year now.. can u please help me in gving more information to complete this task&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2009 06:36:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-programme-check/m-p/5369561#M1235329</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-07T06:36:49Z</dc:date>
    </item>
    <item>
      <title>Re: Extended programme check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-programme-check/m-p/5369562#M1235330</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;Just check if this works. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have done it for 1 program. So Loop through your program list and the variable ERROR_CNT should contain the number of errors for each program. If ERROR_CNT &amp;gt; 0 then you can download the program else ignore the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I checked for one of my programs with 2 errors related to OO context and the field WOO of table IT_SLIN_RESULT_STAT-SET contained 2. So error count ERROR_CNT was 2 in my case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPE-POOLS SLIN.

DATA : IT_SLIN_RESULT      TYPE SLIN_RESULT,
       IT_SLIN_RESULT_STAT TYPE SLIN_RESULT_STAT,
       WA_SET              LIKE LINE OF IT_SLIN_RESULT_STAT-SET,
       ERROR_CNT           TYPE I.

CALL FUNCTION 'EXTENDED_PROGRAM_CHECK'
  EXPORTING
    COMMENT_FLAG       = SLIN_TRUE
*   LOAD_CHECK         = SLIN_FALSE
*   CALL_CNTX          = 'S'
*   CACHE_USE          = SLIN_CACHE_USE-ALL
    PROGRAM            = 'ZRR_TEST_04'
*   TEST_FLAGS         =
    TEST_ALL           = SLIN_TRUE
*   TEST_BRE           = SLIN_FALSE
*   TEST_CAL           = SLIN_FALSE
*   TEST_DAT           = SLIN_FALSE
*   TEST_DYC           = SLIN_FALSE
*   TEST_GES           = SLIN_FALSE
*   TEST_MES           = SLIN_FALSE
*   TEST_OPF           = SLIN_FALSE
*   TEST_PER           = SLIN_FALSE
*   TEST_PFS           = SLIN_FALSE
*   TEST_UNR           = SLIN_FALSE
*   TEST_STE           = SLIN_FALSE
*   TEST_WRN           = SLIN_FALSE
*   TEST_TXT           = SLIN_FALSE
*   TEST_SUB           = SLIN_FALSE
*   TEST_AUT           = SLIN_FALSE
*   TEST_LOA           = SLIN_FALSE
*   TEST_MLS           = SLIN_FALSE
*   TEST_PAC           = SLIN_FALSE
  IMPORTING
    RESULT             = IT_SLIN_RESULT
    RESULT_STAT        = IT_SLIN_RESULT_STAT
* CHANGING
*   DEPENDENCIES       =
* EXCEPTIONS
*   FATAL_ERROR        = 1
*   OTHERS             = 2
          .
IF SY-SUBRC EQ 0.

  CLEAR ERROR_CNT.

  LOOP AT IT_SLIN_RESULT_STAT-SET INTO WA_SET.

    ERROR_CNT = ERROR_CNT + WA_SET-ECNT.
  ENDLOOP.

ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2009 06:59:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-programme-check/m-p/5369562#M1235330</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-07T06:59:30Z</dc:date>
    </item>
    <item>
      <title>Re: Extended programme check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-programme-check/m-p/5369563#M1235331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;       Once again thanks... i checked the program.. I want only error programs but our program will download even if there is warning.. it is counting the warning too.. how do we exclude the warning .. i want only error one.. This program is perfect to find non erroneous and non warning programs.. Plssss help....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2009 07:11:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-programme-check/m-p/5369563#M1235331</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-07T07:11:58Z</dc:date>
    </item>
    <item>
      <title>Re: Extended programme check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-programme-check/m-p/5369564#M1235332</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;why you don't use the standard transaction SAMT? It's what you want!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ivan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2009 07:14:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-programme-check/m-p/5369564#M1235332</guid>
      <dc:creator>_IvanFemia_</dc:creator>
      <dc:date>2009-04-07T07:14:47Z</dc:date>
    </item>
    <item>
      <title>Re: Extended programme check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-programme-check/m-p/5369565#M1235333</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; I am counting only the values in the field ECNT which is error count and warnings are populated in WCNT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you excluded the programs where the error count = 0 so that they are not downloaded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you paste the code extract ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2009 07:17:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-programme-check/m-p/5369565#M1235333</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-07T07:17:53Z</dc:date>
    </item>
    <item>
      <title>Re: Extended programme check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-programme-check/m-p/5369566#M1235334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes i did that.... i know its counting warning programs too... But is there any way in which we can download only error programs ( No warning programs)..  In our case its downloading both Error and warning... I have used your code only wit an additional loop for download...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2009 07:24:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-programme-check/m-p/5369566#M1235334</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-07T07:24:02Z</dc:date>
    </item>
    <item>
      <title>Re: Extended programme check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-programme-check/m-p/5369567#M1235335</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;Can you give me the code extract for the program were the warnings are also considered(i.e the code for which you are running the check), so that i can check in my system how the table is populated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2009 07:34:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-programme-check/m-p/5369567#M1235335</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-07T07:34:49Z</dc:date>
    </item>
    <item>
      <title>Re: Extended programme check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-programme-check/m-p/5369568#M1235336</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;just  modify this piece of code in above program..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Data:  wa_result           like line of  IT_SLIN_RESULT.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC EQ 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;DELETE IT_SLIN_RESULT WHERE KIND NE 'A'&lt;/STRONG&gt;.                  " errors&lt;/P&gt;&lt;P&gt;  CLEAR ERROR_CNT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;loop at IT_SLIN_RESULT into wa_result.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    LOOP AT IT_SLIN_RESULT_STAT-SET INTO WA_SET &lt;STRONG&gt;where tid eq wa_result-tid&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ERROR_CNT = ERROR_CNT + WA_SET-ECNT.&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;STRONG&gt;endloop.&lt;/STRONG&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;Edited by: Rammohan Nagam on Apr 7, 2009 9:37 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2009 07:36:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-programme-check/m-p/5369568#M1235336</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-07T07:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: Extended programme check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-programme-check/m-p/5369569#M1235337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sanu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just checked the trxn. &lt;STRONG&gt;SAMT&lt;/STRONG&gt;. Did u try using it? Here you can create program sets (which will contain all your programs) &amp;amp; then execute the trxn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does this not fulfill your requirement?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2009 07:40:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-programme-check/m-p/5369569#M1235337</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-04-07T07:40:26Z</dc:date>
    </item>
    <item>
      <title>Re: Extended programme check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-programme-check/m-p/5369570#M1235338</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;Instead of adding the error count you can also check the field &lt;STRONG&gt;IT_SLIN_RESULT_STAT-RES_ECNT&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check if this count is correct&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just checked &lt;STRONG&gt;SAMT&lt;/STRONG&gt; .There is option to filter out only errors. Seems like a better option to use this &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rajvansh Ravi on Apr 7, 2009 9:44 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2009 07:40:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-programme-check/m-p/5369570#M1235338</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-07T07:40:32Z</dc:date>
    </item>
    <item>
      <title>Re: Extended programme check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-programme-check/m-p/5369571#M1235339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah thats rite... its solved.. thanks a lot for helping me.. One more thing.. Is there any difference between Extended program check and Standard Extended program check&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2009 08:18:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-programme-check/m-p/5369571#M1235339</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-07T08:18:03Z</dc:date>
    </item>
    <item>
      <title>Re: Extended programme check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-programme-check/m-p/5369572#M1235340</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; You mean "Perform Std Check" in SLIN transaction.?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; There are differences "Perform Std Check" does not pick out all the errors by only critical ones.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example in the below code the TABLES parameter is actually &lt;STRONG&gt;DATA_TAB&lt;/STRONG&gt; but misspelt as DATA_TA. This does not cause any syntax errors but at runtime causes dump. Try Perform Std Check for the below code in SLIN transaction&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA : ITAB TYPE TABLE OF STRING.

CALL FUNCTION 'GUI_DOWNLOAD'
  EXPORTING
    FILENAME                        = 'C:\'
  TABLES
    DATA_TA                         = ITAB
*   FIELDNAMES                      =
* EXCEPTIONS
*   FILE_WRITE_ERROR                = 1
*   NO_BATCH                        = 2
*   GUI_REFUSE_FILETRANSFER         = 3
*   INVALID_TYPE                    = 4
*   NO_AUTHORITY                    = 5
*   UNKNOWN_ERROR                   = 6
*   HEADER_NOT_ALLOWED              = 7
*   SEPARATOR_NOT_ALLOWED           = 8
*   FILESIZE_NOT_ALLOWED            = 9
*   HEADER_TOO_LONG                 = 10
*   DP_ERROR_CREATE                 = 11
*   DP_ERROR_SEND                   = 12
*   DP_ERROR_WRITE                  = 13
*   UNKNOWN_DP_ERROR                = 14
*   ACCESS_DENIED                   = 15
*   DP_OUT_OF_MEMORY                = 16
*   DISK_FULL                       = 17
*   DP_TIMEOUT                      = 18
*   FILE_NOT_FOUND                  = 19
*   DATAPROVIDER_EXCEPTION          = 20
*   CONTROL_FLUSH_ERROR             = 21
*   OTHERS                          = 22
          .
IF SY-SUBRC &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2009 08:48:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-programme-check/m-p/5369572#M1235340</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-07T08:48:25Z</dc:date>
    </item>
  </channel>
</rss>

