Subprocess 33 was not successful. Master cannot read return value from S 33

Hi All,
We are on BI 7.0 SP 19.
We have submitted a planning sequence in the background with automatic packaging.
The planning sequence has two steps:
Step 1. Z_PLNG_FUNCTION1
Step 2. Z_PLNG_FUNCTION2
As per automatic packaging, the system chose 0ACCOUNT for packaging.
When submitted, each step has been submitted to 30 packages as 30 subprocesses.
For Step 1, the log shows that All subprocesses  executed.
For Step 2, the log shows that the subprocess 33 and 58 failed, which means subprocess #3, and # 28 for the step 2 as the subprocess is numbered in the log in combination with step 1.
The messages in the log for the failed subprocesses are as follows:
@5C\QError@     Subprocess 33 was not successful
@5C\QError@     Master cannot read return value from subprocess 33
@5C\QError@     Subprocess 58 was not successful
@5C\QError@     Master cannot read return value from subprocess 58
Our question is on how to find the exact cause of the subprocess failure.
I tried to look for the details on the error messages, they have been not helpful.
What is meant by 'Master cannot read return value from subprocess' and how to get the exact cause of the failure?
Thanks in advance,
Best Regards,
- Shashi

Shashi,
implement the following notes and check again:1368659, 1525723, 1532061.
Regards,
Marc
SAP Techology RIG

Similar Messages

  • RE: (forte-users) Reading return value from Javaprogram

    when using the RunCommand method you can specify the an error file:
    task.part.os.RunCommand(command = l_tdCommandLine,
    isSynchronous = TRUE,
    inputFile = Nil,
    outputFile = Nil,
    errorFile = l_ErrorFile.GetLocalName(TRUE));
    BEGIN
    l_ErrorFile.Open(SP_AM_READ);
    EXCEPTION
    WHEN Ex: FileResourceException DO
    l_ErrorFile = NIL;
    task.ErrorMgr.Clear();
    END;
    IF l_ErrorFile <> NIL THEN
    l_tdFileContents : TextData = New();
    l_ErrorFile.ReadText(l_tdFileContents);
    l_ErrorFile.Close();
    END IF;
    Have you java program output the return value to the standard IO. This way
    you will have an error file that you can read from Forte.
    ka
    -----Original Message-----
    From: Anthony D [mailto:saigonxyahoo.com]
    Sent: Tuesday, September 12, 2000 7:49 AM
    To: forte-userslists.xpedior.com
    Subject: (forte-users) Reading return value from Java program
    Hi,
    Does anyone know whether Forte application can
    read a return value from a Java program?
    I'm using the RunCmd method to invoke the Java
    program. I'd like to read the return value from the
    Java program. How do I go about doing it?
    Any suggestion will be appriciated.
    Thanks
    AD
    http://mail.yahoo.com/
    For the archives, go to: http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: forte-users-requestlists.xpedior.com

    when using the RunCommand method you can specify the an error file:
    task.part.os.RunCommand(command = l_tdCommandLine,
    isSynchronous = TRUE,
    inputFile = Nil,
    outputFile = Nil,
    errorFile = l_ErrorFile.GetLocalName(TRUE));
    BEGIN
    l_ErrorFile.Open(SP_AM_READ);
    EXCEPTION
    WHEN Ex: FileResourceException DO
    l_ErrorFile = NIL;
    task.ErrorMgr.Clear();
    END;
    IF l_ErrorFile <> NIL THEN
    l_tdFileContents : TextData = New();
    l_ErrorFile.ReadText(l_tdFileContents);
    l_ErrorFile.Close();
    END IF;
    Have you java program output the return value to the standard IO. This way
    you will have an error file that you can read from Forte.
    ka
    -----Original Message-----
    From: Anthony D [mailto:saigonxyahoo.com]
    Sent: Tuesday, September 12, 2000 7:49 AM
    To: forte-userslists.xpedior.com
    Subject: (forte-users) Reading return value from Java program
    Hi,
    Does anyone know whether Forte application can
    read a return value from a Java program?
    I'm using the RunCmd method to invoke the Java
    program. I'd like to read the return value from the
    Java program. How do I go about doing it?
    Any suggestion will be appriciated.
    Thanks
    AD
    http://mail.yahoo.com/
    For the archives, go to: http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: forte-users-requestlists.xpedior.com

  • Remote Object - not able to get the returned value from java method

         Hi ,
    I am developing one sample flex aplication that connects to the java code and displays the returned value from the
    java method in flex client. Here I am able to invoke the java method but not able to collect the returned value.
    lastResult is giving null .  I am able to see the sysout messages in server console.
    I am using flex 3.2 and blazeds server  and java 1.5
    Here is the code what I have written.
    <?xml version="1.0" encoding="utf-8"?><mx:WindowedApplication  xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" backgroundColor="#FFFFFF" initialize="initApp()">
     <mx:Script><![CDATA[
    import mx.controls.Alert; 
    import mx.binding.utils.ChangeWatcher; 
    import mx.rpc.events.ResultEvent; 
    import mx.messaging.*; 
    import mx.messaging.channels.* 
    public function initApp():void { 
         var cs:ChannelSet = new ChannelSet(); 
         var customChannel:Channel = new AMFChannel("my-amf", "http://localhost:8400/blazeds/messagebroker/amf");     cs.addChannel(customChannel);
         remoteObj.channelSet = cs;
    public function writeToConsole():void {      remoteObj.writeToConsole(
    "hello from Flash client");
          var returnedVal:String = remoteObj.setName().lastResult;     Alert.show(returnedVal);
    //[Bindable] 
    // private var returnedVal:String; 
    ]]>
    </mx:Script>
    <mx:RemoteObject id="remoteObj" destination="sro" /> 
    <mx:Form width="437" height="281">
     <mx:FormItem>  
    </mx:FormItem>  
    <mx:Button label="Write To Server Console" click="writeToConsole()"/>
     </mx:Form>
     </mx:WindowedApplication>
    Java code
    public  
         public SimpleRemoteObject(){  
              super();     }
      class SimpleRemoteObject { 
         public void writeToConsole(String msg) {          System.out.println("SimpleRemoteObject.write: " + msg);     }
         public String setName(){          System.
    out.println("Name changed in Java"); 
              return "Name changed in Java";
    And I have configured destination in  remote-config.xml
    <destination id="sro">
       <properties>    
        <source>SimpleRemoteObject</source>
        <scope>application</scope>
       </properties>
      </destination>
    Please help me .

    You are not able to get the returned value because if you see the Remote object help you will realise you have to use result="resultfn()" and fault = "faultfn()"
    In this you define what you wish to do.
    More importantly in the remote object you need to define which method you wish to call using the method class like this
    <mx:RemoteObject id="remoteObj" destination="sro" result="r1" fault="f1"  >
         <Method name="javaMethodName" result="r2" fault="f2"/>
    <mx:RemoteObject>
    r2 is the function where you get the result back from java and can use it to send the alert.

  • Child package cannot read param value from parent ssis package

    Hi all,
    I think I must be crazy !! i have a big problem in my ssis project .
    i have more than 40 package one parent and 39 childs 
    i use configuration method to get variable values from parent to child packages and it work well .. but when i copy my ssis project
    to the production server i face the following problem .. childs package didn't read the variables values from the parent package 
    i revised the configuration many times i can't find any missing !!
    any help please ...
    Thanks,

    Do not copy the packages from the projet to the production server, but you must generate the manifest installation including your configuration, and deploy them.
    Note : not forget to include the configuration.
    To learn more about how to install the package :
    Lesson 1:
    http://msdn.microsoft.com/en-us/library/ms365332(v=sql.105).aspx
    Lesson 2 :
    http://msdn.microsoft.com/en-us/library/ms365329(v=sql.105).aspx
    Lesson 3 :
    http://msdn.microsoft.com/en-us/library/ms365321(v=sql.105).aspx

  • How to get return value from java and read by other application?

    i want to read return value from java and the other application read it.
    for example:
    public class test_return {
        test_return(){
        public int check(){
            return 1;
        public static void main(String args[]){
           new test_return().check();
    }from that class i make as jar file. How to read the return value (1) by other application?
    thx..

    If your installer is requiring some process it invokes to return a particular value on failure, then the installer is seriously broken. There are a bazillion commands your installer could invoke, and any of them could fail, which in turn could invalidate the entire install process, and any of them could return any value on failure. The only value that's consistent (in my experience) is that zero means success and non-zero means failure, with specific non-zero values being different in different programs.
    About the only control you have over the JVM's exit code is that if your main method completes without throwing an exception, the JVM will have an exit code of 0, and if main throws an exception (either explicitly or by not catching one thrown from below), it will be non-zero. I'm not even sure if that's guaranteed, but I would guess that's the case.
    EDIT: I'm kind of full of crap here. If you're writing the Java code, you can call System.exit(whatever). But nonetheless, if your installer requires certain exit codes from any app--java or otherwise--you have a problem.
    Edited by: jverd on Oct 29, 2009 1:27 AM

  • Blackberry passport cannot connect to win 7 pro device driver software was not successfully installed

    I cannot get my passport to connect to eather of my PC's, one is running Win 7 Pro 64bit, and one is running Win 7 pro 32bit. both pc's give me the same driver error-"device driver software was not successfully installed" i have latest versions of Link and Blend installed on the pc's, and 10.3.0.908 on my pasport madel SQW100-1

    same issue here for a z2, only windows 7 pro on virtualbox in ubuntu (linux)
    very good service from sony that they reply instantly..
    whats the point in a exceptional good phone with poor support??
    if this poor service continues, this would be definatly my last sony device..
    and build a linux version of your crappy software!! android IS linux so you have plenty developers..

  • I tried partitioning my HD to install linux, the installion was not successful and now I can't boot my mac, I tried internet recovery, it was not helpfull as the disk utility cannot delete the partition I created.

    I tried partitioning my HD to install linux, the installion was not successful and now I can't boot my mac, I tried internet recovery, it was not helpfull as the disk utility cannot delete the partition I created. It was only showing me an error message "EFI files are missing", I realized that it is trying to boot from the new partition I created for the installation of the linux I intended to do.

    It sounds like you may have multiple problems, but none of them are likely to be caused by malware.
    First, the internet-related issues may be related to adware or a network compromise. I tend to lean more towards the latter, based on your description of the problem. See:
    http://www.adwaremedic.com/kb/baddns.php
    http://www.adwaremedic.com/kb/hackedrouter.php
    If investigation shows that this is not a network-specific issue, then it's probably adware. See my Adware Removal Guide for help finding and removing it. Note that you mention AdBlock as if it should have prevented this, but it's important to understand that ad blockers do not protect you against adware in any way. Neither would any kind of anti-virus software, which often doesn't detect adware.
    As for the other issues, it sounds like you've got some serious corruption. I would be inclined to say it sounds like a failing drive, except it sounds like you just got it replaced. How did you get all your files back after the new drive was installed?
    (Fair disclosure: I may receive compensation from links to my sites, TheSafeMac.com and AdwareMedic.com, in the form of buttons allowing for donations. Donations are not required to use my site or software.)

  • HT1600 Update was not successful after Restart

    Cannot update the latest Apple TV 3 software release.  The update appears to download but then never gets to step 2 and shows the error message "The update was not successful."  I have tried this several times with the same result. The Apple TV operates normally, but I would lke to keep the software up to date. Help will be appreciated.

    If your problem persists get yourself a micro USB cable (sold separately), you can restore your Apple TV from iTunes:
    Remove ALL cables from Apple TV. (if you don't you will not see Apple TV in the iTunes Source list)
    Connect the micro USB cable to the Apple TV and to your computer.
    Reconnect the power cable (only for Apple TV 3)
    Open iTunes.
    Select your Apple TV in the Source list, and then click Restore.
    If you get a message that the device cannot be found, download the following file (as appropriate for your device):
    Apple TV Software Restore 5.1.1 (2nd generation)
    Apple TV Software Restore 5.1.1 (3rd generation)
    Now hold down the option key when selecting restore and choose the downloaded file when prompted.

  • V5 in BPI Mode " Configuration data download to FPGA was not successful. DONE did not go high,"

    Hello,everyone.
    I am using virtex5 XC5VLX155 FPGA and trying to download mcs file to BPI flash and have failed.
    The flash is JS28F512P30E. The iMpact version is 14.7. 
    FPGA's VCCINT is 1.0V, VCCAUX is 2.5V. VCCO is 3.3V.
    M[2:0] is 010 in Master BPI.  Ican  program FPGA through JTAG. The FPGA_DONE pin 's  LED can always flash.
    The error is shown as below. the full  IMPACT console log and the SCHEMATIC_ FLASH are in the attachment.
    Using x16 mode ...
    Setting Flash Control Pins ...
    '1': Erasing device...
    '1': Start address = 0x00000000, End address = 0x004E4AFF.
    done.
    '1': Erasure completed successfully.
    Using x16 mode ...
    Setting Flash Control Pins ...
    INFO:iMPACT - Using Word Programming.
    '1': Programming Flash.
    done.
    '1': Flash Programming completed successfully.
    '1': Configuration data download to FPGA was not successful. DONE did not go high, please check your configuration setup and mode settings.
    PROGRESS_END - End Operation.
    Elapsed time =    692 sec.
    Hope everyone give more advices. Thank you.
     

    Thank you very much!
    I can read ack the mcs file, but the file is much bigger than the original mcs file.
    The flash datasheet is in the attachment.
    I want to use the Master BPI mode. In BPI_UP, the address starts at 0 and increments by 1 until the DONE pin is
    asserted. I do not know the difference between the BPI_UP and BPI_DOWN.
    ps:  The R61,R62 and R63 are not weld on the board. The ADV pin is tie to VSS .
     

  • Error when posting - Call up of feature PPMOD was not successful

    Good Afternoon,
    We recently completed an upgrade to ECC6.0 and this week we have seen two cases of receiving an error when trying to post payroll to FI using RPCIPE00.
    The error we are receiving is:  Call up of feature PPMOD was not successful, Message no. 3G100
    The diagnosis on the error message is:  Feature PPMOD has been called to set the employee grouping for account determination. This call was unsuccessful and suggests that we check the decision tree for PPMOD.
    While there have been some somewhat recent changes to PPMOD, I have stepped through the feature for both individuals who had this error and can find no problem with the logic in the decision tree. I've also regenerated the feature successfully. After searching OSS I found note 1243065, which is the exact error that we are receiving. The problem is that this note was included in HR support pack 44, and we're already on HR support pack 48. We also found a post that suggested we use RPCIPE00_OLD, but gave us the same error.
    My next step was to post a customer message, but thought it would be worthwile to post something here and see if anyone has any suggestions first.
    Thanks in advance,
    -Nick
    Edited by: Nicholas Petters on Apr 15, 2010 5:32 PM

    The issue may not be related to the note you indicated as this note should already be included in your system with SP 48. Please check what personnnel areas the errors ees are in, and see if they're in the decision tree of 'PPMOD' .
    If this looks OK, run payroll simulation for the error ee, put break-point in form 'CALL_549B' of program '/1PAPA/FEAT310PPMOD' and see what value STRUC-WERKS  (pers. area) is when it fails.

  • Error while releasing :-Content item  was not successfully checked

    Hi
    I have create a ucm user "john" which has auth type "Local" and roles of
              Admin
              contributor
              Sysmanager
    "admin" role:- has Groups/rights such as
              Rights.Apss.RepMan
              Rights.Apss.Workflow
              Rights.Apss.ConfigMan
              Rights.Apps.Archiver
              newgroup(RWDA)
              release (RWDA)
              secure (RWDA)
    "contributor" role :- has Groups/rights such as
              newgroup(RWDA)
              public(RW)
              release(RWDA)
              secure()
    "sysmanager" role has groups/rights
              newgroup(RWDA)
              public(R)
              release(RWDA)
              secure(R)
    When I am trying to release the documents I get error such as
    Event generated by user 'john' at host '192.168.21.215'. Content item <undefined> was not successfully checked in. Security group is not defined. Unable to validate user security. [ Details ]
    An error has occurred. The stack trace below shows more information.
    !csUserEventMessage,john,192.168.21.215!$!csUnableToCheckIn,!csSecurityGroupNotDefined
    intradoc.common.ServiceException: !csUnableToCheckIn,!csSecurityGroupNotDefined
         at intradoc.server.ServiceRequestImplementor.buildServiceException(ServiceRequestImplementor.java:1739)
         at intradoc.server.Service.buildServiceException(Service.java:1999)
         at intradoc.server.Service.createServiceExceptionEx(Service.java:1993)
         at intradoc.server.Service.createServiceException(Service.java:1988)
         at intradoc.server.ServiceSecurityImplementor.determinePrivilege(ServiceSecurityImplementor.java:795)
         at intradoc.server.DocumentAccessSecurity.checkSecurity(DocumentAccessSecurity.java:110)
         at intradoc.server.DocumentAccessSecurity.checkSecurity(DocumentAccessSecurity.java:67)
         at intradoc.server.ServiceSecurityImplementor.checkSecurity(ServiceSecurityImplementor.java:320)
         at intradoc.server.Service.checkSecurity(Service.java:2546)
         at intradoc.server.Service.checkSecurity(Service.java:2524)
    As per the document I have given the user required group and role permission . What more should I do to release it ?
    Guidance requested
    Thanks
    Joseph John

    By release you mean you are unable to checkin a document?
    How are you trying to checkin the document? DIS, SOAP, standard checkin form page??
    It looks as if you haven`t supplied a security group or content id on the document meta data when you have checked in the document..
    You can automatically assign content ids by going to admin server and enabling auto assign id check box.
    John should only need the admin role, that will give the user full access.

  • Iphone 5- Won't show up in itunes. Error message " Device drivr software was not successfully installed. Please consult with your device manufacturer for assistance getting this device installed. Digital Still Camera- Failed" HELP!

    Error message  " Device driver software was not successfully installed. Please consult with your device manufacturer for assistance getting this device installed. Digital Still Camera- Failed" HELP!

    Hi, I was able to reformat my iPod and that worked. I read it on one of the threads and I am copy pasting the method below:
    I opened the "My Computer" window and right-clicked on my ipod, and then selected "Format". I select "Yes" to format since I don't have anything on the nano to delete anymore.
    I then Eject my nano from the computer and did a restart while the nano is disconnected from the computer.
    Once Windows finish loading I reconnect the USB to the nano(back of computer) which automatically pulls up iTune. It asked me to name the new ipod detected and created a playlist for that specific ipod name.
    Pasted from <http://discussions.apple.com/thread.jspa?threadID=1050784&tstart=15>
    Thanks!

  • I have tried several times to install iTunes update 11.1.4 on my PC.  I get a message saying that install was not successful and an error message of MSVCR80.dll not present, Error 7, (Windows error 126).  I am told to reinstall iTunes, but nothing changes

    I have tried several times to install iTunes update 11.1.4 on my PC.  I get a message saying that install was not successful and an error message of MSVCR80.dll not present, Error 7, (Windows error 126).  I am told to reinstall iTunes, but nothing changes.  What next?  I've not had this problem with other updates requested by Apple.

    I have also had the same problem with my Win 7 32 bit computer.  I had great help from Apple techs in Montreal and Orlando for 2.5 hours.  They helped me remove every trace of Apple products and clean the registry in two different ways.  Each install gave the same problem!  If Apple techs can't fix it (on some of our machines) then we are really in trouble.  They promised to raise it with the "engineers" and get back to me with a solution.  I am waiting and hoping.  Otherwise maybe version 11.1.5 will have a fix ??

  • The requested URL was not found, or cannot be served at this time.

    Hi,
    While processing the Reports request, the Reports CGI gives
    the following error -
    The requested URL was not found, or cannot be served at this
    time.
    The error is shown only when the URL exceeds more than 1500 -
    2000 something. If i remove some of the parameters to make the
    URL shorter then it works fine. Is there any limitation
    regarding the length(number of characters) of the URL send to
    RWCGI60. Immediate help would be appreciated.
    Thanks in advance,
    Aniruddha.

    hello,
    there is a limitation of the URL length. this limitation is
    depending on the HTTP protocol and the used browser. it has
    nothing to do with oracle reports.
    a work around would transfer the parameter in the HTTP header.
    regards,
    the oracle reports team --pw                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Virtex6:Configuration data download to FPGA was not successful. DONE did not go high, please check your configuration setup and mode settings

    Hello,everyone.
    I am using virtex6 FPGA and trying to download mcs file to PROM and have failed.
    I download .bit file to FPGA and succeed.
    When i try to download .mcs file to PROM XCF128X-FTG64C(BPI Flash) and choose Slave SelectMAP Mode
    and the process is about 68% it fails.
    The message below the IMapct is as belows:
    done.
    PROGRESS_END - End Operation.
    Elapsed time =      0 sec.
    // *** BATCH CMD : identifyMPM
    // *** BATCH CMD : assignFile -p 1 -file "C:/Users/Administrator/Desktop/TEST/LED/led.bit"
    '1': Loading file 'C:/Users/Administrator/Desktop/TEST/LED/led.bit' ...
    done.
    INFO:iMPACT:2257 - Startup Clock has been changed to 'JtagClk' in the bitstream stored in memory,
    but the original bitstream file remains unchanged.
    UserID read from the bitstream file = 0xFFFFFFFF.
    INFO:iMPACT:501 - '1': Added Device xc6vlx240t successfully.
    INFO:iMPACT - Current time: 2014/3/13 8:48:14
    // *** BATCH CMD : Program -p 1
    PROGRESS_START - Starting Operation.
    Maximum TCK operating frequency for this device chain: 66000000.
    Validating chain...
    Boundary-scan chain validated successfully.
    INFO:iMPACT - 1: Over-temperature condition detected! [ 230.52C >  120.00C]
    1: Device Temperature: Current Reading:  230.52 C, Max. Reading:  230.52 C
    1: VCCINT Supply: Current Reading:   2.997 V, Max. Reading:   2.997 V
    1: VCCAUX Supply: Current Reading:   2.997 V, Max. Reading:   2.997 V
    '1': Programming device...
     Match_cycle = NoWait.
    Match cycle: NoWait
     LCK_cycle = NoWait.
    LCK cycle: NoWait
    done.
    INFO:iMPACT:2219 - Status register values:
    INFO:iMPACT - 0011 1111 0111 1110 0100 1011 1100 0000
    INFO:iMPACT:579 - '1': Completed downloading bit file to device.
    INFO:iMPACT:188 - '1': Programming completed successfully.
     Match_cycle = NoWait.
    Match cycle: NoWait
     LCK_cycle = NoWait.
    LCK cycle: NoWait
    INFO:iMPACT - '1': Checking done pin....done.
    '1': Programmed successfully.
    PROGRESS_END - End Operation.
    Elapsed time =     23 sec.
    Selected part: XCF128X
    // *** BATCH CMD : attachflash -position 1 -bpi "XCF128X"
    // *** BATCH CMD : assignfiletoattachedflash -position 1 -file "C:/Users/Administrator/Desktop/TEST/LED/leda.mcs"
    INFO:iMPACT - Current time: 2014/3/13 8:49:32
    // *** BATCH CMD : Program -p 1 -dataWidth 16 -rs1 NONE -rs0 NONE -bpionly -e -v -loadfpga
    PROGRESS_START - Starting Operation.
    Maximum TCK operating frequency for this device chain: 66000000.
    Validating chain...
    Boundary-scan chain validated successfully.
    INFO:iMPACT - 1: Over-temperature condition detected! [ 230.52C >  120.00C]
    1: Device Temperature: Current Reading:  230.52 C, Max. Reading:  230.52 C
    1: VCCINT Supply: Current Reading:   2.997 V, Max. Reading:   2.997 V
    1: VCCAUX Supply: Current Reading:   2.997 V, Max. Reading:   2.997 V
    '1': BPI access core not detected. BPI access core will be downloaded to the device to enable operations.
    INFO:iMPACT - Downloading core file D:/Xilinx/14.3/ISE_DS/ISE/virtex6/data/xc6vlx240t_jbpi.cor.
    '1': Downloading core...
     Match_cycle = NoWait.
    Match cycle: NoWait
     LCK_cycle = NoWait.
    LCK cycle: NoWait
    done.
    INFO:iMPACT:2219 - Status register values:
    INFO:iMPACT - 0011 1111 0111 1110 0100 1011 1100 0000
    INFO:iMPACT:2492 - '1': Completed downloading core to device.
    Current cable speed is set to 6.000 Mhz.
    Cable speed is default to 3Mhz or lower for BPI operations.
    Current cable speed is set to 3.000 Mhz.
    Setting Flash Control Pins ...
    Setting Configuration Register ...
    Populating BPI common flash interface ...
    Common Flash Interface Information Query completed successfully.
    INFO:iMPACT - Common Flash Interface Information from Device:
    INFO:iMPACT - Verification string:  51 52 59
    INFO:iMPACT - Manufacturer ID:         49
    INFO:iMPACT - Vendor ID:              01
    INFO:iMPACT - Device Code:            18
    Setting Flash Control Pins ...
    Using x16 mode ...
    Setting Flash Control Pins ...
    Setting Configuration Register ...
    '1': Erasing device...
    '1': Start address = 0x00000000, End address = 0x008CE03B.
    done.
    '1': Erasure completed successfully.
    Setting Flash Control Pins ...
    Using x16 mode ...
    Setting Flash Control Pins ...
    Setting Configuration Register ...
    INFO:iMPACT - Using Word Programming.
    '1': Programming Flash.
    done.
    Setting Flash Control Pins ...
    '1': Flash Programming completed successfully.
    Using x16 mode ...
    Setting Flash Control Pins ...
    Setting Configuration Register ...
    '1': Reading device contents...
    done.
    '1': Verification completed.
    Setting Flash Control Pins ...
    Current cable speed is resumed to 6.000 Mhz.
    '1': Configuration data download to FPGA was not successful. DONE did not go high, please check your configuration setup and mode settings.
    `Elapsed time =    814 sec.
    and i find many people have met the same thing. But they are spartan  series FPGA and i try to low the Resistances of Mode pins,M0 M1 and M2, but the problem does not been solved.
    I have read the status Registers and find there is an over-temperature state 
    and in Impact i could not readback the registers. It is strange.
    I am anxious about this problem and have not solved it yet
    What reasons may it be?
    Hope for your answer, thank you

    Hi~I want to know if you solve the configuration problem for virtex-6?
    As I encounter the  same configuration problem, I want to consult  you with some question.
    Can I have your email?
    gszakacs wrote:
    I have measured the VCCINT and find it is 1.0V, not 2.997V;
    That is not at all surprising.  I always assumed the problem is with reading the XADC (system monitor) block and not with the voltage or temperature.
    my Reference board is ML605
    That would have been nice to know at the beginning...
    It seems that you have selected the correct mode, assuming your jumpers are set as required in the ML605 Hardware User's Guide.  See table 1-27, table 1-33 and the note below it about switch S1.
    I'm not that familiar with the details of this reference design, but it may be that the slave SelectMap circuitry requires a reset or power cycle to actually configure the FPGA.  Have you tried power-cycling to see if the FPGA boots from the flash?
    I'd also suggest that you select the V6 in the JTAG chain view, then go to the debug menu of Impact and select Read Device Status (this is from memory, but it's something like that).  That will not only show the bits of the configuration status register, but also describe what each bit means.  Among other things you can check the state of the FPGA's configuration logic and the Mode pins.
     

Maybe you are looking for