TDS Upgarde Utility Error!

Hi,
While performing TDS upgrade from the excel sheet using TDS upgrade utility, system is performing the check (checking operation) and system give "Cannot perform '=' operation on System.Double and System.String."
Please reply ASAP.
Thanks.......

Hi,
Please revisit your excel sheet again as from the error it seems that some column in the Exchel sheet is not as per the guidelines which are mentioned in the help file for the TDS Utility.
Like Sections sheet has a column which is also linked in another sheet where section column is there. Check for columns having specific number or characters and entered more than specified.
Check such things as prepare the sheet as mentioned in the Guidelines.
Kind Regards,
Jitin
SAP Business One Forum Team

Similar Messages

  • TDS upgrade utility error

    We have updated the SAP from 2007 to SAP 8.8. I got the TDS template sheet from SAP and i filled the same but whenever i am running the file through TDS utility run. It is checking the data and it is giving me error message that u201CCannot perform '=' operation on System.Double and System.String."
    Please do the needful.
    Regards,
    Sarfraz

    i got the solution from SAP they made some changes in the sheet.

  • Error - TDS (TDS Upgrade Utility)

    Hi All,
    While running TDS Upgrade Utility following error had been occur
    1) Outgoing Payments TDS] Primary Key not exist in DB: row.657 
    2)Withholding Tax Rates] Primary Key not exist in DB: row.2   
    3)[Outgoing Payments TDS Amounts] Value in excel should equal to value in DataBase : row.2675 col.Deposit Amount (SC)
    Let me know some one face the same issue and get solved.
    Regards
    Anish

    Hi,
    Your list of error confirms that the excel which you have prepared to import using the TDS Upgrade Utility does not seem to ba complete (i.e Missing data) or all the sheets are not having data.
    Please check the Excel sheet again for the data and also prepare it based on the documentation.
    Kind Regards,
    Jitin
    SAP Business One Forum Team

  • "Failed to load excel file" an Error Message while running TDS upgrade util

    Dear All,
    "Failed to load excel file" an Error Message while running TDS upgrade utility when clicking on CHECK DATA.
    Please help me out on this!!!!!!!!!!!!
    Thanks..........

    Not all data can be exported to Excel easily. Especially if the query result is huge or there are special characters in the query results. You may try the most updated version.
    Thanks,
    Gordon

  • Date Format in TDS Upgrade Utility Import

    Hi
    Could any know the exact date format in TDS Upgrade Utility in excel file.  I tried with various formats like 01/04/2008, 20080401
    Its getting error: String was not recognized as valid Date Time. And also if you know any suggestions and solution regarding utility upgrade. please tel me.
    Thanks and Regards,
    Sudhir B.

    Hi Sudhir,
    Try: 2012-01-01 to see.
    Thanks,
    Gordon

  • TDS Upgrade Utility

    Hi
    I upgraded an DB 2007B to 8.81 PL 08.
    Now i'm doing TDS upgrading by utility tool.  My excel format for financial year master is
    Absolute ID     U_TDSFINCD     U_TDSFINDC     U_TDSFMDT     U_TDSTODT     U_TDSASEYR
    when i click check data in that tool. i'm getting the error: Fail to Load Excel File
    when i click UpgradeDB. I'm gettig  the error message : In order to perform upgrade, database needs a backup. Upgrade failed.
    I'm doing this in upgraded DB 8.8 PL 08. whether its correct. And what are all the other procedure for upgrading TDS which was not mentioned on the document. If any one upgraded TDS form 2007B  means please give me an solution and suggestions. 
    Thanks and Regards,
    Sudhir B.

    Problem Solved.
    There is an default excel file format in the TDS upgrading utility help file.

  • Disk Utility Error: The underlying task reported failure on exit 1

        #!/bin/bash
          # Author : Bill Hernandez
        # Location : Plano, Texas
        # Updated : Saturday, June 6, 2009 (1:48 PM)
        # script name : setdisk_ownerenabled
        # make sure to set permissions to execute
        <hr>
        # Description :
        <hr>
        # I've noticed that sometimes when using disk utility I cannot repair permissions, or I might get :
        # ERROR: The underlying task reported failure on exit 1
        # This shell script seems to have solved the problem.
        # It worked very well for me,
        # IF YOU USE THIS SCRIPT, IT IS AT YOUR OWN RISK...
        # DO NOT USE IT UNLESS YOU UNDERSTAND WHAT IT DOES
        # After running it, it is best to restart before using Disk Utility again
        <hr>
        # Details :
        <hr>
        # After partitioning a disk using "Disk Utility", and then begin using it, at some point I would get
        # an arror message when trying to save to one of the partitions, yet when I looked at the permissions
        # everything looked fine. I would then try to use Disk Utility to repair permissions and end up with a
        # cryptic error that pretty much told me nothing.
        # I noticed that while in Disk Utility, if I selected a partition the lower LH corner of the dialog
        # showed : Owners Enabled : No
        # I tried selecting the partitions at the Desktop and doing a (CMD-I) and at the very bottom of each
        # info dialog there was a checkbox :
        # [ ] ignore ownership of this volume
        # which I would check, even after logging in as root, and I couldn't seem to get a consistent way
        # to get rid of the permissions dialog failure, so I found the vsdbutil command which can be used
        # as follows to get partition, or disk info :
        # $ vsdbutil -c /Volumes/driveor_partitionname
        # ----> Permissions on '/Volumes/driveor_partitionname' are enabled.
        # if it is not enabled you can enable the disk or partition using :
        # $ vsdbutil -a /Volumes/driveor_partitionname
        # It will set "Owners Enabled : Yes"
        # This below script loops through the mounted disks, partitions, etc. and gives you information.
        # You can leave the three flags below all set to TRUE, or selectively use what you want and change
        # the rest to false...
        <hr>
        # CHOOSE {"TRUE", "FALSE"}
        <hr>
        getvolumestatus="TRUE"         # get "Owners Enabled : (Yes|No)" status
        setvolumestatus="TRUE"         # set "Owners Enabled : Yes"
        list_volumes="TRUE"                   # show volume names
        <hr>
        # DO NOT CHANGE ANYTHING BELOW HERE
        <hr>
        if [ $getvolumestatus == "TRUE" ]; then
         echo '============================='
         echo '$getvolumestatus'
         echo '============================='
         # get "Owners Enabled : (Yes|No)" status
         for i in $( df -l | sort -u | awk '{print $6}' | grep '/' ); do
         vsdbutil -c $i
         done
        fi
        <hr>
        if [ $setvolumestatus == "TRUE" ]; then
         echo '============================='
         echo '$setvolumestatus'
         echo '============================='
         sudo echo -n
         # set "Owners Enabled : Yes"
         for i in $( df -l | sort -u | awk '{print $6}' | grep '/' ); do
         sudo vsdbutil -a "$i"
         echo "setting Owners Enabled : Yes for ---> $i"
         done
        fi
        <hr>
        if [ $list_volumes == "TRUE" ]; then
         echo '============================='
         echo '$list_volumes'
         echo '============================='
         for i in $( df -l | sort -u | awk '{print $6}' | grep '/' ); do
         echo $i
         done
        fi
        <hr>
        

    As it turns out, this didn't completely solve the problem, it solved part of the problem.
    Here is a summary to the root cause of the problem.
    SUCCESS...
    Problem Summary : The system crashed and would hangup during boot, tried many things, until I eventually erased the disk and started over again.
    iMacG5 24 GHZ Intel with One internal disk partitioned into 3 logical drives
    Cub_1 OS X 10.5.7
    Cub_2 OS X 10.5.7 (Carbon Copy Cloner backup of Cub_1)
    Cub_3 OS X Server 10.5.7 (standard os x server setup)
    At some point after setting up standard preferences, OS X Server crashed.
    When I tried to restart, the machine would hang up during boot.
    Finally after several attempts, ran Disk Utility from install dvd and repaired Cub_3
    When I tried to run "Repair Permissions" on Cub_3 from install dvd, I got an error
    Disk Utility Error: The underlying task reported failure on exit 1.
    Rebooted, and started in single user mode (CMD-S) during boot until I saw the unix commands on the screen
    RAN : root # fsck -fy
    Then I began seeing the same command filling the screen :
    posix_spawnp("/usr/sbin/mDNSResponder") could not find file or directory
    Called Enterprise Support and spoke to Frank Alcorn, he said this was most likely a permissions problem and asked me to try repairing permissions from the install dvd. I told him about the error, but nevertheless I tried it again and got the same Disk Utility Error: The underlying task reported failure on exit 1..
    He asked me to try booting into single user mode again, and to try
    root # chmod 775 /
    root # reboot
    During the reboot process the machine got hung up again, and could not get the single user mode to work at all.
    Frank said the command needed to be :
    root # chmod 1775 /
    Frank asked me if I had changed anything in file sharing, and I told him I had. He asked me what I had shared, and I said the entire drive Cub_3. He asked me what I had done for permissions, if I had denied permissions to anyone. I told him that I had set myself up as the only user that could have access to it, and when he said that's where the problem was the lightbulb went off, and it made sense.
    Shortly after I set the sharing preferences is when the server crashed. It all makes sense now...
    Frank said not to share the entire disk, only portions (share points) of it. I had done this in Panther Server, and Tiger Server and it worked fine, but apparently Leopard Server works a little differently, maybe more secure.
    It seems to me that if sharing the entire disk, which is what I needed would cause such a problem there should have been some sort of warning from the operating system, but there wasn't. I had run into this problem several times over the past three weeks since I had started working with Leopard Server, but in each case I ended up re-installing OS X Server and starting over again.
    I told him I would try to reboot from the OS X partition (Cub_1) and try it from there.
    He asked me to let him know if it worked, and I said I would...
    Problem FIX :
    I booted back into the partition containing OS X (Cub_1) and did the following via the Terminal.
    $ su - root
    $ chmod 1775 /
    $ reboot
    During the reboot process I held down the (OPTION) key, and selected Cub_3 (the os x server partition) and sure enough after a few minutes of holding my breath the login window magically appeared. So I logged in, and did not have to re-install the server. Hallellujah....
    This solved the boot hang problem. It is great to finally have an answer. In retrospect it makes sense, but that's why its hindsight...
    The reason for sharing the entire disk in my mind was that since I was the only user on the system, it was easier to have one disk mounted on my workstation rather than several folders. It made sense to me, it still does. I don't need a bunch of folders, just one disk is easier...

  • Utility error

    Hello,
    I recently changed to Yosemite and since then I have a funny situation, which is bugging me.
    Every 20 minutes on the dot a window pops up from the console with the message "Utility error" In the box is a cloud visible with a zipped up zipper. When I open up the console the information for this incident says
    Facility                    org.pythonmac.unspecified.Utility
    CFLog Thread        1307
    GID                         20
    Host                         name.fritz.box
    Level                       4
    ReadUID                 501
    Sender                    Utility
    Message                 Utility Error
    I have no idea, what that means and how to get rid of it.
    Can somebody help please.
    best regards
    Mark Riccius

    You can find which application threw this error from activity monitor. In my case it was an application called ZipCloud. After I trashed it, the error popup has gone away.

  • TDS Upgrade Giving Error.

    Hi,
    While performing TDS upgrade from the excel sheet using TDS upgrade utility, system is performing the check (checking operation) and system give "Cannot perform '=' operation on System.Double and System.String."
    Please reply ASAP.
    Thanks,
    Tushar Nathwani

    Hi tushar,
    Chevk that you are following the steps mentioned in upgrade utility guide.
    If problem still there,contact citixys.
    Contact harish kumar: harish.kumar @ citixsys.com
    Thanks,
    Neetu

  • Please help - Java.util Error! Have no clue! - Please Help

    Hey guys,
    Im very new to java,
    With my code here :
    import.java.util.Scanner;
       public class delta{
       public static void main(String args[]){
            Scanner done = new Scanner(System.in.());
            System.out.println(done.nextLine);
    }I am unable to compile due to a Java.utill error!, can someone please tell me where i am going wrong? or provide me with a guide on how to setup netbeans because i think that is where i am going wrong !
    -thanks!

    815788 wrote:
    its
    package <error>.java.util does not exist.it also doesn't let me compile because of this.And, to fill in the information you didn't yet post, this referred to your "import" line, right? Please don't hoard information. Tell us what the problem is.
    As to the fix, look at your "import" statement and compare it to "import" statements in your textbook or tutorial or notes or whatever you're learning from.

  • How do I remove the repetitive Utility error.

    I have a repetitive Utility error on macbook that flags every 10 minutes. I then have to either open console or terminate. How do i prevent the constant pop up.

    This is happening all the time on my IMAC. Does anyone know how can I get rid of it.

  • TC will not communicate with Airport Utility error -6753.  Wireless, internet (unsecure), and backup work fine., ,

    TC is not communicating with Airport Utility (error -6753).  I do have a flashing amber light.   The wireless (printer, TiVo), internet (unsecure), and backups to Time Capsule work fine.  I have done many hard and soft Resets, but that has not helped.  Airport utility show the TC as amber and but won't let me findout the status of what is causing the problem.  

    What mode is the TC running in, router or bridged? You can sometimes have issues if the TC is bridged and the network is getting IP in a different subnet.
    I would recommend disconnecting the TC from the network and plugging it directly into the Mac via ethernet. You may also need to do a reset if the dhcp is off, as in bridge.
    Also note are you pressing the reset for long enough that the led on front starts blinking rapidly.. hold it in for 15sec to be sure.

  • Disk utility error message

    My daughter told me her Mac mini isn't booting up past the grey screen. I put in the install disk and started it up pressing "C" and used Disk Utility to attempt to figure out what's up. I got the following error message:
    Could not repair due to underlying task failure on exit (-9972)
    Does this mean the hard drive is toast? I don't have any HD repair software-with all my Macs I've never run across a problem that the boards here or Disk Utility couldn't fix for me. I don't know if she damaged the drive (she claims the cat chewed on the edge of the mini-sounds a bit like the "dog ate the homework"), or if it failed. It was purchased last year when Tiger was released, so it should still be under warranty. Any ideas about what I could try next?
    Thanks
    ~margaret
    17 iMac G4 1.25GHz 160GIG HD   Mac OS X (10.4.3)   G4 iBook, Mac mini, 10G iPod, iPod mini (pink!), Apple IIGS

    Dale, although the -9972 error is probably some serious data error on the drive, which can sometimes be solved by an Erase & Install of Mac OS X, the fact that the Hardware Test reports an issue probably means that the data error was caused by physical damage on the drive.
    I have to say that I find your post(s) most unhelpful. It' true that the informatin contained in them can be useful, however, you could have made the effort to sort it for iMargB. The fact that you didn't, plus your posting of the exact same post in two different threads, makes me feel that you are in a hurry, and that you sacrifice quality to quantity. Trying to help as many people as possible is a good thing, however, we are here to help (or to be helped), not to overwhelm people with information, hoping that they will figure it all out on their own.
    iMargB, the Hardware Test is not part of Mac OS X, it is a system-specific volume, which explains why it is included on your original disc rather than on the Tiger one. Your guess of using the latest OS's Install disc was a good one though, when it comes to using Disk Utility for example : attempting to repair a Tiger installation with a Panther disc is not a good idea, as it might damage it instead, because of the differences between Panther and Tiger.
    Although I know little about the Hardware Test's error messages, the "Master" part is not what would worry me, as it could just be the position of your hard drive's jumper (which could be Master, Slave, or Cable Select). However, if the Mass Storage test is failing, I would suspect a hardware issue with the drive itself. Hardware Test is known to miss a few things sometimes, but the reverse isn't true. Thus if it reports a bad drive, I think it is safer to assume that there is an issue than to assume that Hardware Test is wrong. Moreover, the "Invalid Node Structure" is very likely due to physical damage (as I already said), therefore, zeroing out all data and reisntalling Mac OS X or using Disk Warrior could be very temporary fixes.
    If you have a FireWire cable, I would suggest booting your Mini in FireWire Target Disk Mode to retrieve as much data as you can, with another Mac such as your iMac or iBook. Instructions can be found here. There may still be a chance that the other Mac could see the drive, so not all your data would be lost. Then, I would take it to Apple for repair, as the drive could be failing.

  • MacBook Pro Stuck in Recovery Loop; Disk Utility Error

    I am getting the error: Disk Utility Stopped Repairing "disk0s2" - says disk utility can't repair the disk and I will need to reformat the disk and restore my files. This appears to be the startup disk (could be wrong) - as I am currently in recovery mode and any time I reboot, I am taken back to recovery mode and there are no start-up disks available to be selected.
    When I run Disk Utility on my Internal HD (or what appears to be - this is 250 GB Hitachi) - I get the all clear that everything appears to be working correctly.
    I do have TMbackups saved to a NAS. My MacBook Pro has been running very slowly as of recent (slight boost after upgrading to Yosemite, but then returned to slow performance).
    I am running OS X Server on it - and have considered migrating that to a Mac Mini (yet to be purchased) - but want to get a better idea of options before I pull that trigger. I also want to make sure my MacBook Pro is recoverable and can still be used.
    1. What is the risk of reformatting just the startup disk "disk0s2"? Is that even possible?
    2. Is MacBook Pro in need of service at the apple store? Or can this be completed by me? (I have above average ability, but no wizard)
    3. My logic on best practice to recover MBP and then add Mac Mini, migrating OS X Server to it: (all recommendations/suggestions welcome)
    a. reformat MBP startup disk
    b. restore TMbackup
    c. use migration wizard to migrate OS X Server to Mac Mini
    d. reformat MBP again, starting from scratch and install fresh copy of Yosemite
    I had also considered just a fresh build of OS X Server on a new Mac Mini and starting fresh with the MBP. I don't use a ton of services on OS X Server so think my rebuild would be less time intensive than most.
    Appreciate all the feedback.

    Well, your hard drive (flash storage) is good, at least. Here's what I would try next (before making a trip to the Apple Store or an AASP):
    Boot into your Recovery partition and reinstall OS X. This won't damage or erase any of your user files, etc., just give you a fresh installation of Mountain Lion. Since your hardware seems to be OK, it could be that the system has just become corrupt and reinstalling it may 'fix' the problem.
    Call back if that doesn't work...
    Clinton

  • Disk Utility Error "no valid packages"

    Hi,
    I have a PowerBook G4 with 1GB RAM.
    I've noticed a significant system slowdown lately. Programs take longer to open and respond, and it's rather annoying. I came to the forums to seek some remedy, and tried to run a Disk Utility to check that everything there is at least okay. But when I click on verify permissions, I get an error that says "no valid packages." Does anyone know what this means and how to fix it (if it needs fixing; I'm assuming this isn't a good thing, whatever it is!).
    Thanks.
    Lori

    Hi librarygirl and Welcome to the Discussions!
    Mac OS X 10.3, 10.4: Disk Utility shows a "No Valid Packages" alert
    Disk Utility can't verify or repair permissions on the Mac OS X 10.3 or 10.4 volume if the "BaseSystem.pkg" file is not in /Library/Receipts.
    This alert appears when you try to repair permissions with Disk Utility:
    "First Aid failed
    "Disk Utility stopped repairing permissions on '(volume name)' because the following error was encountered: No valid packages"
    In the Disk Utility text window, this message appears in red text:
    "Error: No valid packages (-9997)"
    This happens when the BaseSystem.pkg file is not in /Library/Receipts.
    Solution
    If you've moved this file, move it back to /Library/Receipts. You shouldn't normally remove any files from /Library/Receipts.
    If the file has been deleted, replace it by copying it from a different computer that uses Mac OS X 10.3 or 10.4, or by reinstalling Mac OS X 10.3/10.4 from an installation disc.
    "Reinstall" means you can install 10.3 or 10.4 from a disc, if it's the same version of 10.3/10.4 (such as 10.3.3 on both the installation disc and computer). If the version of 10.3/10.4 on the computer is newer than what's on the install disc, then use the install disc to perform an Archive and Install installation instead, then update to a later version of Mac OS X.
    Joe

Maybe you are looking for

  • How do you print data from a form?

    From the interactive report, there's a built in function to print to variious formats (e.g., PDF, CSV, etc). As long as the columns do not exceed the width of a page, it's okay. But what I want to do is when a user clicks on 'edit' from the interacti

  • How to display a message when no data found in report

    Hi all i have report with few user parameters when i run the report and no data found then i want a message Please Guide thanks And Reagds Vikas Singhal

  • IPhone Rings When Hooked Up to iHome Speakers

    Hi!!! I have the iHome speakers for my iPhone and I use them at work. I keep my iPhone on vibrate. When someone calls me, you can hear the phone ring through the iHome speakers and it gets pretty loud (I have the "alarm" for my ringtone). Does anyone

  • Archivelink Parameters for Adobe Form

    Hello, I am trying to Archive outbound correspondence (SAP Adobe Form) to a content repository that I set up for Inbound correspondence using Archivelink. Archivelink is configured and working for Inbound corresponence that resides on my local drive,

  • Db link in trigger causes compilation error

    Using Forms 10.1.2.0.2 Post-Query trigger BEGIN SELECT item_desc INTO :block1.item_desc FROM items@database100 WHERE item_code = :block1.item_code; EXCEPTION WHEN NO_DATA_FOUND THEN item_code := 'No description for this item'; END; Compilation error