<?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: Replacement for ws_query in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-for-ws-query/m-p/6574315#M1433299</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Give the file path through selection screen and check if its working!!&lt;/P&gt;&lt;P&gt;if u like to hardcode the string for which u want to return length then give a simpe word with out slashes or other character's and &lt;/P&gt;&lt;P&gt;check........&lt;/P&gt;&lt;P&gt;I guess this should work for u&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shravanthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Jan 2010 16:52:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-01-27T16:52:33Z</dc:date>
    <item>
      <title>Replacement for ws_query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-for-ws-query/m-p/6574301#M1433285</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;We are using WS_QUERY FM to get the length of file name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'WS_QUERY'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;filename = l_filename&lt;/P&gt;&lt;P&gt;query = 'FL'&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;return = return&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This FM is obslete in ECC 6.0. So is there any FM or method which provides the same functionality.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Sri ramya g.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2010 09:57:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-for-ws-query/m-p/6574301#M1433285</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-27T09:57:10Z</dc:date>
    </item>
    <item>
      <title>Re: Replacement for ws_query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-for-ws-query/m-p/6574302#M1433286</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    Try &lt;STRONG&gt;GUI_GET_FILE_INFO&lt;/STRONG&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;Bala Krishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2010 10:01:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-for-ws-query/m-p/6574302#M1433286</guid>
      <dc:creator>former_member585060</dc:creator>
      <dc:date>2010-01-27T10:01:34Z</dc:date>
    </item>
    <item>
      <title>Re: Replacement for ws_query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-for-ws-query/m-p/6574303#M1433287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use methods of class &lt;STRONG&gt;CL_GUI_FRONTEND_SERVICES like FILE_GET_ATTRIBUTES&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Abhii&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Abhii on Jan 27, 2010 11:07 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2010 10:06:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-for-ws-query/m-p/6574303#M1433287</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-27T10:06:59Z</dc:date>
    </item>
    <item>
      <title>Re: Replacement for ws_query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-for-ws-query/m-p/6574304#M1433288</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramya,&lt;/P&gt;&lt;P&gt;                Query 'FL' is for getting the file size and below is the replacement for ws_query in case of query 'FL'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data: l_filename1 type string,
      rc type i.
move l_filename to l_filename1.
CALL METHOD CL_GUI_FRONTEND_SERVICES=&amp;gt;FILE_GET_SIZE
  EXPORTING
    FILE_NAME            = l_filename1
  IMPORTING
    FILE_SIZE            = rc
  EXCEPTIONS
    FILE_GET_SIZE_FAILED = 1
    CNTL_ERROR           = 2
    ERROR_NO_GUI         = 3
    NOT_SUPPORTED_BY_GUI = 4
    others               = 5
        .
CALL METHOD CL_GUI_CFW=&amp;gt;FLUSH.

IF SY-SUBRC = 0.
  move rc to return.
ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2010 10:46:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-for-ws-query/m-p/6574304#M1433288</guid>
      <dc:creator>former_member206377</dc:creator>
      <dc:date>2010-01-27T10:46:37Z</dc:date>
    </item>
    <item>
      <title>Re: Replacement for ws_query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-for-ws-query/m-p/6574305#M1433289</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,	&lt;/P&gt;&lt;P&gt;I hope Vasuki S Patki  is correct	&lt;/P&gt;&lt;P&gt;	&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;santhosh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: santhosh kumar on Jan 27, 2010 12:04 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2010 10:59:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-for-ws-query/m-p/6574305#M1433289</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-27T10:59:02Z</dc:date>
    </item>
    <item>
      <title>Re: Replacement for ws_query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-for-ws-query/m-p/6574306#M1433290</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;Use class cl_gui_frontend_services and method &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD cl_gui_frontend_services=&amp;gt;FILE_GET_SIZE&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;SVJ&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Siddivinesh jogu on Jan 27, 2010 12:42 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2010 11:41:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-for-ws-query/m-p/6574306#M1433290</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-27T11:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: Replacement for ws_query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-for-ws-query/m-p/6574307#M1433291</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;Thanks for your reply.But the method is not giving size of file.It is returning 0 in RC of the method.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2010 11:55:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-for-ws-query/m-p/6574307#M1433291</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-27T11:55:07Z</dc:date>
    </item>
    <item>
      <title>Re: Replacement for ws_query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-for-ws-query/m-p/6574308#M1433292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1) Check sy-subrc value after the method is executed to check  if the method is returning any error&lt;/P&gt;&lt;P&gt;2) Check if the filename provided is correct&lt;/P&gt;&lt;P&gt;3) Have you called CALL METHOD CL_GUI_CFW=&amp;gt;FLUSH after the call to the method FILE_GET_SIZE ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Vasuki S Patki on Jan 27, 2010 5:33 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2010 12:03:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-for-ws-query/m-p/6574308#M1433292</guid>
      <dc:creator>former_member206377</dc:creator>
      <dc:date>2010-01-27T12:03:34Z</dc:date>
    </item>
    <item>
      <title>Re: Replacement for ws_query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-for-ws-query/m-p/6574309#M1433293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I called the method  CL_GUI_CFW=&amp;gt;FLUSH  after File_get_size and sy-subrc = 0 also.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2010 12:07:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-for-ws-query/m-p/6574309#M1433293</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-27T12:07:52Z</dc:date>
    </item>
    <item>
      <title>Re: Replacement for ws_query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-for-ws-query/m-p/6574310#M1433294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try using &lt;STRONG&gt;GUI_GET_FILE_INFO&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; data file_path  like rlgrap-filename."später verlängern
data filesize   type i

    call function 'GUI_GET_FILE_INFO'
         exporting
              fname          = file_path
         importing
              file_size      = filesize
         exceptions
              fileinfo_error = 1.
    move filesize            to object_hd_display-objlen.
    move reference_type_file to object_hd_display-extct.
    perform mom_object_insert.
    if f_cancelled is initial.
*     Object was created successfully
      move: crea                     to objects-okcode,
            object_hd_display-objnam to objects-objnam,
            object_hd_display-objdes to objects-objdes.
      modify_objects_index current_line.
    endif.
  endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Abhii&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2010 12:08:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-for-ws-query/m-p/6574310#M1433294</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-27T12:08:53Z</dc:date>
    </item>
    <item>
      <title>Re: Replacement for ws_query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-for-ws-query/m-p/6574311#M1433295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you pls post your code here.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2010 12:09:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-for-ws-query/m-p/6574311#M1433295</guid>
      <dc:creator>former_member206377</dc:creator>
      <dc:date>2010-01-27T12:09:00Z</dc:date>
    </item>
    <item>
      <title>Re: Replacement for ws_query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-for-ws-query/m-p/6574312#M1433296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But GUI_GET_FILE_INFO is also a obsolete FM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2010 12:09:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-for-ws-query/m-p/6574312#M1433296</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-27T12:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: Replacement for ws_query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-for-ws-query/m-p/6574313#M1433297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data:V_FILENAME        LIKE RLGRAP-FILENAME value 'C:\Documents and Settings\narayanp\Desktop\pass.txt',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     V_RETURN          TYPE  I.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:L_FILE TYPE STRING,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     RC TYPE I.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   CALL FUNCTION 'WS_QUERY'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             FILENAME = V_FILENAME&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             QUERY    = 'FL'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             RETURN   = V_RETURN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        EXCEPTIONS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             OTHERS   = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*MOVE V_FILENAME TO L_FILE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*CALL METHOD CL_GUI_FRONTEND_SERVICES=&amp;gt;FILE_GET_SIZE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   FILE_NAME            = L_FILE&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   FILE_SIZE            = RC&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   FILE_GET_SIZE_FAILED = 1&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   CNTL_ERROR           = 2&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   ERROR_NO_GUI         = 3&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   NOT_SUPPORTED_BY_GUI = 4&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   others               = 5&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       .&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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;&lt;/P&gt;&lt;P&gt;*CALL METHOD CL_GUI_CFW=&amp;gt;FLUSH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;   CNTL_SYSTEM_ERROR = 1&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;   CNTL_ERROR        = 2&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;   others            = 3&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       .&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*MOVE RC TO V_RETURN .&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;WRITE V_RETURN .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2010 12:12:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-for-ws-query/m-p/6574313#M1433297</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-27T12:12:04Z</dc:date>
    </item>
    <item>
      <title>Re: Replacement for ws_query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-for-ws-query/m-p/6574314#M1433298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramya,&lt;/P&gt;&lt;P&gt;                 Pls check the path that you have provided, as I get the right file size with the code that you have provided. &lt;/P&gt;&lt;P&gt;I uncommented the replacement part ( CL_GUI_FRONTEND_SERVICES=&amp;gt;FILE_GET_SIZE) that you have commented in your post, and able to get teh file size, can you please check again,.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vasuki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2010 12:19:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-for-ws-query/m-p/6574314#M1433298</guid>
      <dc:creator>former_member206377</dc:creator>
      <dc:date>2010-01-27T12:19:53Z</dc:date>
    </item>
    <item>
      <title>Re: Replacement for ws_query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-for-ws-query/m-p/6574315#M1433299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Give the file path through selection screen and check if its working!!&lt;/P&gt;&lt;P&gt;if u like to hardcode the string for which u want to return length then give a simpe word with out slashes or other character's and &lt;/P&gt;&lt;P&gt;check........&lt;/P&gt;&lt;P&gt;I guess this should work for u&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shravanthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2010 16:52:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-for-ws-query/m-p/6574315#M1433299</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-27T16:52:33Z</dc:date>
    </item>
  </channel>
</rss>

