Need a FM or Method to read all content of Windows Directory

Hi every one!
I have found much but could not get FM that readss all file in directory in web Dynpro.
FM like  TMP_GUI_READ_DIRECTORY are applicable in report programs but shows an error in Web Dynpro .Can somebody help me..??
Thnks!

Hi,
In Web Dynpro ABAP you cannot use GUI FM/Classes. Use AcfUpDownload UI to achieve this in WDA. Check the e-learning for reference: Web Dynpro ABAP Tutorial: ACFUpDownload and ACFExecute
Hope this helps u,
Regards,
Kiran

Similar Messages

  • HT201210 I updated my 4s over 3g to ios 7.1 it took forever and said connect to itunes. It said it was in recovery mode & needed to be restored but would wipe all content. I have never made a backup and can't loose pics of my kids birth and birthdays...

    So tonight I updated my 4s over 3g to ios 7.1 it took forever and said connect to itunes. It said it was in recovery mode & needed to be restored but would wipe all content. I have never made a backup because my computers hard drive crashed (luckily the pics were on the phone) and now after updating like apple said I should it wants me to wipe my phone... I can't loose pics of my kids births and birthdays... I tried the holding buttons and letting off to exit recovery mode with no success... I don't know what to do but I swear if apple makes me loose the priceless pics of my kids I will never buy any apple device ever again... and I will make sure no family or friend ever does either... there has to be a way somehow.. some data recovery some program... I dunno if tinyumbrella can exit it for me without hacking or jailbreaking (which I don't dare/want to do) but i need a solution. I have researched this for hours and hours with no solution so far. If I have to pay $$ for it fine I will but after I recover my data that way I will be going to samsung... anyone with a solution would be greatly appreciated... any solution...

    that makes no sense... it was only doing an update... if that's the case it should have promted me to back up first if this is even possible... there is a program that says it can recovery anything that hasn't been written over yet.. so would this not work? http://www.iphone-data-recovery.com/iphone-data-recovery.html   or would the apple store be able to recover it??? i've done plenty of data recovery on computers... why wouldn't it be possible on an Iphone... does apple seriously not care about thier customers at all??? how about thier employees that are gonna get more than an earful tomorrow when I walk in there store??? No wonder samsung paid 2 million to apple in pennies when they got sued... (how does it feel to be screwed with apple?!)

  • Read all files in a directory

    I need to compare the date of creation of multiple files that are being created throughout the execution of the application, so that if the date and time of the file is equal to the current date and time, a led will light up, and if not, the file will be deleted.
    I've made a VI, but I'm getting an error and I don't know how to fix it.
    What I need is for the vi to read all the files in the directory and continue reading all the files as they are created in the directory. The weird thing about this error is that it only shows up when I run it without highlight execution.
    Attachments:
    Date & Time comparison.vi ‏10 KB

    Several things come to mind.
    0. What error do you get? The error code or description can be very useful in identifying a problem.
    1. When a VI runs OK with execution highlighting and fails without, that usually indicates a timing problem.
    2. The inner loop runs as fast as possible because there is nothing in there to slow it down. Put a Wait (ms) in there to slow things down a bit.
    3. The loops will never stop.  Do not create infinite loops by wiring False constants to the Stop if True terminal. The inner loop should probably be a for loop which will automatically stop after checking all files. The outer loop should have something to stop it - a front panel button, error, something.
    4. The timestamp has approximately 19 digits of precision in the fraction of a second portion. The resolution is limited by the clock in the computer. The implication is that you will almost never get exact equality.  You need to define "how close" is close enough. Perhaps within 1 second? Then modify the comparison function to determine whether the timestamps are within that limit.
    Lynn

  • What is the factory set restriction passcode? I need to erase all content and settings on my handset as I have just upgraded to 4S and need to wipe my old handset off all content.  It keeps asking for a passcode even though I never set one. Thanks

    Restrictions passcode for iPhone 4. I need to erase all content and settings for handset

    There is no factory set restriction code. If you need to completely reset then follow the instructions you find here:
    IPhone, iPad, iPod touch: Wrong passcode results in red disabled screen
    Please Get the iPhone User Manual for iOS 5

  • Can't download all contents to Windows

    Hi,
    Set up iCloud on my Win7, and got all the photos alright (~200MB).
    However no Videos came through, and my iCloud storage claims to be ~5GB (probably bloated up with vids?).
    How can I see what's in there, or download the vids?
    'Manage' only lets me delete all contents as a single operation.
    Thanks,
    Gil.

    Using the camera, then selecting 'Camera roll' I can access the videos. But iCloud backup "camera roll" has a different meaning (i.e. without the vids)?
    And if so, why only 200 Megs of photos were downloaded to my PC but iCloud backup for 'camera roll' says ~500MB? if it is not the vids, what is it?
    I know how to download what's on my iPhone device, but I want to download everything on my iCloud, meaning all 500 megs of 'camera roll'...
    I'm confused..
    Thanks,
    Gil.

  • Clicking on "Show All Content" Closes Window

    I am working through an issue with a web-based learning tool. When the player launches, a banner appears across the bottom stating that "Only secure content is displayed" with a button labeled "Show All Content". When I click on the
    button, the entire player window closes. I know how to get rid of the warning and have applied a group policy to a set of computers and that works fine to get rid of the banner. But my question is: Why is showing all of the content - secure and not secure
    - forcing the window to close?

    Hi,
    Please share your IE and OS version?
    In addition, have you checked this KB article?
    “Only secure content is displayed” notification in Internet Explorer 9 or later
    We may disable the “Only secure content is displayed” message
    from IE:
    1. Tools-> Internet Options.
    2. Tap or click the Secruity tab, and then tap or click the Custom Level.
    3. In the Settings box, scroll down to the Miscellaneous section, and under
    Display mixed content choose from the following options:
    Disable, will not display non-secure items.
    Enable, will always display non-secure items without asking
    Prompt, will prompt you when a webpage is using non-secure content
    More information, please check into the KB article.
    Best regards
    Michael Shao
    TechNet Community Support

  • HTML  Parsers and reading all files in a directory

    Hello all,
    I was wondering if there was a html parser included in java. I am writing a program where I want to be able to search all the files in a directory tree for a particular string. I was able to read one file in a single directory but not in any other directory. How would I go about writing code to be able to access all files in directory that has multiple sub folders.
    Also, when I started to write my program I tried to use the DOM XML Parser to parse my html page. My logic behind this decision was that if you look at html code it is an xml document. But as I was trying to run my program I noticed that I had to convert my html document into xml format. I really don't want to have to build my own html parser. Is there a html parser that is included in Java. Oh my program is just your basic text program. No interfaces.
    Thanks for any help that you can provide
    Hockeyfan

    a particular string. I was able to read one file in
    a single directory but not in any other directory.
    How would I go about writing code to be able to
    access all files in directory that has multiple sub
    folders.
    You can do that several ways.
    Most likely you'll end up with some sort of recursive iteration over the directory tree.
    Not hard to write, somewhat harder to prevent memory problems if you end up with a lot of data.
    Also, when I started to write my program I tried to
    use the DOM XML Parser to parse my html page. My
    logic behind this decision was that if you look at
    html code it is an xml document. But as I was
    trying to run my program I noticed that I had to
    convert my html document into xml format. I really
    don't want to have to build my own html parser. Is
    there a html parser that is included in Java. Oh my
    program is just your basic text program. No
    interfaces.
    A VALID xhtml document is a valid XML document.
    Problem is that most HTML isn't xhtml.
    Another problem is that most HTML is fundamentally broken even to its own standards (which have always been based on SGML on which XML is also based).
    Browsers take that into account by being extremely lax on standards compliance and effectively making up tags as they go along to fill in the missing ones in the trees they parse.
    That's however not a standardised process and each browser handles it differently (and as a result most html will render differently in different browsers).
    Java contains a simple HTML parser in Swing, but it's primitive and will only parse a subset of HTML 2.0.
    There are almost certainly 3rd party libraries out there that can do better, both free and/or commercial.

  • Http error 405 method not allowed sap content server windows

    Hi Expert,
    we have install sap content server 6.5 on microsoft windows 2012 using
    IIS 8.0 and MAXDB 7.9 SP 8 Build 21. After configuring the content server it self we still cannot
    create repository error "http error 405 method not allowed"
    Oac0 --> tab Create --> Content rep.
    I have implement note number 1704365 - IIS roles not created by
    default when installing Content Server on Windows 2008. even though it
    is not applicable to our IIS.
    when i try to open http://hostname:1090/ContentServer/ContentServer.dll?serverInfo
    it always direct us to download file not showing the version number.
    is there any solution for this issue?
    Thanks a lot,

    Dear,
    Can you please try following URL ?
    http://hostname:1090/ContentServer/ContentServer.dll?serverInfo&pVersion=0046
    http://hostname:1090/ContentServer/ContentServer.dll?serverInfo&pVersion=0046&contRep=<Repository Name>
    Regards
    S S B

  • Eliminate all content in WINDOW

    when i click on WINDOW many viewed items show up, some are porn sites. i need to eliminate those so nobody else can see them. how do i get that cleaned up?

    I assume that you refer to this list of open windows [[Menu Reference#w_open-windows]]<br />
    You will have to close those windows and maybe also delete the file [http://kb.mozillazine.org/sessionstore.js sessionstore.js] to clear the list of recently closed tabs and windows.
    See [[Profiles#How_to_find_your_profile|Profiles - How to find your profile]]
    *Help > Troubleshooting Information > Profile Directory: Open Containing Folder

  • File Adapter and reading all XML files from direcotry

    Problem occurs on PI 7.1
    I defined sender file adapter. File name mask is: "*.xml" to read all XML messages from directory.
    Quality of service is: Exactly One.
    Poll Interval: 30
    Retry interval: 30
    Processing mode: Archive with option "Add Timestamp".
    Processing sequence: by name.
    I though that with above configuration my File Adapter will be reading folder for all coming XML files. But  somehow it is reading XMLs only when I'm activating it in Integration Builder.
    Any idea what can cause such strange problem?

    Hi Tomasz,
    As per my understanding, you need to activate the file adapter for reading the XML files on your directory. Right?
    If that is the case, then the issue might be with the Cache.
    1. Clear the cache from the Integration Builder.
    2. Check in SXI_CACHE whether there are any issues. Click on Delta Cache refresh to find out if there are any cache related issues.
    Thanks,

  • How  to read all files  under a folder directory in FTP site

    Hi Experts,
    I use this SQL to read data from a file in FTP site. utl_file.fopen('ORALOAD', file_name,'r');
    But this need to fixed file name in a directory. However, client generate output file with auto finename.
    SO do we have any way to read all file by utl_file.fopen('ORALOAD', file_name,'r');
    We need to read all file info. because client claim for security issue and does not to overwirte output file name,
    we must find a way to read all file in output directory.
    Thanks for help!!!
    Jim

    If you use Chris Poole's XUTL_FTL package, I believe that contains functions that allows you to query the directory contents.
    http://www.chrispoole.co.uk/apps/xutlftp.htm
    Edited by: BluShadow on Jan 13, 2009 1:54 PM
    misread the original post

  • Read all files in a subdirectory

    I have a directoy that contains other directories which I need to read the files found in these subdirectories. I'm using the following method to read the files in a directory:class ListAll
       public static void main( String args[] ) throws IOException
          File currentDirectory = new File( "." );
          String[] listing = currentDirectory.list();
          for ( int k = 0; k < listing.length; k++ )
             System.out.println( listing[k] );
       }Can any one help? thanks in advance... Tom

    Do you mean like this?import java.io.*;
    class ListAll {
         private void listDirectory(String dir) {
              File currentDirectory = new File(dir);
              String[] listing = currentDirectory.list();
              for ( int k = 0; k < listing.length; k++ ) {
                   if (new File(dir+File.separator+listing[k]).isDirectory()) {
                        listDirectory(dir+File.separator+listing[k]);
                   System.out.println( dir+File.separator+listing[k] );
         public static void main(String args[]) throws IOException {
              new ListAll().listDirectory(".");
    }Mark

  • How to Create A Method that reads out JAVADOC form JAVASRC

    Hey everyone!
    I need to develop a Method that reads out the JavaDoc from A certain Javasrc-File.
    That method should look like this :
    String readJavaDoc(String MethodName, String src)
    So the first Parameter is the Name of the Method to witch the JavaDoc should be retrived.
    E.g. :
    String s = test.readJavaDoc("getName", "Foo.java");
    -> read out JavaDoc from Foo.java and retrive only Documentation to the Mehtod "getName()".
    Is this possible or somithing like this??
    Thanks for any help!
    P.S. Sorry for my bad english.

    I have a feeling that you didn't fully think this through. What do you do in case of overloaded methods? Which Javadoc do you return?
    Apart from that, it'd require either some text parsing, or you could try to find a library that can deal with Javadocs. I'm sure some like those exist. Google a little. You'll find stuff like this:
    http://java.sun.com/j2se/javadoc/faq/index.html

  • Read all files in chield and their chield's directory

    I am trying to make a program which read all files in a directory and its subdirectory like scandisk program of window's operating system. I gause this I can do via recursion using the methods isDirectory(), File.list() etc. Please help me to implement this problem in code.
    Regards
    yogesh

    you guys should collaborate,
    http://forum.java.sun.com/thread.jsp?forum=4&thread=153110&start=0&range=30#443719

  • Help me...How to read the content if "Transfer-Encoding:chunked" is used?

    I am doing a project for internet control using Java,PHP and MySql.All sites should go through the proxy server only.If the HTTP header contains Content-Length,am getting the content length as below:
    public class HTTPResponseReader extends HTTPMessageReader
        String statusCode;
        public HTTPResponseReader(InputStream istream) throws IOException,                     NoSuchElementException
      BufferedInputStream distream = new BufferedInputStream(istream);
      retrieveHeader(distream);
      StringTokenizer st =  new StringTokenizer(new String(HTTPMessageReader.toArray(header)));
      versionProtocol = st.nextToken();
      statusCode = st.nextToken();
      String s;
      while (st.hasMoreTokens())
            s = st.nextToken();
            if (s.equals("Transfer-Encoding:"))
           transferEncoding = new String(st.nextToken());
         if (s.equals("Content-Length:"))
           contentLength = Integer.parseInt(st.nextToken());
         if (s.equals("Connection:"))
          connection = new String(st.nextToken());
          if (connection.equals("keep-alive")) mustCloseConnection = false;
       retrieveBody(distream);     
    }After getting the Content-Length,i used read method to read the content upto that content length.Then i concatenated the HTTP header and body and the requested site was opened.But some sites dont have Content-Length.Instead of that,Transfer-Encoding is used.I got the HTTP Response header as "Transfer-Encoding:chunked" for some sites.If this encoding is used how to get the length of the message body and how to read the content.
    Can anybody help me.
    Thanks in advance...
    Message was edited by:
    VeeraLakshmi

    Why don't you use HttpUrlConnection class to retrieve data from HTTP server? This class already supports chunked encoding...
    If you want to do anything by yourself then you need to read HTTP RFC and find all required information. Well in two words you may reject advanced encoding by specifying HTTP 1.0 in your request or download chunked answer manually. Read RFC anyway :)

Maybe you are looking for

  • How to run process tasks in Xellerate User form sequentially

    I have 2 tasks in the process definition of Xellerate User. One triggers on change in department and the other triggers on manager change. I want the manager task to trigger first and then the department task to run after the values have been updated

  • WUMC710 SETUP ISSUE / SOLUTION

    When settting up a new WUMC710 with a new WRT1900AC Router, I experienced problems when trying to connect to the Manual Wireless Configuration screen. After the usual diagnostics (Restore to Default, Firmware Upgrade, etc.) I eventually narrowed it d

  • IPhoto '09: Pictures turn black when editing

    Now I know there are several fixes for this, but it appears that none of them work. I have a Kodak camera and I took the SD card out and put it in my iMac. I dragged the photos into iPhoto. The thumbnails looked fine, but when I click Edit or Slidesh

  • Attempt to start transaction on SQL server

    I have managed to successfully configure Oracle 8.1.7 on NT to retrieve data from a MS SQL Server (version 6.5) However, one of the databases we are accessing is set up as read only; Oracle is attempting a start transaction, as it recognises that the

  • IPad (3rd gen)  ios 6.0.1 update - yes or no?

    hi all, is it worth updating the 3rd gen iPad or iPad Mini or iPhone 4 to ios 6.0.1? I'm concerned about battery life and wifi issues, sharing/apple tv errors.... that i did not even update to ios 6. So is ios 6.0.1 a yes or no for you? and what prob