Permissions issues with files from a zip

We've got five macs on a network, all on 10.5.6. Clients often send us folders with files in as a single zip. If the zip file is opened, the folder and files all have read/Write permission for the user that opened the zip, and all other macs have "no access". This happens with all the macs. The zip files are sent from PCs.
Has anyone any idea as to why this should happen, and a possible fix?
Cheers
Steve

im now trying this method instead, it kind of works, but reads in all files (I just wanted XML files), and Im sure its not the best method for this:
public void readZipXMLFiles(String inFilename)
try {
        // Open the ZIP file
        ZipInputStream in = new ZipInputStream(new FileInputStream(inFilename));
        // Get the first entry
        ZipEntry entry;
        entry = in.getNextEntry();
        while (entry != null){
        // Open the output file
        String entryName = entry.getName();
        String outFilename = entryName;
        OutputStream out = new FileOutputStream(outFilename);
        CheckExtension("xml", entry.getName());
        // this check the file extension, if correct FileType=true
        System.out.println(entry.getName()+ ":" + FileType);
        if (FileType == true){
        // Transfer bytes from the ZIP file to the output file
        byte[] buf = new byte[1024];
        int len;
        while ((len = in.read(buf)) > 0) {
            out.write(buf, 0, len);
        // Close the streams
        entry = in.getNextEntry();
        out.close();
        in.close();
    } catch (IOException e) {
        catch (Exception e)
            e.printStackTrace();
    }Because I'm using a ZipInputStream, its grabbing all files even if the files are not .xml,
Edited by: Mr_Tuition on Dec 18, 2007 7:05 AM
Edited by: Mr_Tuition on Dec 18, 2007 7:08 AM

Similar Messages

  • Permissions problem with files from a backup (Timemachine)

    I had to re-image the Mac. I took the back up I had from the time machine HDD and put it back on the users AD acccount (which has Admin rights). The user has no problems with the files, but when the user tries to drag to the trash bin, it wants the you the authenticate with admin account and password in order to move to trash bin, but if she creates a new file she has no problems moving files to the trash bin. So the users account has admin rights to the Mac. The permissions on files from her time machine back up are R/W and any new ones she creates are R/W to her account. I can't seem to figure out why this is happening. any suggestions?

    I had to re-image the Mac. I took the back up I had from the time machine HDD and put it back on the users AD acccount (which has Admin rights). The user has no problems with the files, but when the user tries to drag to the trash bin, it wants the you the authenticate with admin account and password in order to move to trash bin, but if she creates a new file she has no problems moving files to the trash bin. So the users account has admin rights to the Mac. The permissions on files from her time machine back up are R/W and any new ones she creates are R/W to her account. I can't seem to figure out why this is happening. any suggestions?

  • Photoshop CS6 file permissions issue with file created with Photoshop CC

    In our studio we have several capture stations and work stations all connected to one file server. An issue occurs when a user of CC creates a file and saves it to the server and a user of CS6 opens the file. The CS6 user cannot save the changes he just made to the file that was created in CC. The CS6 user can do a Save As with no issue. There is also NO problem if the file that was created in CC is transferred to a new drive using the Finder in Mac OS X.
    Has anyone else had a similar issue or know of a solution?
    Here is a screen cap of the error:

    We have solved our issue.
    After running Adobe updates on machine that uses CS6 and then re-starting that machine, our issue seems to have disappeared.
    Hope this helps others.
    Best of luck.

  • Issue with File Download(messageDownload) on Search Page.

    Hi,
    I created a custom OAF search page which fetches values from one table. The document in getting stored in my custom table in a BLOB colums and NOT in FND_LOBS.
    The table has 3 collumns along with others:
    1st is primary key (Record_Seq) ==> number data type
    2nd to store actual file name (File1Name) ==> varcahar2 data type
    3rd to store the actual uploaded data (File1Data) ==> BLOB data type
    The reason for having the “File1Name” is so that I can display the original file name of the document that was uploaded, instead of just the “view” in the search page results .
    On the File1Data BLOB and created a messageDownload for that under query results table with following details:
    ID : File1Data
    ItemStyle : messageDownload
    FileMIME Type : pdf
    Datatype : BLOB
    View Instance : LacEmpExposureVO1
    view Attribute : File1Name
    File View Attribute : File1Data
    When I click on the "File1Name" data hyperlink, it is opening only the first document corresponding to the first record in the search page results.
    For example, If my search page returns 10 rows then when I click on the file1name on any row, It is open the first row file name only.
    I have a primary key column(RECORD_SEQ) in the Table / EO / VO which is displayed in the search page results.
    Also one weird thing is happening:
    If I try to do this more than 2 times then it is opening the update page with the first record from the search page results…
    I tried to print the context and it is nul the first time, But the second time then context is changing to "update". Dont know how this is happening????
    Any advice is greatly appreciated as it is very crucial for me to get this resolved ASAP. I have looked at several forums and did a lot of things as advised in the forums . But nothing seems to work for me.
    Thanks,
    Mir
    CO code for the search page
    ===========================
    if (pageContext.getParameter("Create")!= null)
    System.out.println("Into LacEmpExposureCO in PROCESS FORM REQUEST with Context of CREATE");
    pageContext.setForwardURL
    ("OA.jsp?page=/lac/oracle/apps/lac/lacempexposure/webui/LacEmpExposureCreatePG",
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,
    null,
    true, //Retain AM
    OAWebBeanConstants.ADD_BREAD_CRUMB_YES,
    OAWebBeanConstants.IGNORE_MESSAGES);
    else if ("update".equals(pageContext.getParameter(EVENT_PARAM)))
    System.out.println("Into LacEmpExposureCO in PROCESS FORM REQUEST with Context of UPDATE");
    System.out.println("LacEmpExposureCO ==> RecordSeq in PROCESS FORM REQUEST is: " + RecordSeq);
    HashMap params = new HashMap(1);
    params.put("RecordSeq", RecordSeq);
    pageContext.setForwardURL
    ("OA.jsp?page=/lac/oracle/apps/lac/lacempexposure/webui/LacEmpExposureUpdatePG",
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,
    params,
    true, //Retain AM
    OAWebBeanConstants.ADD_BREAD_CRUMB_NO, // Do not display breadcrumbs
    OAWebBeanConstants.IGNORE_MESSAGES);
    else {           
    String strEvent = pageContext.getParameter(OAWebBeanConstants.EVENT_PARAM);
    System.out.println(strEvent);
    System.out.println("Into the last ELSE part in LacEmpExposureCO.java");

    Duplicate post -- Issue with File Download(messageDownload) on Search Page.

  • Reading a Compressed File from a ZIP File, which is an entry of ZIP File

    Hello, Experts,
    Would it be possible somebody to help me with code example for the following problem?
    I want to read a compressed file from a ZIP file, which is an entry of ZIP File, without extacting/writing files on file system. Is this possible?
    Lets say we have a ZipFile1. There is ZipFile2 inside ZipFile1. And inside ZipFile2 is FileA. The scenario is reading FileA without extracting on file system.
    Thank you in advance for your help.
    Cheers
    RADY

    The classes you want to be using are java.util.zip.ZipInputStream and and ZipEntry from the same package. Construct the ZipInputStream with the input you have for the outer zip. Loop with ZipInputStream.getNextEntry until you find the inner zip you're looking for - that method returns a ZipEntry, and you get the name of the zip entry with ZipEntry.getName. Read the ZipInputStream from that point into some buffer, and read that buffer into a new ZipInputStream - rinse and repeat until you have the contents of the file in the zip in the zip...

  • Issue with file to file in PI 7.3 (Splitting huge files)

    Hi All,
    Need your help in fixing the issue with file splitting
    We are doing some sample scenarios(file to file) on PI 7.3 server.
    We are trying to split a 10MB file by using the 'Advanced Mode' option in the sender file adapter. We gave max split file size as 2MB. The file got split into 5 chunks and was successfully sent to receiver file adapter. In receiver adapter we are able to see that. But in the target folder only 1 file was seen with size 2MB. All other chunks were missing. We need to have the whole data sent from source to target.
    How to fix this issue? please provide your inputs.
    Thanks and Regards,
    Lakshmi Narayana

    PI 7.3 has capable of processing larger size files.
    Questions:
    Have you picked EOIO quality of service? Hope you dont do mapping or content conversion for this file?
    have you seen this link
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a06d79f3-d094-2e10-1a81-f4d802d0bcf1?QuickLink=index&overridelayout=true
    http://help.sap.com/saphelp_nw73/helpdata/en/44/682BCD7F2A6D12E10000000A1553F6/frameset.htm

  • Issues with importing from excel

    I have been running into a several issues with importing from Excel.
    First my configuration
    I am running SQL Developer ver 1.5.5 Build MAIN-5969
    I am on a Windows XP Professional Version 2002 with Service Pack 3
    I am importing into an Oracle 10g database.
    1. SQL Developer doesn't work on Excel 2007, I have to save all my files into Excel 97-2003 format before I can use them.
    2. If I run into an error loading and stop the process, SQL Developer doesn't release the Excel file and I get a sharing violation if I try to save the spreadsheet without closing SQL Developer.
    3. I have found that I have to set print area to the area I want to work with, otherwise the import wizard tries to keep adding rows.
    4. When using the Import wizard, it keeps adding commas on fields with numerics unless I specify the column in excel as text. Currently the column is formatted as General in the spreadsheet or I can change the wizard format to say the column is an integer, but it actually is just a code field with numeric characters so it may have leading zeroes that I need to keep.
    This might be related,
    I have a column in excel defined as text but only contains numerics. It is of length 4, but the wizard sets a precision of 5 with a datatype of VARCHAR2. If I try to change it to 4, I get an error saying the field is not large enough. Yet, when I do a LEN on the column, it only gives me a 4. I have other fields in the same sheet that a 3 position numeric and 2 position numeric and those are fine. I am thinking this is related to the comma being inserted in a numeric field for anything greater than 3 positions.
    5. Importing excel dates to oracle dates doesn't work. I have to convert the excel date column to text then import as a VARCHAR, then convert to Date once in the database.
    6. The default of nullible is not set on any columns and I have to set them before the import. (I would prefer it set to nullible and I have to uncheck the box to make it not nullible. I would prefer to import all of the data and then deal with the nulls after they have been pulled in)
    7. When I select header columns included it uses that as the column names. Is it possible to do the name length check then? It has bit me a few times where I try to import and forget to check the name length and then I get an error when I start running the import.
    8. If one of the columns to import has all nulls, then the precision comes out to 0 and if it isn't changed an error occurs on import. Could this situation default to a precision of 1?
    9. It would be nice if there was a completion message displayed and a cancel option while running.

    On point 3.
    I have a column in excel that consists of numbers. 4 digit numeric codes. Ex, 1111, 2345, etc
    The column's format is general. It displays as just 4 numbers.
    When I start the wizard initially, the column appears with data as 1,111, 2,345, etc, on the Data Preview screen.
    It determines the precision to be 5 on the column definition screen.
    If I change the precision to 4 then continue, that field will error out when I verify with "not big enough to hold the data in source columns"
    If, I change the excel column to a TEXT column.
    Excel still displays as 1111, 2345, etc
    The wizard then displays the same data 1111, 2345 on the Data Previeiw screen
    Yet, when I get to the column definition screen it still sizes it as a 5
    If I change it to a 4, I get the same error when verifying.
    If I leave them alone as 5, then it processes just fine.

  • Receive Pipeline In Decoder Stage to Extract Single Or Multiple Files From A Zipped Folder In Biztalk Server 2010

    Hi,
    I need help in developing a customized pipeline for the Decoder Stage.
    Requirement : Extract single or multiple files from a zipped folder with any format and extension (X12/EDIFACT/Flat/XML) and send to Disassemble stage for further action.
    Need Urgent help.
    Any suggestion or help is much appreciated.
    Thanks & Best Regards

    Hi Siddharth,
    Have look at article: BizTalk Server 2010: Processing Zip Message Having Multiple Type
    Files and http://tech-findings.blogspot.com/2013/10/custom-zipreceivepipeline-to-unzip.html
    Maheshkumar S Tiwari|User
    Page|Blog|BizTalk
    Server : Scheduling Orchestration using Trigger Message

  • Permissions issue with OSX 10.5.8

    This is likely a newbie question. I am new to OS X, but I am familiar with Linux/Unix Terminal usage.
    I have a permissions issue with OSX 10.5.8.
    I cannot use basic commands on the Terminal, such as mkdir, on my own home directory. I get an error message saying the operation is not permitted.
    I have traced the probable culprit down to default ACL permissions settings.
    So after hours of research on Google, I found out that ACL are turned on by default in OSX 10.5.8.
    But I don't know how to safely use it yet, so I need help.
    I'm not quite familiar with ACL, so I need to know how to add myself safely and securely to modify my home directory.
    The command is with chmod. Can this also be done via the GUI?
    What is the option for chmod to modify my home directory?
    Is it:
    *$ cd ~*
    *$ chmod +a "user:john allow write" .*
    *$ chmod +a "user:john allow delete" .*
    Alternatively, if I use the "chmod -N ." command on the home directory, will that safely remove all ACL? Or is that recipe for a major security hole in my machine?
    Thanks!

    There are many people on this board that know way more than I do. Sometimes there is the tendency to copy/paste some kind of boilerplate response though, especially if there isn't quite enough information about a particular problem, so just keep trying.
    You should be able to add anything you want to your user directory without the use of any ACL entries. The purpose for the *deny delete* entries on the system created folders would probably be to reduce customer service calls about "accidentally" deleting some of the folders that the system expects to be there - it does not affect creating items.
    To verify that there aren't other attributes getting in the way, open the /Applications/Utilities/Terminal application, copy/paste the following command(s) into the window (there is a trailing space), drag the problem folder(s) from a Finder window to the Terminal window (this will paste the path), press return and post back with the results:
    /usr/bin/who am i; /bin/ls -leO@d
    These commands will display the ownership and permissions, including any ACL entries and extended attributes.
    On my Leopard user folder the permissions are drwxr-xr-x+ with an ACL entry *group:everyone deny delete*. These permissions allow read/write for me, read for everyone else, and an administrator authentication will be needed to delete the folder. These are similar to what you posted earlier, so maybe there is something else going on in there.

  • I have a Seagate expansion drive with files from my former pc.  How do I transfer these files to my new iMac?

    I have a Seagate expansion drive with files from my former pc.  How do I transfer these files to my new iMac?

    Drag them to the desired locations.
    (93394)

  • Will the current plugins for Sigma DP1/2 RAW files work with files from the DP1/2 Merrill cameras? A

    Will the current plugins for Sigma DP1/2 RAW files work with files from the DP1/2 Merrill cameras? And if not, is Adobe developing plugins for these cameras?

    Not sure what plugins you mean, Hornet - Lr doesn't rely on plugins to read new cameras.
    If you mean the Adobe Camera Raw (ACR) plugin - that's for Photoshop, not Lightroom. Lr has the same functionality as ACR, but it's hard-coded into the program, so if you're looking for support for a new camera, you need to wait for a new version of Lr.
    And nobody here can say when Lr support for a given camera will happen.
    Hopefully someone with a Merrill will be able to chime in about whether its files work with the current Lr.

  • My "undo" command does not work in the new version of GB.  Please advise.  This is a real problem.  I had no issues with  GB from iLife 11.

    My "undo" command does not work in the new version of GB.  Please advise.  This is a real problem.  I had no issues with  GB from iLife 11.

    Most likely you have Office 2004 which are PPC-only applications and will not work in Lion. Upgrade to Office 2011. Other alternatives are:
    Apple's iWork suite (Pages, Numbers, and Keynote.)
    Open Office (Office 2007-like suite compatible with OS X.)
    NeoOffice (similar to Open Office.)
    LibreOffice (a new direction for the Open Office suite.)

  • Please help! Issues with file permissions on the 'Edit' file created by LR for editing in Photoshop?

    I am running a Macbook Pro with Mountain Lion. I use a Netgear ReadyNas as my storage device. I can Save, Re Save, Delete and add files without any concern on the ReadyNas from within PS or LR. However when I use the 'Edit in Photoshop" command on LR. I chose the 'Edit a copy with edits', LR creates the new duplicate 'edit' file in the same directory as the original. It opens in PS, I edit as required, however when I save the file to return to LR, I am informed that the file is locked and that I need to edit settings on file or folder, even though the settings are working for all other edits etc. I have had Netgear on this for 3 hours this evening and they cannot see any issues with the setting on the ReadyNas. Does anyone know what permissions are changed or why they are changing when the file is being created by LR?
    Sorry bit of a long winded one - but I hope that all makes sense?

    h264 is highly compressed and might be the reason your skimming isn't smooth, it may also take a bit more time to convert. I don't have to worry all that much about space so I haven't particularly tried it and can't say whether there are any drawbacks of doing so.
    If you google 'mpegstreamclip tutorials', you will see quite a few tutorials you can look at, they do tend to be specific to one task which may not exactly fit in with what you are trying to do, but looking at a few might give you a better understanding of what some options do and when to use them if at all.

  • Extract files from a zip file

    Here is my scenario:
    I have a zip file, DataStore.zip, which as two layers of zip files.
                                         DataStore.zip
                                               |
               01.zip       02.zip         03.zip      04.zip etc
                                 |
                     02a.zip          02b.zip         02c.zip        
     etc
                         |
                cert1.zip   cert2.zip     cert3.zip     etc
    I need to search for  any cert.zip embedded at layer3, for which I have written the following program.
    I have two issues. First one is, when the files at level 1 (01.zip etc are written to the disk folder c:\ extract, it doesn't allow me to read back from that folder., I get "access to path c:\extract is denied". I researched and found that this
    is a security issue with windows 8 and 7. ( I tried both versions). How can I overcome this?
    second issue is, if in the  first read cycle  it fails with "unknown block type, stream may be corrupted", I need to bypass that corrupted zip file and continue, until I get my target file.
    The code is give below. Appreciate any help.. Thanks.
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    using System.IO;
    using System.IO.Compression;
    namespace TPMCert
    {   // Utility to copy a TPM certificate from the master file.
        public partial class Form1 : Form
            public Form1()
                InitializeComponent();
            private void Form1_Load(object sender, EventArgs e)
            private void btnSelDrv_Click(object sender, EventArgs e)
                if (folderBrowserDialog1.ShowDialog() == DialogResult.OK)
                    string filePath1 = this.folderBrowserDialog1.SelectedPath; //
                    this.txtDrv.Text = filePath1;
            }//btnselDrv
            private void btnTpmReq_Click(object sender, EventArgs e)
                    OpenFileDialog openFile1 = new OpenFileDialog();
                    if (openFile1.ShowDialog() == System.Windows.Forms.DialogResult.OK)
                        txtRqstFileName.Text = openFile1.FileName.Remove(0, 3); //remove first 3 chars which is c:/ etc
            private void btnGo_Click_1(object sender, EventArgs e)
                    string zPath = txtDrv.Text + "\\" +"TpmDataStore.zip"; //drive & filename to to search.....
                    string extractPath= txtDrv.Text
    +@"\extract";
                    string extractPath2 = txtDrv.Text + @"\extract\certs";
                    string copyPath = txtDrv.Text; // location of the tpm certificate finall written to..
                    bool filefound = false;
                     //look for the file. read only allowed...
                   // try
                        using (ZipArchive archive = ZipFile.OpenRead(zPath)) //open Tpm file for reading
                            txtInfo.AppendText("Processing ....  Please wait!" + "\n");
                            Cursor.Current = Cursors.WaitCursor; //busy cursor
                            foreach (ZipArchiveEntry zEntry in archive.Entries) //each top level zip file is written to \extract dir
                                zEntry.ExtractToFile(Path.Combine(extractPath, zEntry.FullName), true); //true- overwrite
                                txtInfo.AppendText(" First write passed...");
                                //next iterate thro' all zip files in \extract dir
                               using (ZipArchive archive2 =ZipFile.Open(extractPath, ZipArchiveMode.Update)) //read files in extract
                                   foreach (ZipArchiveEntry childEntry in archive2.Entries)
                                       childEntry.ExtractToFile(Path.Combine(extractPath2,
    childEntry.Name), true); //true- overwrite
                                       MessageBox.Show(childEntry.Name);
                                       txtInfo.AppendText(" Second cycle....");
                                       if (childEntry.Name == txtRqstFileName.Text)
                                               filefound
    = true; //
                                               //MessageBox.Show(zEntry.FullName);
                                               txtInfo.AppendText("Found
    file " + childEntry.Name + "\n");
                                               txtInfo.AppendText("File
    copied as " + copyPath + "\\" + childEntry.Name + "\n");
                                }//second using..
                            }//foreach
                            if (filefound == false ) // given file is not there
                                txtInfo.AppendText("File not found" +  "\n");
                        }//using
                    }//try
                       // catch (Exception ex)
                               // MessageBox.Show(" Error:" + "\n" + ex.Message);
                                return;
                             //finally
                            { Cursor.Current = Cursors.Default;
                // next
            } //btnGo..
        }//class form1
    }//namespace

    Hi friend,
    We'd better to ask one question in each thread. If you have another issue, you can consider to open up a new thread in this forum.
    Now for the first question, do you mean this picture? It throws access exception in archive2.
    If so , because your extractPath is a path, not a directory.You should add +"xxx.zip". For more information, please refer to
    ZipFile.Open
    Method (String, ZipArchiveMode).
    For the second question, you can use the following code to skip the error message.
    while (true)
    try
    //do something;
    catch (Exception ex)
    { continue; }
    Good day!
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Permissions issue with Time Machine backup store

    I am struggling with a Time Machine permissions issue on an iMac running OS X 10.10.2 + OS X Server 4.0.3, and backing itself up to an external USB disk.
    Backups complete successfully, but I am unable to carry out any user-level operations such as accessing the "time travel" interface via Enter Time Machine from the menu bar. Invoking Enter Time Machine fails with the error Can't connect to a current Time Machine backup disk. Likewise, although tmutil will correctly list the backup destination, tmutil listbackups produces an error:
    $ tmutil listbackups
    2015-02-05 16:53:19.413 tmutil[29181:2324148] Error enumerating (null): The file “Backups.backupdb” couldn’t be opened because you don’t have permission to view it.
    No machine directory found for host.
    My system logs are full of similar error messages from Finder.
    On the back volume, the permisisons to the store are set to owner root and group wheel, and there is an access control list applied to the directory and Backups.backupdb:
    $ ls -lae
    total 2688
    drwxrwxr-x  12 root  wheel      476 Feb  4 22:29 .
    drwxrwxrwt@  9 root  admin      306 Feb  4 11:57 ..
    0: group:everyone deny add_file,add_subdirectory,directory_inherit,only_inherit
    drwxrwx---+  6 root  wheel      204 Jan 30 13:49 Backups.backupdb
    0: group:everyone deny add_file,delete,add_subdirectory,delete_child,writeattr,writeextattr,chown
    -rwxr-xr-x@  1 root  wheel   115716 Nov 13 02:43 tmbootpicker.ef
    The problem is clearly the drwxrwx--- permissions applied to the store. I can temporarily revert these with chmod, after which all the user-level operations described above work correctly. But on the next backup, backupd will revert the permissions to give wheel write access and remove rx privileges for everyone else. It doesn't leave anything in the system log to suggest why it is making this change.
    I have a MacBook also running OS X 10.10.2, without the Server pack. This also backs up to a (different) external volume. On this volume the owner, group and access control list for the store are set as above, but the permissions are (and remain) what I would have expected, drwxr-xr-x.
    Is there any obvious reason why backupd should be modifying the permissions in this way — and is there any way to stop it?

    Thanks - I was seeing exact same problem on one of my client's machines (10.10.2 with OS X Server). I could see wrong group of "wheel" but wasn't certain that just changing to "staff" would be enough - but seems to have sorted things out

Maybe you are looking for

  • How do I make my old user account perform like the new one?

    I have a macbook pro 13" 2008 with 8 gb of ram that has been showing stuttering in hd video lately (or maybe when i upgraded to lion). I created another user and it doesn't seem to suffer any stuttering. Perhaps it doesn't have weird things running t

  • Error creating a web service client from th WSDL document (soamanager)

    Hello everyone, we have generate with the wizard a web-service using the function module BAPI_CONTROL_RECIPE_GET_LIST. Then we have generated with SOAMANAGER the end point. As test, we have used a web-service explorer of Eclispe and we can retrieve w

  • IPhoto movies not showing up in iMovie

    I have looked at a few other topics, and I think I have discovered the source of the problem, but I don't know how to fix it. I have: iMovie '08 and iPhoto '08. I went to QT player and selected "Show Movie Inspector" to look at the format. The two vi

  • Performance problem in SELECT statement

    HI All, How to improve the performance in given query? Query is..   data : begin of tzdate OCCURS 0,            zdate like sy-datum,          end of tzdate. data: p_adrnr like lfa1-lifnr.    SELECT  single adrnr into  p_adrnr           FROM lfa1     

  • IPad Album songs scramble out of order on IOS7

    I just loaded IOS7 on my iPad.  Now when I open iTunes and select "Albums", all the songs are scrambled out of order.  When I select "Artists" and view each album, the songs are back in correct order.  Please help...