<?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: Attachment Functionality Required in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-functionality-required/m-p/1473095#M222168</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sourabh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First i think &amp;lt;b&amp;gt;'C:\YServer.txt' is not a directory&amp;lt;/b&amp;gt;!&lt;/P&gt;&lt;P&gt;I think DIR = &amp;lt;b&amp;gt;'C:\'&amp;lt;/b&amp;gt; ist ok.&lt;/P&gt;&lt;P&gt;But do you looking for txt or doc files.&lt;/P&gt;&lt;P&gt;You can change &amp;lt;b&amp;gt;FILTER = '*.DOC'&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;To &amp;lt;b&amp;gt;FILTER = '&lt;STRONG&gt;.&lt;/STRONG&gt;'&amp;lt;/b&amp;gt;, than you see all files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 Aug 2006 11:25:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-31T11:25:37Z</dc:date>
    <item>
      <title>Attachment Functionality Required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-functionality-required/m-p/1473089#M222162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;  I have the following requirement:-&lt;/P&gt;&lt;P&gt;- We have a Dialogue program in which we need to add a push button 'Attachment'.&lt;/P&gt;&lt;P&gt;- Clicking on that push button should allow me to browse through the screen and select the required file and attach it.&lt;/P&gt;&lt;P&gt;- After it is attached double clicking on that doc. should allow me to view that file.&lt;/P&gt;&lt;P&gt;         Since I am very new in ABAP it would be great if someone could provide a helpful hand.Will be thankful to you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;Sourabh Verma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2006 10:47:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-functionality-required/m-p/1473089#M222162</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-30T10:47:58Z</dc:date>
    </item>
    <item>
      <title>Re: Attachment Functionality Required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-functionality-required/m-p/1473090#M222163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sourabh,&lt;/P&gt;&lt;P&gt;here a little report wich shows files.&lt;/P&gt;&lt;P&gt;when you click an the Filename it will be shown&lt;/P&gt;&lt;P&gt;with the application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZGRO_TESTT MESSAGE-ID ZZ.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;DATA: DIR        TYPE STRING.&lt;/P&gt;&lt;P&gt;DATA: FILE_TABLE TYPE FILETABLE.&lt;/P&gt;&lt;P&gt;DATA: COUNT TYPE I.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;DATA: APPL       TYPE STRING.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;DATA: APP1(80).&lt;/P&gt;&lt;P&gt;DATA: WA_FILE_TABLE(80).&lt;/P&gt;&lt;P&gt;DATA: CURSORFIELD(20).&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  &amp;lt;b&amp;gt;DIR = 'D:\'.&amp;lt;/b&amp;gt;   "Here your DIR&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  CALL METHOD CL_GUI_FRONTEND_SERVICES=&amp;gt;DIRECTORY_LIST_FILES&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      DIRECTORY      = DIR&lt;/P&gt;&lt;P&gt;      FILTER         = '*.DOC'   "update if you need&lt;/P&gt;&lt;P&gt;      FILES_ONLY     = 'X'&lt;/P&gt;&lt;P&gt;    CHANGING&lt;/P&gt;&lt;P&gt;      FILE_TABLE     = FILE_TABLE&lt;/P&gt;&lt;P&gt;      COUNT          = COUNT.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  LOOP AT FILE_TABLE INTO WA_FILE_TABLE.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;    CONCATENATE DIR WA_FILE_TABLE INTO APP1.&lt;/P&gt;&lt;P&gt;    WRITE: / 'Datei:', APP1 COLOR COL_NEGATIVE HOTSPOT ON .&lt;/P&gt;&lt;P&gt;    HIDE: APP1.&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;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  GET CURSOR FIELD CURSORFIELD.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  CASE CURSORFIELD.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;    WHEN 'APP1'.&lt;/P&gt;&lt;P&gt;      APPL = APP1.&lt;/P&gt;&lt;P&gt;      CALL METHOD CL_GUI_FRONTEND_SERVICES=&amp;gt;EXECUTE&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      APPLICATION   = APPL.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2006 11:46:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-functionality-required/m-p/1473090#M222163</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-30T11:46:05Z</dc:date>
    </item>
    <item>
      <title>Re: Attachment Functionality Required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-functionality-required/m-p/1473091#M222164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dieter!&lt;/P&gt;&lt;P&gt;  I tried running this report.But no output is coming.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2006 10:06:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-functionality-required/m-p/1473091#M222164</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-31T10:06:22Z</dc:date>
    </item>
    <item>
      <title>Re: Attachment Functionality Required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-functionality-required/m-p/1473092#M222165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sourabh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do you update the field DIR = 'D:\'?&lt;/P&gt;&lt;P&gt;look at your workstation and go&lt;/P&gt;&lt;P&gt;to your Directory where the .DOC-Files are stored.&lt;/P&gt;&lt;P&gt;This Directory must be the DIR-Field in Abap.&lt;/P&gt;&lt;P&gt;F. Exampl. C:\TEMP\DOCFILES.&lt;/P&gt;&lt;P&gt;DIR must be 'C:\TEMP\DOCFILES\'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2006 10:30:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-functionality-required/m-p/1473092#M222165</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-31T10:30:08Z</dc:date>
    </item>
    <item>
      <title>Re: Attachment Functionality Required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-functionality-required/m-p/1473093#M222166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dieter!&lt;/P&gt;&lt;P&gt;  This is how i ran the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  Z57340TEST9                             .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*REPORT ZGRO_TESTT MESSAGE-ID ZZ.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;DATA: DIR TYPE STRING.&lt;/P&gt;&lt;P&gt;DATA: FILE_TABLE TYPE FILETABLE.&lt;/P&gt;&lt;P&gt;DATA: COUNT TYPE I.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;DATA: APPL TYPE STRING.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;DATA: APP1(80).&lt;/P&gt;&lt;P&gt;DATA: WA_FILE_TABLE(80).&lt;/P&gt;&lt;P&gt;DATA: CURSORFIELD(20).&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;DIR = 'C:\YServer'. "Here your DIR&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;CALL METHOD CL_GUI_FRONTEND_SERVICES=&amp;gt;DIRECTORY_LIST_FILES&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;DIRECTORY = DIR&lt;/P&gt;&lt;P&gt;FILTER = '*.DOC' "update if you need&lt;/P&gt;&lt;P&gt;FILES_ONLY = 'X'&lt;/P&gt;&lt;P&gt;CHANGING&lt;/P&gt;&lt;P&gt;FILE_TABLE = FILE_TABLE&lt;/P&gt;&lt;P&gt;COUNT = COUNT.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;LOOP AT FILE_TABLE INTO WA_FILE_TABLE.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;CONCATENATE DIR WA_FILE_TABLE INTO APP1.&lt;/P&gt;&lt;P&gt;WRITE: / 'Datei:', APP1 COLOR COL_NEGATIVE HOTSPOT ON .&lt;/P&gt;&lt;P&gt;HIDE: APP1.&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;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;GET CURSOR FIELD CURSORFIELD.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;CASE CURSORFIELD.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;WHEN 'APP1'.&lt;/P&gt;&lt;P&gt;APPL = APP1.&lt;/P&gt;&lt;P&gt;CALL METHOD CL_GUI_FRONTEND_SERVICES=&amp;gt;EXECUTE&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;APPLICATION = APPL.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;ENDCASE.&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;Sourabh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2006 11:16:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-functionality-required/m-p/1473093#M222166</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-31T11:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: Attachment Functionality Required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-functionality-required/m-p/1473094#M222167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry Dieter!&lt;/P&gt;&lt;P&gt;  This is the corrrect code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  Z57340TEST9                             .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*REPORT ZGRO_TESTT MESSAGE-ID ZZ.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;DATA: DIR TYPE STRING.&lt;/P&gt;&lt;P&gt;DATA: FILE_TABLE TYPE FILETABLE.&lt;/P&gt;&lt;P&gt;DATA: COUNT TYPE I.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;DATA: APPL TYPE STRING.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;DATA: APP1(80).&lt;/P&gt;&lt;P&gt;DATA: WA_FILE_TABLE(80).&lt;/P&gt;&lt;P&gt;DATA: CURSORFIELD(20).&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;DIR = 'C:\YServer.txt'. "Here your DIR&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;CALL METHOD CL_GUI_FRONTEND_SERVICES=&amp;gt;DIRECTORY_LIST_FILES&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;DIRECTORY = DIR&lt;/P&gt;&lt;P&gt;FILTER = '*.DOC' "update if you need&lt;/P&gt;&lt;P&gt;FILES_ONLY = 'X'&lt;/P&gt;&lt;P&gt;CHANGING&lt;/P&gt;&lt;P&gt;FILE_TABLE = FILE_TABLE&lt;/P&gt;&lt;P&gt;COUNT = COUNT.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;LOOP AT FILE_TABLE INTO WA_FILE_TABLE.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;CONCATENATE DIR WA_FILE_TABLE INTO APP1.&lt;/P&gt;&lt;P&gt;WRITE: / 'Datei:', APP1 COLOR COL_NEGATIVE HOTSPOT ON .&lt;/P&gt;&lt;P&gt;HIDE: APP1.&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;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;GET CURSOR FIELD CURSORFIELD.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;CASE CURSORFIELD.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;WHEN 'APP1'.&lt;/P&gt;&lt;P&gt;APPL = APP1.&lt;/P&gt;&lt;P&gt;CALL METHOD CL_GUI_FRONTEND_SERVICES=&amp;gt;EXECUTE&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;APPLICATION = APPL.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2006 11:19:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-functionality-required/m-p/1473094#M222167</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-31T11:19:10Z</dc:date>
    </item>
    <item>
      <title>Re: Attachment Functionality Required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-functionality-required/m-p/1473095#M222168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sourabh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First i think &amp;lt;b&amp;gt;'C:\YServer.txt' is not a directory&amp;lt;/b&amp;gt;!&lt;/P&gt;&lt;P&gt;I think DIR = &amp;lt;b&amp;gt;'C:\'&amp;lt;/b&amp;gt; ist ok.&lt;/P&gt;&lt;P&gt;But do you looking for txt or doc files.&lt;/P&gt;&lt;P&gt;You can change &amp;lt;b&amp;gt;FILTER = '*.DOC'&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;To &amp;lt;b&amp;gt;FILTER = '&lt;STRONG&gt;.&lt;/STRONG&gt;'&amp;lt;/b&amp;gt;, than you see all files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2006 11:25:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-functionality-required/m-p/1473095#M222168</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-31T11:25:37Z</dc:date>
    </item>
    <item>
      <title>Re: Attachment Functionality Required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-functionality-required/m-p/1473096#M222169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sourabh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do you have still any problems with&lt;/P&gt;&lt;P&gt;this topic?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Sep 2006 11:06:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-functionality-required/m-p/1473096#M222169</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-01T11:06:11Z</dc:date>
    </item>
    <item>
      <title>Re: Attachment Functionality Required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-functionality-required/m-p/1473097#M222170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dieter!&lt;/P&gt;&lt;P&gt;  Your help was indeed very helpful.Atleat I got some clue.But still my purpose is not excatly solved and I have to explore a lot.&lt;/P&gt;&lt;P&gt;    Currently stuck up in some other issue.Will be requiring your help very shortly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;Sourabh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Sep 2006 11:39:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-functionality-required/m-p/1473097#M222170</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-01T11:39:45Z</dc:date>
    </item>
    <item>
      <title>Re: Attachment Functionality Required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-functionality-required/m-p/1473098#M222171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dieter!&lt;/P&gt;&lt;P&gt;   The code here gives me all the files that are in C:\.&lt;/P&gt;&lt;P&gt;Basically, I want the functionality through which i can browse through my desktop and select a particular file through C:\ or D:\ or Desktop ,depending on the requirement.&lt;/P&gt;&lt;P&gt;    Secondly i should be able to save that file to my system and it should be visible to me as a icon.Clicking on that icon should open the file.&lt;/P&gt;&lt;P&gt;     This is similar to attaching a file to a mail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards&lt;/P&gt;&lt;P&gt;Sourabh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Sep 2006 10:26:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-functionality-required/m-p/1473098#M222171</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-07T10:26:54Z</dc:date>
    </item>
  </channel>
</rss>

