<?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: Get file attributes in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-file-attributes/m-p/7166177#M1516522</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PARAMETERS: p_file TYPE string.

AT SELECTION-SCREEN.
  DATA: l_file TYPE pc_path,
        l_extn TYPE char3.

  IF sy-ucomm = 'ONLI'. "Execute Button(F8)
    l_file = p_file. "Assign seln-scr param 
    CALL FUNCTION 'PC_SPLIT_COMPLETE_FILENAME'
      EXPORTING
        complete_filename = l_file
      IMPORTING
        extension         = l_extn
      EXCEPTIONS
        invalid_drive     = 1
        invalid_extension = 2
        invalid_name      = 3
        invalid_path      = 4
        OTHERS            = 5.
    IF sy-subrc = 0.
      IF l_extn NE 'TXT'.
        MESSAGE 'Please use .TXT file only' TYPE 'E'.
      ENDIF.
    ENDIF.

  ENDIF.&lt;/CODE&gt;&lt;/PRE&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>Mon, 16 Aug 2010 12:16:21 GMT</pubDate>
    <dc:creator>SuhaSaha</dc:creator>
    <dc:date>2010-08-16T12:16:21Z</dc:date>
    <item>
      <title>Get file attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-file-attributes/m-p/7166170#M1516515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is to upload flat file from presentation server, if in case if end user changes xyz.pdf to xyz.txt,&lt;/P&gt;&lt;P&gt;i have to check the file type, if it is a text file, then i have to do further processing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Aug 2010 10:50:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-file-attributes/m-p/7166170#M1516515</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-16T10:50:42Z</dc:date>
    </item>
    <item>
      <title>Re: Get file attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-file-attributes/m-p/7166171#M1516516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the method: CL_GUI_FRONTEND_SERVICES=&amp;gt;FILE_OPEN_DIALOG pass '*.txt' to FILE_FILTER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL METHOD cl_gui_frontend_services=&amp;gt;file_open_dialog
    EXPORTING
      window_title     = 'Select Source File'
      default_filename = '*.txt'
      multiselection   = ' '
      file_filter      = '*.txt'
    CHANGING
      file_table       = l_itab
      rc               = l_subrc.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Suhas Saha on Aug 16, 2010 4:38 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Aug 2010 10:54:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-file-attributes/m-p/7166171#M1516516</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-08-16T10:54:06Z</dc:date>
    </item>
    <item>
      <title>Re: Get file attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-file-attributes/m-p/7166172#M1516517</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;The end user can rename the pdf file as text file  @  presentation server and if this file is uploaded using fm gui_upload, system gives to dump..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Aug 2010 11:57:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-file-attributes/m-p/7166172#M1516517</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-16T11:57:27Z</dc:date>
    </item>
    <item>
      <title>Re: Get file attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-file-attributes/m-p/7166173#M1516518</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;The end user can rename the pdf file as text file  @  presentation server and if this file is uploaded using fm gui_upload, system gives dump..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Aug 2010 11:57:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-file-attributes/m-p/7166173#M1516518</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-16T11:57:43Z</dc:date>
    </item>
    <item>
      <title>Re: Get file attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-file-attributes/m-p/7166174#M1516519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vemkatesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

  PARAMETERS : p_infile   TYPE rlgrap-filename.  "Input

AT SELECTION-SCREEN.
           
  IF p_pcfile CP '*.xls'.
    CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'         "Excel file upload Function module
  ELSEIF p_pcfile CP '*.csv' OR p_pcfile CP '*.txt'.
    CALL FUNCTION 'GUI_UPLOAD'.                                     "* Text File and CSV file Open Upload Function Module
 ENDIF.


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Prabhudas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Aug 2010 12:02:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-file-attributes/m-p/7166174#M1516519</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-16T12:02:57Z</dc:date>
    </item>
    <item>
      <title>Re: Get file attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-file-attributes/m-p/7166175#M1516520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do 2 gui uploads, one for the pdf file and one for the txt file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fit each one of these between TRY, and, 'ENDTRY'.... then you shouldn't get dump and one of the uploads will work?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Aug 2010 12:04:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-file-attributes/m-p/7166175#M1516520</guid>
      <dc:creator>former_member201275</dc:creator>
      <dc:date>2010-08-16T12:04:19Z</dc:date>
    </item>
    <item>
      <title>Re: Get file attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-file-attributes/m-p/7166176#M1516521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; CALL FUNCTION 'UPLOAD'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           filename                = pa_fich&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           filetype                = 'ASC'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           data_tab                = ti&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           conversion_error        = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           invalid_table_width     = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           invalid_type            = 3&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           YES_batch                = 4&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           unkYESwn_error           = 5&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           gui_refuse_filetransfer = 6&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           OTHERS                  = 7.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; DATA: lfs_file        TYPE file_table,&lt;/P&gt;&lt;P&gt;       l_fname_tab     LIKE table of lfs_file,&lt;/P&gt;&lt;P&gt;       l_rc            TYPE i,&lt;/P&gt;&lt;P&gt;       l_p_def_file    TYPE string,&lt;/P&gt;&lt;P&gt;       l_p_file        TYPE string,&lt;/P&gt;&lt;P&gt;       l_user_act      TYPE i.&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_OPEN_DIALOG&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;     DEFAULT_FILENAME          = l_p_def_file&lt;/P&gt;&lt;P&gt;    CHANGING&lt;/P&gt;&lt;P&gt;      FILE_TABLE               = l_fname_tab&lt;/P&gt;&lt;P&gt;      RC                       = l_rc&lt;/P&gt;&lt;P&gt;      USER_ACTION              = l_user_act&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      FILE_OPEN_DIALOG_FAILED = 1&lt;/P&gt;&lt;P&gt;      CNTL_ERROR              = 2&lt;/P&gt;&lt;P&gt;      ERROR_YES_GUI            = 3&lt;/P&gt;&lt;P&gt;      YEST_SUPPORTED_BY_GUI    = 4&lt;/P&gt;&lt;P&gt;      others                  = 5 .&lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0&lt;/P&gt;&lt;P&gt;        AND l_user_act &amp;lt;&amp;gt; CL_GUI_FRONTEND_SERVICES=&amp;gt;ACTION_CANCEL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    LOOP AT l_fname_tab  INTO lfs_file.&lt;/P&gt;&lt;P&gt;      l_p_file = lfs_file.&lt;/P&gt;&lt;P&gt;      EXIT.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;  Elseif l_user_act EQ cl_gui_frontend_services=&amp;gt;action_cancel.&lt;/P&gt;&lt;P&gt;    l_p_file = l_p_def_file.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt; l_p_def_file = pa_fich.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'GUI_UPLOAD'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;     FILENAME                      = l_p_file&lt;/P&gt;&lt;P&gt;     FILETYPE                      = 'ASC'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      DATA_TAB                     = ti&lt;/P&gt;&lt;P&gt;   EXCEPTIONS&lt;/P&gt;&lt;P&gt;     FILE_OPEN_ERROR               = 1&lt;/P&gt;&lt;P&gt;     FILE_READ_ERROR               = 2&lt;/P&gt;&lt;P&gt;     YES_BATCH                      = 3&lt;/P&gt;&lt;P&gt;     GUI_REFUSE_FILETRANSFER       = 4&lt;/P&gt;&lt;P&gt;     INVALID_TYPE                  = 5&lt;/P&gt;&lt;P&gt;     YES_AUTHORITY                  = 6&lt;/P&gt;&lt;P&gt;     UNKYESWN_ERROR                 = 7&lt;/P&gt;&lt;P&gt;     BAD_DATA_FORMAT               = 8&lt;/P&gt;&lt;P&gt;     HEADER_YEST_ALLOWED            = 9&lt;/P&gt;&lt;P&gt;     SEPARATOR_YEST_ALLOWED         = 10&lt;/P&gt;&lt;P&gt;     HEADER_TOO_LONG               = 11&lt;/P&gt;&lt;P&gt;     UNKYESWN_DP_ERROR              = 12&lt;/P&gt;&lt;P&gt;     ACCESS_DENIED                 = 13&lt;/P&gt;&lt;P&gt;     DP_OUT_OF_MEMORY              = 14&lt;/P&gt;&lt;P&gt;     DISK_FULL                     = 15&lt;/P&gt;&lt;P&gt;     DP_TIMEOUT                    = 16&lt;/P&gt;&lt;P&gt;     OTHERS                        = 17.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think it will helps u when the user dynamically entered file type pass that variable to file type.just try it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Aug 2010 12:07:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-file-attributes/m-p/7166176#M1516521</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-16T12:07:26Z</dc:date>
    </item>
    <item>
      <title>Re: Get file attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-file-attributes/m-p/7166177#M1516522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PARAMETERS: p_file TYPE string.

AT SELECTION-SCREEN.
  DATA: l_file TYPE pc_path,
        l_extn TYPE char3.

  IF sy-ucomm = 'ONLI'. "Execute Button(F8)
    l_file = p_file. "Assign seln-scr param 
    CALL FUNCTION 'PC_SPLIT_COMPLETE_FILENAME'
      EXPORTING
        complete_filename = l_file
      IMPORTING
        extension         = l_extn
      EXCEPTIONS
        invalid_drive     = 1
        invalid_extension = 2
        invalid_name      = 3
        invalid_path      = 4
        OTHERS            = 5.
    IF sy-subrc = 0.
      IF l_extn NE 'TXT'.
        MESSAGE 'Please use .TXT file only' TYPE 'E'.
      ENDIF.
    ENDIF.

  ENDIF.&lt;/CODE&gt;&lt;/PRE&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>Mon, 16 Aug 2010 12:16:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-file-attributes/m-p/7166177#M1516522</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-08-16T12:16:21Z</dc:date>
    </item>
    <item>
      <title>Re: Get file attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-file-attributes/m-p/7166178#M1516523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suhas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I dont think the problem is with the matter of extension, if so your earlier solution will work fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The end user can rename the pdf file as text file @ presentation server and if this file is uploaded using fm gui_upload, system gives to dump..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does that do anything with the content ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Aug 2010 12:34:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-file-attributes/m-p/7166178#M1516523</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-08-16T12:34:49Z</dc:date>
    </item>
    <item>
      <title>Re: Get file attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-file-attributes/m-p/7166179#M1516524</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;try this FM  &lt;STRONG&gt;GUI_GET_FILE_INFO&lt;/STRONG&gt; inorder to get tthe attributes of a file.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this answer will help you.&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;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Aug 2010 12:52:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-file-attributes/m-p/7166179#M1516524</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-16T12:52:00Z</dc:date>
    </item>
    <item>
      <title>Re: Get file attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-file-attributes/m-p/7166180#M1516525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Keshav,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OP's requirement: &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;i have to check the file type, if it is a text file, then i have to do further processing.&lt;SPAN __jive_macro_name="query"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the earlier post, we can restrict the user to select .TXT files only. But he can jolly well change the extension to .DOC, .XLS, .PDF in the selection-screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The OP wants to check that while executing the report only .TXT file needs to be processed.&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>Mon, 16 Aug 2010 13:09:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-file-attributes/m-p/7166180#M1516525</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-08-16T13:09:51Z</dc:date>
    </item>
    <item>
      <title>Re: Get file attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-file-attributes/m-p/7166181#M1516526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Stupid me ... i was thinking that the user will change the extension at system level and then upload &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Aug 2010 13:33:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-file-attributes/m-p/7166181#M1516526</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-08-16T13:33:45Z</dc:date>
    </item>
    <item>
      <title>Re: Get file attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-file-attributes/m-p/7166182#M1516527</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;Anyone provide solution to this issue, or any other way to solve this issue...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Aug 2010 11:05:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-file-attributes/m-p/7166182#M1516527</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-25T11:05:30Z</dc:date>
    </item>
    <item>
      <title>Re: Get file attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-file-attributes/m-p/7166183#M1516528</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;Upload the files in Binary mode. Filetype = BIN. Read first line of data tab and try to identify if it is pdf. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Aug 2010 11:49:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-file-attributes/m-p/7166183#M1516528</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-25T11:49:52Z</dc:date>
    </item>
  </channel>
</rss>

