Compiliations...error -54??

In transferring my music to my ipod from my new mac (just switched from pc) everything transferred except the albums classified as compilations. During copying I get an unknown error -54. I can listen to them on itunes but they will not copy. Has anyone had any experience with this?
Thanks

Place the iTunes library or the folder containing it into the frontmost Finder window, and then run the following from the Script Editor, which is in the /Applications/AppleScript/ folder:
tell application "Finder"
set locked of every item of entire contents of (folder of window 1) to false
end tell
This issue is often due to a locked item in the iTunes library, which can be unlocked by running the script.
(25443)

Similar Messages

  • ADF Regular expression Jspx page error

    Hi Friends
    Hi all i have requirement that my inputtext box may include charchters numbers and '&' as a special charchters
    so i written the below regular expression in validateRegExp tag
    <af:validateRegExp pattern="[a-zA-Z0-9&]" messageDetailNoMatch="Inproper text"/>
    but when i enter '&' char in the regex of the tag of my jspx page then it gives me compilier error, so is there any way to write the escape charachters in regular expression like '\ ' in java to avoid above problem.
    Thanks in advance
    Bipin patil
    Edited by: Bipin Patil on Aug 2, 2011 1:39 AM

    Hi..
    can you try with following
    for Ex: aA1& pattern
    ><af:inputText id="it1">
    ><af:validateRegExp pattern="[a-z][A-Z][0-9][&]" messageDetailNoMatch="Inproper text"/>
    ></af:inputText>
    for Ex: awerrAFDFDF12343&&& pattern(Every item should shown at least one time..)
    ><af:inputText id="it11">
    ><af:validateRegExp pattern="[a-z]+[A-Z]+[0-9]+[&]+" messageDetailNoMatch="Inproper text"/>
    ></af:inputText>
    Hope this will helpful..

  • Where can i download oracle.sql package?

    Hi!
    Can u please help me in finding out the site from where I can download oracle.sql.package.I need this for inserting images into the database using oracle.sql.BLOB class.I tried with java.sql.Blob.But I failed.can u please help me?
    Thank u,
    Ramana

    hello f.ahmed, in regards to the suggestion as how to import the oracle.sql package. I found the zip file and put the path to that zip file into my classpath. I even tried to unzip it. I still get compiliation errors in JSP telling me that they cannot find the oracle.sql.* package. Can you please tell me what i am doing wrong? Thanks for your time

  • File Upload Pluggable Java Component / Java Bean

    Dear Colleague,
    I integrated the File Upload java bean into one of my Forms 9i forms. I also had it up and running (!!!), but after I rebooted the machine, I no longer receive the File Upload dialog window as I did originally. When I press the button which starts the File Upload, it never displays the window to select a file. My trigger is as follows:
    begin
         /* Initialize the Java Bean */
         FileUploader.init('DOCU_BLOCK.FILE_UPLOADER','LOAD_CALLBACK_TRIGGER');
         /* Make sure the file is compressed on upload */
         FileUploader.setCompressed(true);
         /* Do the load to the c:\rolic\RKMS_documents\ directory on the server */
         FileUploader.UploadFile (:PARAMETER.file_destination);
    /* Error Handling */
    exception
    when FileUploader.FileUploaderEx then
    message (FileUploader.GetError);
    end;
    I have the "uploadclient.jar" file in my folder: C:\oracle9iDS\forms90\java
    I list the "uploadclient.jar" file in the forms config file, formsweb.cfg as follows:
    archive_jini=f90all_jinit.jar, uploadclient.jar, RKMS_images.jar
    and I reference the uploadserver.jar in the default.env file as part of the CLASSPATH as follows:
    CLASSPATH=c:\oracle9iDS\jlib\debugger.jar;c:\oracle9iDS\jlib\ewt3.jar;c:\oracle9iDS\jlib\share.jar;c:\oracle9iDS\jlib\utj90.jar;C:\oracle9iDS\forms90\java\UploadServer.jar
    =========================================================
    - Why did this work before I rebooted and now no longer???
    - Any tips? Ideas?
    =========================================================
    The uploadclient.jar file also successfully loads as shown in the Java Console:
    Oracle JInitiator: Version 1.3.1.9
    Using JRE version 1.3.1.9 Java HotSpot(TM) Client VM
    User home directory = C:\Dokumente und Einstellungen\Randy
    Proxy Configuration: no proxy
    JAR cache enabled
    Location: C:\Dokumente und Einstellungen\Randy\Oracle Jar Cache
    Maximum size: 50 MB
    Compression level: 0
    Loading http://quantum:8888/forms90/java/f90all_jinit.jar from JAR cache
    Loading http://quantum:8888/forms90/java/uploadclient.jar from JAR cache
    Loading http://quantum:8888/forms90/java/RKMS_images.jar from JAR cache
    connectMode=HTTP, native.
    Forms Applet version is : 90290

    HI,
    I'm facing nearly same problem.
    When i press a button in my form to enable client to select image from there local computer, following code executes ( WHEN-BUTTON-PRESSED)
    declare
         exSetup EXCEPTION;
         hButton ITEM := Find_Item('UPLOAD.SELECT');
    begin
    if (:upload.output_dir is null) then
    MsgBox.Show(MsgBox.STOP_ALERT,FileUploader90,'Error: A output directory on the middle tier must be specified');      
    raise exSetup;
    end if;
    FileUploader.UploadFile(:UPLOAD.output_dir);
    /* (:UPLOAD is a control block and output directory is a text field char 1000 having initial property = D:\IMAGE) */
    exception
    When FileUploader.FileUploaderEx then
         MsgBox.Show(MsgBox.STOP_ALERT,FileUploader90,'Error During Upload: '||FileUploader.getError);      
    When exSetup then
    null;
    end;
    There is no compiliation error.
    Runtime error is " Error During Upload: Desitnation directory does not exists or is not writeable ".
    Infact destination directory D:\IMAGE exists and is readable/writable to any one ??
    Any Help possible

  • HOW to use new Oracle 9i Features in Pro*C

    Hi All,
    I am an Pro*C developer. I tried using Oracle 9i Features like RIGHT OUTER JOIN, FULL OUTER JOIN, CASE ... etc inside proc program. But I am getting error while compiling it.
    My sample code:
    EXEC SQL DECLARE CARD_CUR CURSOR FOR
    SELECT A.EMP_NBR,
    FROM EMP A FULL OUTER JOIN DEPT B
    ON A.DEPT_NO = B.DEPT_NO;
    EXEC SQL OPEN CARD_CUR;
    Pre Compilier Error:
    Pro*C/C++: Release 9.2.0.5.0 - Production on Wed Dec 14 02:34:35 2005
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    System default option values taken from: /oracle/oracle/9.2.0.5//precomp/admin/pcscfg.cfg
    Syntax error at line 476, column 50, file br_afs_cardxrf.pc:
    Error at line 476, column 50 in file br_afs_cardxrf.pc
    FROM EMP A FULL OUTER JOIN
    ......................................1
    PCC-S-02201, Encountered the symbol "FULL" when expecting one of the following:
    ; , for, union, connect, group, having, intersect, minus,
    order, start, where, with,
    Even when I use CASE statement, i get some similar error.
    Can anyone guide me on this.
    Regards,
    ghu

    You will probably need to use dynamic SQL.
    See the discussion at:
    http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:53140567326263
    (while the question deals with SQLX, the answer is the same - Pro*C can't parse all SQL, but dynamic SQL is not parsed by Pro*C)

  • Readonly InputField

    Is it possiable to set the input field to readonly in Inbound Plug ?

    Where the mentioned code to be added.
    I understand from replies this is possibale.
    So,I have added a varibale called "InputFieldReadonly" in GlobalContext.
    In First View The value in TextField "NameInput_1" is in EDIT Mode.
    On CLicking a button page is navigated to Second View called "View2".
    In View2 there is InBound plug "<b>onPlugFromView1</b>"
    So i have added below code in InBound plug.
    I am getting compiliation error.
    I have added a Value Attribute in Global Context with name InputFieldReadonly
    Please help me to identify the problem exactly..
    public void <b>onPlugFromView1</b>(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onPlugFromView1(ServerEvent)
         IWDInputField inp = (IWDInputField) <b>view</b>Obj.getElement("InpFieldID"); inp.setReadOnly(true);    //@@end

  • Error Generated by DIO Port Read when using a compilied Operator Interface

    When using a compilied version of an TestStand Operator interface, a Vi that reads the status of a port on a PCI-6602 board stops working. Within this VI a sub VI called Read DIO Port brings back an error -10007. But when I use the un compilied version of the operator interface there is no problem with the VI.
    Why is this so?
    Attachments:
    Get_SIU_Switch_States.vi ‏58 KB

    I have tried to simulate this issue and I have not been able to replicate your issue.
    I know the -10007 occurs when you try and create/use a resource index that is not possible i.e if your referencing channel 9 and the device only has 8 channels.
    Have you managed to overcome this issue yet?

  • Error Compiliing:symbol  : class TextFileInput

    Greetings,
    I have two computers with the java compiler installed. On one, the program works perfect. On the other computer, it doent.
    Here is the error message I get when I compile the program:
    symbol : class TextFileInput
    location: class Project1
              TextFileInput dataFile = new TextFileInput(f);
    ^
    C:\cs212\Project1.java:66: cannot find symbol
    symbol : class TextFileInput
    location: class Project1
              TextFileInput dataFile = new TextFileInput(f);
    ^
    2 errors
    Tool completed with exit code 1
    The program works fine on the other computer. I have the same compiler version installed on both computers. I tried making changes to the class path but doesnt seem to work. What should I do. Please help
    Below is the code of my program:
    public class Project1
         * Main method.
         * @param args command-line arguments - inputFile.txt needed
         public static void main(String[] args)
              String filename      = args[0];
    final int ELEMENTS      = 10;
              String[] namesArray = new String[ELEMENTS];
              String[] speciesArray = new String[ELEMENTS];
              int     [] ageArray = new int [ELEMENTS];
              if (args.length != 1)
                   System.out.println("You have entered wrong "
                   + "argument information. Exiting the system");
              System.exit(0);
         }//end if args.length != 1
              int arraySize = readFile(args[0],speciesArray, namesArray, ageArray);
              displayResults(speciesArray, namesArray, ageArray, arraySize);
              sort(speciesArray, namesArray, ageArray, arraySize);
              displayResults(speciesArray, namesArray, ageArray, arraySize);
    }// end main
         * readfile method.- Read data from inputFile.txt and place
         * it into Arrays
         * @param f - the name of the file - inputFile.txt
         * @param sp - speciesArray - Array that contains the species
         * @param na - nameArray - Array that contains the animal names
         * @param a - ageArray - Array that contains animal age
         * @return - the size of the array to a variable called arraySize
         public static int readFile(String f, String[] sp, String[] na, int[] a)
              TextFileInput dataFile = new TextFileInput(f);
    //final String lineBreak = System.getProperty("line.separator");
              // Input the first line from the file:
         String line      = dataFile.readLine();
         int lengthFilled      = 0;
              // Read the content of the file and place it in a string of arrays
              while (line != null )
                   StringTokenizer st = new StringTokenizer(line, "|");
                   String species = st.nextToken();
                   String name = st.nextToken();
                   int age = Integer.parseInt(st.nextToken());
                   boolean validate = isValidSpecies(species);
    if (validate != true)
                        System.out.println("The line: \""+ line + "\""+ " in the file is not valid");
                   System.out.println("It will not be included in the array");
                   line = dataFile.readLine();
              else
                        sp[lengthFilled] = species;
                        na[lengthFilled] = name;
                        a [lengthFilled] = age;
                        lengthFilled++;
                   line                = dataFile.readLine();
              }//end else
              }// end while loop
         dataFile.close();
              return lengthFilled;
         }//end readFile
         * isValidSpecies method. - Makes sure the species is either a CAT or DOG
         * @param s - the species value of the array at xxx position
         * @return - it will return true if the species name is either CAT or DOG
         * - else it will return false.
         public static boolean isValidSpecies(String s)
              if ( (s.compareTo("DOG") == 0) || (s.compareTo("CAT") == 0))
              return true;
         else
              return false;
    }//end isValidSpecies
    * sort method. - It sorts the array based on name.
    * @param sp - speciesArray - Array that contains the species
    * @param na - nameArray - Array that contains the animal names
    * @param a - ageArray - Array that contains animal age
    * @param length - the size of the partially filled array
         public static void sort(String[] sp, String[] na, int[] a, int length)
              //Sort the array using selection sort array.
              for (int i = 0; i < length; i++)
                   // Find the lowest-valued element in
                   // the subarray from index i up to
                   // index length - 1
                   int indexLowest = i;
                   for (int j = i + 1; j < length; j++)
                        if ( na.compareTo(na[indexLowest]) <= 0 )
                             indexLowest = j;
                        // Put the lowest-valued element at
                   // index i, swapping if necessary:
                        if ( na[indexLowest].compareTo(na[i]) <= 0 )
                             String tempName = na[indexLowest];
                             String tempSpecie = sp[indexLowest];
                             int tempnumb = a [indexLowest];
                             na[indexLowest] = na[i];
                             sp[indexLowest] = sp[i];
                             a [indexLowest] = a [i];
                             na[i] = tempName;
                        sp[i] = tempSpecie;
                             a [i]           = tempnumb;
                        }//end if
    }//for loop
         }//for loop
    }//end sort method
    * displayResults method. - Display the info from the arrays to a JOptionPane.
    * @param sp - speciesArray - Array that contains the species
    * @param na - nameArray - Array that contains the names
    * @param a - ageArray - Array that contains animal age
    * @param length - the size of the partially filled array
         public static void displayResults(String[] sp, String[] na, int[] a, int length)
              JTextArea textArea = new JTextArea();
         textArea.setEditable(false);
         final String lineBreak = System.getProperty("line.separator");
              for (int i = 0; i < length; i++)
              textArea.append(sp[i] + " " + na[i] + " " + a[i] + lineBreak);
              JOptionPane.showMessageDialog(null, textArea);
    }// end displayResults
    }//end class Project1

    How could that be, that the class TexFileinput is
    missing. The installation of java, I believe version
    1.5.0_04 was done at the same time on both machines.That class is one of your classes. It's not part of Java. Look for it.
    Anyway, the classpath seem to be the same?
    I know the path is the same on both computers, but I
    dont know where to check for the class path.Type echo %classpath% at a cmd prompt.
    Thanks alot for your prompt response!!!!

  • Error in compiling a custom dictionary for text analysis

    I got a error when I tried to compile the custom dictionary for the Text Data Processing transformor. I am looking for help to solve the problem or work around the error.
    The error is as follows:
    [ERR] Can not create file [C:/ws_sclg.1]
    Here is the command I was using:
    C:\Program Files (x86)\SAP BusinessObjects\Data Services\bin> tf-ncc -d ..\TextAnalysis\languages -o C:\Sample Source\Dictionary C:\Users\jack\Documents\Visual Studio 2008\Projects\XMLFile1.xml
    It appears to me that the command was trying to create a log file or some temporary file in my C drive root directory, and the OS denied the action. The Data Services is running on a Windows 2008 Server R2. I wonder if there is a way to specify where to create this log file or tempory file?
    Any insight or help is appreciated. Jack

    Instead of calling the command from the windows shell command interface, I was able to call the compilier from Data Services; this problem is now resolved.

  • Program Error from running the *,exe file but works fine running with CVI

    When starting CVI created program on Win 2000, I get message “Program Error”.
    I have created a program using NI/CVI version 5.5. I am running windows 2000, I get message 
    “Program Error"
    *.exe has generated errors and will be closed by Windows. You will need to restart the program.
    An error log is being created.”
    It works fine when running directly from the compilier, but if I run just the *.exe I get this error.  I never used to.
    Please let me know if anyone else had this problem or knows solution.
    Thank you very much.
    Craig

    In the debugger unitialized globals are initialized to zero, but not for a release .exe.  So if you are checking whether a global pointer is NULL before it is set to a value by your application it will generally work fine in the debugger but may crash as a release configuration depending on what you use that pointer for.  That's a common thing I have run into.

  • Error ASPRUNTIME: Object reference not set to an instance of an object.in Visual Studio in method CopyPrecompiledFile.

    Hello, I have this issue and Ihave wasted atleast 2 days with this one. I have tried all possible solutions -
    1. Turn Off Real time McAffee scanning  -- I do not have real time scanning ON
    2. Delete Bin folder and start all over by adding references -- Did not work
    3. delete .compiles or refresh filesdelete temp files from asp.net temp files folder -- no .Compiled file. Deleted refresh files but no use
    4. change temp file for appliation in compilation tag of web config -- No use
    My application framework is .NET 4.5 and VSD 2012. I have tried to compile from C:\WINDOWS\Mi
    crosoft.NET\Framework folder as well as C:\WINDOWS\Mi
    crosoft.NET\Framework64 folder. Both gave same error.
    I need urgent assistance plz.
    Here is stack trace :
    C:\Development\Convergence\Applications\CAP\WixSetup\WixSetupView>"C:\WINDOWS\Mi
    crosoft.NET\Framework\v4.0.30319\aspnet_compiler.exe" -u -fixedNames -p "C:\Deve
    lopment\Convergence\Applications\CAP\TouchPointTier\Presentations" -v / "C:\Deve
    lopment\Convergence\Applications\CAP\PrecompiledWeb\ConvergenceCAP" -errorstack
    Microsoft (R) ASP.NET Compilation Tool version 4.0.30319.17929
    Utility to precompile an ASP.NET application
    Copyright (C) Microsoft Corporation. All rights reserved.
    error ASPRUNTIME: Object reference not set to an instance of an object.
    [NullReferenceException]: Object reference not set to an instance of an object.
       at System.Web.Compilation.BuildManager.CopyPrecompiledFile(VirtualFile vfile,
     String destPhysicalPath)
       at System.Web.Compilation.BuildManager.CopyStaticFilesRecursive(VirtualDirect
    ory sourceVdir, String destPhysicalDir, Boolean topLevel)
       at System.Web.Compilation.BuildManager.CopyStaticFilesRecursive(VirtualDirect
    ory sourceVdir, String destPhysicalDir, Boolean topLevel)
       at System.Web.Compilation.BuildManager.CopyStaticFilesRecursive(VirtualDirect
    ory sourceVdir, String destPhysicalDir, Boolean topLevel)
       at System.Web.Compilation.BuildManager.CopyStaticFilesRecursive(VirtualDirect
    ory sourceVdir, String destPhysicalDir, Boolean topLevel)
       at System.Web.Compilation.BuildManager.PrecompileAppInternal(VirtualPath star
    tingVirtualDir, IEnumerable`1 excludedVirtualPaths)
       at System.Web.Compilation.BuildManager.PrecompileApp(VirtualPath startingVirt
    ualDir, IEnumerable`1 excludedVirtualPaths)
       at System.Web.Compilation.BuildManager.PrecompileApp(ClientBuildManagerCallba
    ck callback, IEnumerable`1 excludedVirtualPaths)
       at System.Web.Compilation.BuildManagerHost.PrecompileApp(ClientBuildManagerCa
    llback callback, List`1 excludedVirtualPaths)
       at System.Web.Compilation.BuildManagerHost.PrecompileApp(ClientBuildManagerCa
    llback callback, List`1 excludedVirtualPaths)
       at System.Web.Compilation.ClientBuildManager.PrecompileApplication(ClientBuil
    dManagerCallback callback, Boolean forceCleanBuild)
       at System.Web.Compilation.ClientBuildManager.PrecompileApplication(ClientBuil
    dManagerCallback callback)
       at System.Web.Compilation.Precompiler.Main(String[] args)
    C:\Development\Convergence\Applications\CAP\WixSetup\WixSetupView>pause
    Press any key to continue . . .

    I know these warning are not related to my issue that is the reason i am not able to understand what is wrong with it. Its a huge application and compiliing takes atleast 6-7 hrs and after that I get error in "copyPrecompiledFiles" method.
    I have circular reference issue in application but when I build application in specific sequece, it goes away so after builing application with 0 errors, i execute command to precompile
    rmdir C:\Precompiled /s /q
    mkdir C:\Precompiled
    "C:\WINDOWS\Microsoft.NET\Framework64\v4.0.30319\aspnet_compiler.exe" -u -fixedNames -p "C:\ApplicationPath" -v / "C:\Precompiled" -errorstack
    pause

  • Compilation errors after upgrading from 8.1.6 to 10.2

    I recently upgraded a Weblogic Workshop application from version 8.1.6 to 10.2 using the Import wizard in Weblogic Workshop 10.2. However, I am getting the following compilation errors:
    Problem encountered finding XML Schema metadata for XML Bean
    com.ssmb.amps.workflow.projectionApproval.ProjectionApprovalDocument
    Does any one has any idea on it?
    Thanks,
    Albert

    Hi,
    Once upgraded from s.1 to 10.2, XML Schemes are converted to XMLBeans. So, during compiliation XMLSchemas are encountered. Try deleting XMLSchemas and compile. Hope it may help.
    Krishna

  • Compiler error using compareTo

    I get a compiler error when I use compareTo with the Character class. I confirmed the error with following code from The Java Tutorial:
    public class CharacterDemo {
    public static void main(String args[]) {
    Character a = new Character('a');
    Character a2 = new Character('a');
    Character b = new Character('b');
    // ******* Problem is here ************
    int difference = a.compareTo(b);
    if (difference == 0) {
    System.out.println("a is equal to b.");
    } else if (difference < 0) {
    System.out.println("a is less than b.");
    } else if (difference > 0) {
    System.out.println("a is greater than b.");
    System.out.println("a is "
    + ((a.equals(a2)) ? "equal" : "not equal")
    + " to a2.");
    System.out.println("The character " + a.toString() + " is "
    + (Character.isUpperCase(a.charValue()) ? "upper" : "lower")
    + "case.");
    The compilier is complaining that compareTo is not part of the Character class. I am compiling with whatever compilier was installed with Suse Linux 7.1. The code compiles fine on my university's Unix system that I can dial into.
    I figure my Linux version must have some old compiler. But to be honest, I am also new to Linux and am having trouble figuring out what I am compiling with. Can any expert out there give me advice on identifying/updating the Java technology I am using. Thanks in advance.
    Jim

    Check the jdk version using the java command:
    java -versionwhich will output the jdk version you're using.

  • Syntax Error when using SQL Expression

    Morning all,
    When I try to type any SQL Expression within Crystal I am getting syntax errors, even when I type only SELECT {field name} FROM {table name}.
    Here is the query I did which gave me the following error:
    Query
    SELECT  order_progress . date_created
    FROM order_progress
    WHERE  order_progress . order_no = order_header . order_no
    AND  order_progress . order_status =77
    ORDER BY  order_progress . date_created DESC
    Error
    Error in compiliing SQL Expression
    Database connector Error: 'HY000[Informix] [Informix ODBC Driver]General Error. Syntax Error[Database Vendor Code-11060]'.
    Now this means, 1: I am getting a connection error with my db, for no apperent reason. 2: my syntax is not approved?!
    Can someone explain why is this happening and how to resolve this?
    many thanks
    Kind Regards
    Jehanzeb

    Morning Kyle,
    Thanks for the informative answer, I have found out the formula which counts number of days however, I am not sure what you meant by the following:
    >
    Kyle McAdam wrote:
    > create a formula that does the datediff....this will be a group.
    Done this, it counts the working days as in weekdays and takes bank holidays out as well
    here is the formula:
    WhileReadingRecords;
    //{order_progress.order_status}= 77;
    //{order_header.order_status}>=77;
    Local DateVar Start := {order_header.date_entered};   // Starting Date
    Local DateVar End := {order_header.act_despatch};  // Ending Date
    Local NumberVar Weeks;
    Local NumberVar Days;
    Local Numbervar Hol;
    DateVar Array Holidays;
    Weeks:= (Truncate (End - dayofWeek(End) + 1
    - (Start - dayofWeek(Start) + 1)) /7 ) * 5;
    Days := DayOfWeek(End) - DayOfWeek(Start) + 1 +
    (if DayOfWeek(Start) = 1 then -1 else 0)  +
    (if DayOfWeek(End) = 7 then -1 else 0);  
    Local NumberVar i;
    For i := 1 to Count (Holidays)
    do (if DayOfWeek ( Holidays<i>) in 2 to 6 and
      Holidays<i> in start to end then Hol:=Hol+1 );
    Weeks + Days - Hol;
    You will then have a formula field that is evaluated to 1, if the status is 77.
    you mean second formula? How I used,
    If Order_header.Order_Status=77 then
    1
    else
    2;
    however this doesn't seem to be working.
    > Now, sum that formula in each group footer. Suppress the detail lines...
    which formula to sum up?
    > **Don't use a cross tab with this solution. For a cross tab, you would have to calculate the totals in a different manner.
    so far I used Cross tab and it is showing the right days, however not showing the correct jobs per day.
    You might be right there that it calculates the totals differently, additionally how am I suppose to get the right Percentage if using the Cross tab. The percentage should be, count of number of jobs % Total jobs.
    hence:
    {#NumofJobs} % {#Total_Jobs}
    however, when I create this formula it does not let me add that into the cross tab.
    I also need to put a subreport in my report, can I use Crosstab to contain a link to my subreport?
    Many thanks
    Kind Regards
    Jehanzeb

  • Error: cannot read: C:\Documents; and Settings\JR\Desktop\logrand.java

    Thats the problem.
    Bug started happening all the sudden.
    Double click a java file on the desktop that just two second before was built fine. Go to build it and it says that.
    "error: cannot read: C:\Documents; and Settings\JR\Desktop\logrand.java"
    Now note this is a file in the IDE.
    copy/paste/change file name/brand new file/turn off the computer. Everything on the desktop path says that same error message. Then i noted the semicolon in the middle of the path after documents. The compilier has misspelled the path name. Its open the file in the IDE but somehow the build step gets a path with a semicolon in the middle.
    What do i do?

    dont bother.
    it felt like some sort of corruption so i just reinstalled netbeans and that did the trick.
    I was still using 3.5 any way =)

Maybe you are looking for

  • Transaction variant not working in quality

    Hi, I have created a transaction varient in SHD0 and activated it in develpoment and then it is working fine in development system.Then variant transported to quality and there also it is activated but somehow it is not working in qulaity sytem. I ch

  • Sap crm(7.0)  datasource test extract error

    hi,all:    I  activate the CRM datasouce 0CRM_CIC_CTI  successfully, but when i did the test extract with T-CODE RSA3,THE error happened. the error description in the below:    Update mode F is not supported by the extraction API    Message no. R3011

  • How do I install Lion on more than one family computer?

    Q: What is the best way to load Lion on to multiple family computers? We have 2 iMacs, one Mac mini and one Mac Book Pro. I downloaded Lion to the newest iMac but now I need to bring my other machines into line preparing for Mountain Lion.

  • Does opening your InDesign CC 2014 Hyperlink tab freeze the application?

    I have our company's 36-page catalog originally created in CS6 in December 2013, then opened and save in CC in May 2014 and then opened and saved in CC 2014 last week, that is giving me problems whenever I try and open the "Hyperlinks" tab window fro

  • Is it dangerous to use the iphone 4 without the earpiece grill?

    Is it dangerous to use the iphone 4 without the earpiece grill/mesh on it? I heard it serves radiation cover and now I am worried about using it or holding it close to my ear. I had my screen replaced but the grill insert is missing as it was lost wh