Empty Folders show the content of the upper folder

Recently I noticed that the empty folders don´t show empty, they show the content of the upper folder when you're in the icon view, Does anybody has the sam issue?

Hi,
An example to create a dynamic context in Webdynpro ABAP:
data:
rootnode_info TYPE REF TO if_wd_context_node_info,
dyn_node TYPE REF TO if_wd_context_node,
tabname_node TYPE REF TO if_wd_context_node,
tablename TYPE string.
rootnode_info = wd_context->get_node_info( ).
cl_wd_dynamic_tool=>create_nodeinfo_from_struct(
parent_info = rootnode_info
node_name = tablename " Data object Table name
structure_name = tablename
is_multiple = abap_true ).
***Bind data to Dynamic table:
DATA: stru_tab TYPE REF TO data.
FIELD-SYMBOLS:
<tab> TYPE table.
create internal table
CREATE DATA stru_tab TYPE TABLE OF (tablename).
ASSIGN stru_tab->* TO <tab>.
dyn_node = wd_context->get_child_node( name = tablename ).
Bind internal table to context node.
dyn_node->bind_table( <tab> ).
Shruthi

Similar Messages

  • I can see my external Hard Drive on AEBS and the folders on it but not the contents of the folders

    I have a MacBook Pro running OS X 10.7.2 connected to my wireless and wired network through my AEBS.  Connected through a USB hub I have a printer and Digital Research external HDD.  When I click on the shared folder I see my HDD and can even click on it to see the folders but am unable to see the contents of any folders.  I have checked permissions on all folders when connected directly to the laptop and all seems fine.  When connected directly to the laptop I can view all files on the HDD.  I can view the contents of all the folders from my iPad when using FileBrowser but not through the MacBook.
    Does anyone have any ideas as to why the contents of the folders are not showing when accessing through AEBS?
    Help is appreciated.

    Did you map the drive? It won't show up in Explorer automatically like a jump drive or an external drive plugged directly into the PC will.
    You didn't mention the OS you're running, but what you want to do is choose "Map a network drive" and you'll see the router listed as a network device. Click on it and you should see the external drive listed. You can map it from there. 

  • FILE UPLOAD PROBLEM SHOWING THE CONTENTS IN THE SAME BROWSER WINDOW

    Hi,
    This is amit Joshi
    I have uploaded content using input tag of type file and posted to jsp as multipart/form-data type
    in that jsp i am using following code to display the content in browser but only first content is displayed How can i modify it to show all content in the file ..
    <html>
    <head>
    <title>File Upload Display</title>
    </head>
    <body>
    <%
    //ServletOutputStream sout=response.getOutputStream();
    StringBuilder strBuilder = new StringBuilder();
    int count=0;
    String f;
    f=request.getParameter("filedb");
    DBManager dbm = new DBManager();
    //dbm.createTable("mms3");
    //log.info("In JSP : "+ f);
    //dbm.insert_data(f,"mms3");
    %>
    <%
    if (ServletFileUpload.isMultipartContent(request)){
    ServletFileUpload servletFileUpload = new ServletFileUpload(new DiskFileItemFactory());
    List fileItemsList = servletFileUpload.parseRequest(request);
    strBuilder.append("<?xml version=\"1.0\" encoding=\"UTF-8\" ?>").append('\r').append('\n').append("<xpage version=\"1.0\">").append('\r').append('\n');
    String optionalFileName = "";
    FileItem fileItem = null;
    Iterator it = fileItemsList.iterator();
    ServletOutputStream outputStream=null;
    while (it.hasNext()){
    FileItem fileItemTemp = (FileItem)it.next();
    if (fileItemTemp.isFormField()){
    %>
    <b>Name-value Pair Info:</b>
    Field name: <%= fileItemTemp.getFieldName() %>
    Field value: <%= fileItemTemp.getString() %>
    <%
    if (fileItemTemp.getFieldName().equals("filename"))
    optionalFileName = fileItemTemp.getString();
    else
    fileItem = fileItemTemp;
    if (fileItem!=null){
    String fileName = fileItem.getName();
    %>
    <b>Uploaded File Info:</b>
    Content type: <%= fileItem.getContentType() %>
    Field name: <%= fileItem.getFieldName() %>
    File name: <%= fileName %>
    <%
    if(fileItem.getContentType().equals("image/jpeg")) { %>
    File : <p><%
         //response.setContentType("image/gif");
         byte[] bArray=fileItem.get();
         response.setContentType("image/jpeg");
         outputStream=null;
         outputStream= response.getOutputStream();
         outputStream.write(bArray);
         outputStream.flush();
         outputStream.close();
    else if(fileItem.getContentType().equals("text/plain"))
         %> File : <%= fileItem.getString() %>
    <%
    byte[] bArray=fileItem.get();
    response.setContentType("text/plain");
         outputStream = response.getOutputStream();
         out.println();
         outputStream.write(bArray);
         outputStream.flush();
         outputStream.close();
    %> </p> <%
    %>
    </body>
    </html>
    Edited by: Amit_Joshi on Nov 13, 2007 10:58 PM

    Well Well Well..
    That would not work...
    What you have to do is save the uploaded file content on to a location and then pass the fileName as a request parameter to a deidicated which displays the contents of that file.
    Just as an example
    <html>
    <head>
    <title>File Upload Display</title>
    </head>
    <body>
    <%
    //ServletOutputStream sout=response.getOutputStream();
    StringBuilder strBuilder = new StringBuilder();
    int count=0;
    String f;
    f=request.getParameter("filedb");
    DBManager dbm = new DBManager();
    //dbm.createTable("mms3");
    //log.info("In JSP : "+ f);
    //dbm.insert_data(f,"mms3");
    %>
    <%
    if (ServletFileUpload.isMultipartContent(request)){
    ServletFileUpload servletFileUpload = new ServletFileUpload(new DiskFileItemFactory());
    List fileItemsList = servletFileUpload.parseRequest(request);
    strBuilder.append("<?xml version=\"1.0\" encoding=\"UTF-8\" ?>").append('\r').append('\n').append("<xpage version=\"1.0\">").append('\r').append('\n');
    String optionalFileName = "";
    FileItem fileItem = null;
    Iterator it = fileItemsList.iterator();
    ServletOutputStream outputStream=null;
    while (it.hasNext()){
       FileItem fileItemTemp = (FileItem)it.next();
    %>
    Name-value Pair Info:
    Field name: <%= fileItemTemp.getFieldName() %><br/>
    Field value: <%= fileItemTemp.getString() %><br/>
    <%
    if (fileItemTemp.getFieldName().equals("filename"))
        optionalFileName = fileItemTemp.getString();
    if(!fileTempItem.isFormFiled()){
       String fileName = fileItem.getName();
       fileItem.write(optionalFileName);
    %>
    Uploaded File Info:
    Content type: <%= fileItem.getContentType() %><br/>
    Field name: <%= fileItem.getFieldName() %><br/>
    File name: <%= fileName %><br/>
    <%
    if(fileItem.getContentType().equals("image/jpeg") || fileItem.getContentType().equals("image/pjeg")) {
    %>
      <img src="FileServlet?fileName=<%=optionalFileName%>"   
    <%
    %>
    </body>
    </html>a sample code snippet for FileServlet.
    String fileName =  request.getParameter(fileName);
      File file = new File(fileName);
       if(!file.exists())
         return;
      // If JSP
      String mimeType = application.getMimeType("fileName");
           If you are using servlet
           String mimeType = this.getServletContext().getMimeType(fileName);
         response.setContentType(mimeType);  
         response.setHeader("Content-Disposition","inline;filename=\\"+fileName+"\\");
      BufferedOutputStream out1 = null;
      InputStream in = null;
      if(mimeType == null)
         mimeType = "application/octet-stream";
      try{
         in = new FileInputStream(f);
         response.setContentLength(in.available());
         BufferedOutputStream out1 = new BufferedOutputStream(response.getOutputStream(),1024);
         int size = 0;
         byte[] b = new byte[1024];
         while ((size = in.read(b, 0, 1024)) > 0)
            out1.write(b, 0, size);
      }catch(Exception exp){
      }finally{
          if(out1 != null){
             try{
                out1.flush();               
                out1.close();
             }catch(Exception e){}
          if(in != null){
            try{in.close();}catch(Exception e){}
      } Hope that might answer your question :)
    However,this is not the recommended way of doing this make use of MVC pattern.Would be a better approach.
    you might think of googling on this and can findout what is the best practise followed for problems of this sort
    REGARDS,
    RaHuL

  • I have one out of five email address's with coxmail that opens with a blank inbox but other browsers show the content of the same inbox

    Question
    I have one out of five email address's with coxmail that opens with a blank inbox. Other browsers like opera or IE show the content of the same inbox. I've contacted cox but they tell me the problem is on my computer. I've used three different anti virus/malware scanners to eliminate all the bugs they can find. I need a firefox guru with suggestions. Thanks, Charles

    You can undo your permission changes. Probably the most relevant one is cookies. Try one or both of these methods:
    (1) Page Info > Permissions tab
    While viewing a page on the site:
    * right-click and choose View Page Info > Permissions
    * Alt+t (open the classic Tools menu) > Page Info > Permissions
    (2) about:permissions
    In a new tab, type or paste '''about:permissions''' and press Enter. Allow a few moments for the list on the left to populate, as this information needs to be extracted from a database.
    Then type or paste ''rcn''' in the search box above the list to filter it to the most relevant domains. When you highlight a domain, you can adjust its permissions in the right pane.
    Any luck?

  • Version 5.0 on a MAC will not let me switch between tabs. I can open a new tab, but when I try to go to a different tab, it just shows me the contents of the tab most recently opened. Help!

    Version 5.0 on a MAC will not let me switch between tabs. I can open a new tab, but when I try to go to a different tab, it just shows me the contents of the tab most recently opened. Help!
    Also, pop up blocker works for some time and then just stops working. I have to close and restart Firefox to get it to work again. Help!

    I had the same problem, but with Firefox 4.0. My first thought was to update Firefox (after of course restarting FF), but that didn't help it and I had the same problem.
    Among others, I had an extension installed and enabled called Tile Tabs 4.10 that I thought could feasibly creating this problem. So I went into my add-ons manager and disabled it, restarted Firefox and the tabs worked properly again. Unfortunately, the Tile Tabs extension is my favorite Firefox add-on and I use it almost every day for managing my web work tasks. I went to the add-on page for Tile Tabs and saw that there was a notice that version 4.10 didn't work properly on Mac OS, and to install version 4.9 of the extension. I saw they had a new, not-yet-reviewed version 4.11 that addressed the Mac OS problem, installed it, and everything seems to be working properly.
    I have no idea why all of a sudden I had this problem, as I hadn't updated Firefox or the Tile Tabs extension recently. Also, obviously this might not address your problem, especially if you don't have that add-on installed and enabled. But our problem started at the same time for both of us it appears based on your post time, so its probably not coincidence.
    But its worth a look, and you might want to check out other extensions if you don't have Tile Tabs that could be causing the problem.

  • Why the content of the Explain Plan not show out?

    Why the content of the Explain Plan not show out?
    I am using Oracle 11g.
    I already ran the utlxplan.sql sctipt and I also set serveroutput on.
    SQL> set autotrace on
    SQL> EXPLAIN PLAN FOR SELECT*FROM DEMO_TABLE WHERE OWNER='HR';
    Explained.
    Elapsed: 00:00:00.67

    When you say:
    My release 10.2 database display the Explain Plan automatically.
    How to make 11.1.0.6 Oracle database to display the Explain Plan automatically.What do you mean? Specifically, what commands are you executing in the 10.2 database, that displays the execution plan "automatically"?
    Are you saying that if you execute the same command in 11.1.0.6, you don't get a similar result? What happens? Do you get an error?
    For both the 10.2 case and the 11.1.0.6 case, post the full output of the commands you're executing, and the result you are seeing.
    Then, maybe someone can help you.
    When you post the output, please encapsulate it in a pair "code" tags, which is the word "code" without the quotes, surrounded by a pair of curly braces {}.
    When you do this correctly, the output looks like:
    This is output from my execution plan run.and is much easier to read.
    Don't be afraid to use the preview tab to see if your message will be posted with the correct formatting.
    -Mark

  • I just purchased an iPad 3 and it works great with most of my email accounts, but with an imap account from school it will download the content of the folders in the account, but doesn't download the messages in the inbox.

    Hi,
    I just purchased an iPad 3 and it works great with most of my email accounts, but with an imap account from school it will download the content of the folders in the account, but doesn't download the messages in the inbox. I have deleted and created the account several times. I have checked the status of the account and it's active and works either from safari or from my Mac or iPhone. I have turned off both my Mac and my iPhone as not to have competing devices, I can even send emails from the account successfully. It simply won't download the content of the inbox. Help!

    Hi Csound1, thanks. The email host is 1and1.co.uk, however, i am going to fess up and make myself look like a plonker now -
    the email account in question was set up in Outlook as POP - stupid, stupid, stupid me, wasted an afternoon on this!  I have now changed the Outlook account to IMAP and Mail.app works perfectly - and looks much nicer than Outlook did.  Im in the middle of converting from Windows to a Mac, and still finding my way around the Mac
    The lesson learned, never assume - always double  check!  All my other email addresses with 1and1 are all imap, except this one, and it happened to be the first one I set up in the Mail.app. (bows head in disgrace!)
    Thank you anyway for attempting to help me!
    Cheers

  • When I receive messages with attachments, the contents of the attachment also show up in the body of the text. Anyway to prevent that? Thx

    Example, excel file shows as an attachment, and can be opened as an attachment...but the contents of the excel file are also included in the body of the email. Same happens with jpegs. thx

    ''sc344 [[#question-1057671|said]]''
    <blockquote>
    Example, excel file shows as an attachment, and can be opened as an attachment...but the contents of the excel file are also included in the body of the email. Same happens with jpegs. thx
    </blockquote>
    correcting my example - the files are text files (txt) and jpegs - not excel files.

  • My I-Pad screen is black, I tried to sync and restore I-Pad, it showes the contents on the computer and pulling out pictures and other files, but screen is black. what can I do?

    My I-Pad screen is black!! I tried to sync and restore I-Pad, it showes the contents on the computer and pulling out pictures and other files, but screen is black. I don't know what happened! what can I do?

    I have this problem as well...however, resetting/restoring did not take place when I followed the same instructions but got nothing on the screen.  Thanks in advance.

  • Sometimes the contents of the Applications folder does not show in finder

    Using finder I can only display the contents of my Applications folder by clicking on Applications under the Places group on the sidebar. Any other method of navigation (eg selecting Applications from within my Home folder) and the contents are never displayed.
    cheers for any clues...rob

    Thanks very much...that certainly sorted out that bit of confusion. Some app must have created it sometime I guess. It had the special folder Icon as well (the one with the clever A). I deleted it and then recreated it but no special A this time?? ...thanks very much for your help , I can't believe I missed that

  • URGENT !!! How to fecth the content of the mail

    HI All,
    I having a problem regarding how to fetch the body of the mail as well as attachment of the mail.
    i get sender name, subject but i having the problem how to fetch the content of the mail.
    i used
    System.out.println(message[msgno].getContentType());
    but it showing
    javax.mail.internet.MimeMultipart@480457
    it won't showing the content.
    How can i fetch the content !!!!
    Please help
    I fetching accessing the mail server using "imap"
    By
    Ravi
    email : [email protected]

    Code which i used
    import java.io.*;
    import java.util.Properties;
    import javax.mail.*;
    import javax.mail.internet.*;
    import java.lang.*;
    import java.lang.Object;
    public class GetMessageExample
         public static void main(String args[]) throws Exception
              String host = "...";
              String username = "....";
              String password = ".....";
              // Create empty properties
              Properties props = new Properties();
              // Get session
              Session session = Session.getDefaultInstance(props, null);
              // Get the store
              Store store = session.getStore("imap");
              // Connect to store
              store.connect(host, username, password);
              // Get folder
              Folder folder = store.getFolder("INBOX");
              // Open read-only
              folder.open(Folder.READ_ONLY);
              // Get directory
              Message message[] = folder.getMessages();
              for (int i = 0, n = message.length; i < n; i++)
                   // Display from field and subject
                   System.out.println("From : "+message[0].getFrom()[0]);
                   System.out.println("Subject :"+message[0].getSubject());
                   // Display message content     
                   System.out.println("ContentType :"+message[0].getContentType());
                   System.out.println("Content :"+message[0].getContent());
              // Close connection
              folder.close(false);
              store.close();
    i got this output :
    From : Ravi Lal <[email protected]>
    Subject :Testing
    ContentType :multipart/alternative;
    boundary="----=_Part_63386_12145160.1189402168311"
    Content :javax.mail.internet.MimeMultipart@480457
    As i having only one mail in my inbox.
    I able to fetch everything from, subject but i fails to get the content i.e text of the mail.......
    What i do ????????
    !!! Help Me !!!
    Ravi
    Edited by: Ravi_InSun on Sep 13, 2007 10:51 AM

  • HT5622 When my daughter got her first iphone we set it up with my email address, she now has her own email & new iphone.  I want to use my email address for my icloud, can I delete the content  from the icloud account and continue to use my email?

    When my daughter got her first iphone we set it up with my email address, she now has her own email & new iphone.  I want to use my email address for my icloud, can I delete the content from the icloud account and continue to use my email?

    Yes, but be sure she is on a separate iCloud account with a separate ID before deleting anything.  Be sure there is nothing that you want to keep on your device too.  When you delete the data from iCloud it will be deleted from all devices signed into the account.  Then you can delete the data from the existing account by doing the following:
    To delete the contacts, go to iCloud.com from your computer, log into your iCloud account and open Contacts, click on All Contacts on the left, to the right click on any single contact to select it, click on the Actions (gear shaped) icon at the bottom left and choose Select All, then press the Delete key on your keyboard.
    For Calendars, open the calendar on icloud.com, click Edit on the bottom left, then tap the minus sign to the right of each calendar to delete it.
    For Notes, open notes on icloud.com, click on each note on the left, then click Delete at the top to delete it.
    For Reminders, open reminders on icloud.com, click on each reminder and press your Delete key to delete it.
    For Mail, open your mail on icloud.com, click each folder on the left (such as your inbox), click on a single message to the right, press Control-A on your keyboard to select them all, then press your Delete key.  Repeat this for each of your mail folders except Trash.  When finished, click on the actions (gear-shaped) icon on the bottom left and select Empty Trash.
    If you also want to delete your iCloud backups you can go to Settings>iCloud>Storage & Backup>Manage Storage on your device, tap the name of your device under Backups, then tap Delete Backup.

  • I am having problems with mail after upgrading to snow leopard. When I send an email to somebody, I would get a reply from them but the content of the reply were old emails from months ago. Any ideas what's going on?

    For ex. The subject of my email was "List of kids dancing this weekend". Then i would compose my email and send it to the recepient. They responded to my email with the same subject "List of kids dancing this weekend" but the content of the email was the email I received from somebody else months ago. This "phenomenon" happened serveral times already. Please help!

    Check this post out
    http://hints.macworld.com/article.php?story=20110516152604993
    Turns out the auto-complete database is a SQLite DB stored in this folder.  Probably the ownership and/or permissions are messed up on your system.  Mine (under Snow Leopard) show  ownership by me and rw privilege for all files in that directory, including MailRecents....

  • Using an external drive with shared files (iPhoto, iTunes), attached to a Time Capsule, can the contents of the external drive be backed-up to the internal Time Capsule drive? Perhaps a RAID1 mirror to a partition?

    Using an external drive with shared files (iPhoto, iTunes), attached to a Time Capsule, can the contents of the external drive be backed-up to the internal Time Capsule drive? Perhaps a RAID1 mirror to a partitioned Time Capsule? I understand that the Time Machine (software) cannot backup a networked drive (the external) and that Time Capsule (the router/wireless hard drive) does not have its own backup software... so it won't backup the connected drive. What I would like is an alternate solution for having an automated backup of a networked drive. A 2TB Time Capsule has more than enough space for Time Machine backups of my family of Macbooks, so I had hoped to mirror a 500GB external drive (with shared media files) to a portion of the Time Capsule internal hard drive. I assume this would require a partition of the Time Capsule drive. If not, would the sparse file from the various computers being backed up need to be copied to the external drive as part of the RAID1 setup? This seems like overkill for the Time Machine backup, but it would cover the media files.  

    The complexity with this idea is the software has to run from a Mac computer on your network.. so you need a Mac turned on, probably most of the day.
    It isn't possible to partition the TC although you can create a image area.
    The software would have to copy the material, that means all files to be copied, go from USB drive, back to the Mac, then back to the TC, and written to the drive. In other words you have just added Network congestion, although a proper incremental backup type software will not actually use a lot of capacity.
    Finally it will be slow.. network drives are slower than internal drives. Well USB connected drive is much slower than the same drive connected directly to the computer.. and if the drive is connected directly to a computer it can be shared with the network.
    http://www.anandtech.com/show/4577/airport-extreme-5th-gen-and-time-capsule-4th- gen-review-faster-wifi-/4
    Read carefully the speed of the USB drive plugged into the TC.

  • "iTunes cannot read the contents of the ipod", How can I fix this?

    Hello everyone, I am having trouble with my iPod touch 32GB and getting iTunes to detect it. I'm using Windows 7.
    When plugging it in tonight, I got the message "iTunes cannot read the contents of the iPod (Name). Go to the summary tab in the iPod preferences and click restore to restore this iPod to factory settings". I attemped to do this, but I then got an iTunes error "3184" and was unable to install the iPod software.
    I've tried...
    - Using a different computer
    - Using a different USB cable
    - Rebooting the iPod
    Nothing seems to work. I've read a solution as to delete one of the iTunes files on the iPod, but the iPod doesn't show up in my Windows Explorer, so I am unable to do this. The computer does however charge the battery when I have the iPod plugged in. I'm also able to still listen to music on the iPod as well.
    One other note, I had the same thing happen to my previous iPod touch. I got my original iPod touch back in December 2010. In October 2011, the iPod just died one day and I was not able to turn it on at all or charge it. When I'd plug it into the computer, I got the exact same errors and was unable to restore the iPod. I sent it in to Apple as it was still under warrenty and they sent me a replacement. Now 3 months later it's happened again. Of course the warrenty starts from the day you purchase the original, so this is no longer under warrenty despite having it for only 3 months. The only difference this time is that the battery still charges and I can still turn it on and listen to music.
    Any ideas?
    Thanks

    hi Angie!
    hmmm. is there an Apple Store convenient where you can take the ipod for a check-up?
    love, b

Maybe you are looking for

  • Conditional links on report w/ search

    I know there has a number of thread on this topic, but I could not find any addressing my issue. I have a report with a conditional link built into the SQL: select DECODE(LL_ACCESS, 'edit', '<img src="/i/edit.gif" border="0" alt="Edit Icon">', '<img

  • Release strategy with classfication & w/o classfication problem

    Hello guys I am facing problem in setting up the release strategy .  ECC 6,0 came up default without classification. we need with classification.  i set up w/o classification, then delete it and then did with classification.. it works fine for me in

  • Select Statement (pl/sql) in ADF

    Hi, I am new in ADF. Please give any idea or sample code about how to write Select Statement in ADF and how can i catch value. Thanks

  • Getting outlook inbox in portal

    Hi Friends,    I want to configure OWA  in my portal. I need only the inbox of OWA .so what should i do to get this done. regards, M.Arunkumar

  • Why can I not cancel my membership?? (Creative Cloud Student and Teacher Edition)

    I can't complete the cancellation proces.. I keep getting directed to the support-page and when I move through the "Manage account" -> "Plans & Products" and press "cancel plan" I only get a dead-end popup. Can someone please help me? This is such a