Errore value

How can I replace the function that recognize error value to use it when exporting the file in MS Office?

My guess is that the problem is not with the ISERROR function because it is correctly exported and recognized in neoOffice .
But CAUTION , if like me you use the short references, you met get surprising results after the export process.
=IF(ISERROR(F2/G2),"error",F2/G2)
is perfectly exported but:
=IF(ISERROR(F/G),"error",F/G) which is perfectly correct
is exported as:
=IF(ISERROR(F2:F3/G2:G3),"error",F2:F3/G2:G3)
This one behaves flawlessly but I may imagine that some other fails.
Yvan KOENIG (from FRANCE jeudi 30 juillet 2009 19:16:35)

Similar Messages

  • Creating Open Directory Replica fails with Server Admin Error Value 1127

    Hallo,
    I have seen a lot of similar threads here and they were helpful up to a certain point, but in the end, they did not solve my problem.
    Currently, it comes down to this. The Server Admin Error message ist really meaningless and I could not find a single for the error value on the whole wide web. As such, I switched to the command line versions of the tools involved to geht more meaningful results. It worked. Specifically, creating a replica of an openldap master means using slapconfig.
    When executing
    slapconfig -createreplica master.ourdomain.com diradmin
    as root on the prospective replica machine, I get the following error message:
    ssh command failed with status 127
    That command is not allowed with the root account via public key authentication.
    That makes perfect sense to me, but how is it meant to work then?
    Executing slapconfig as admin tells me that this tool is to be executed as root. On the other hand, root login via ssh is not allowed in Mac OS X by default, which seems fine to me. I even changed /etc/sshd_config on the Open Directory Master machine to "PermitRootLogin yes". However, neither reloading ssh using launchctl nor restarting the whole server made this setting operational. Trying to login from command line as root still tells me:
    root login is not permitted to this machine via public key authentication.
    While this is the current state where I need help urgently, I changed some other things before. I tell about to exclude these issues as possible reason of failure. I got this message for quite a while:
    Replica Setup failed : This machine does not have a valid computer name
    I was sure, this machine meant the target machine, the open directory master, because the domain had changed there once before I had taken over responsibility as an admin in this environment. And in fact, changeip disguised an issue there. The command proposed by changeip to fix the situation did not seem appropriate because this machine is multihomed with a public and a private IP adress. Proper name resolution is available for both interfaces including reverse lookup. I dont like this setup, but it was the only way to get mail service running smoothly. Running changeip on the machine itself using these arguments
    changeip /LDAPv3/127.0.0.1 internalIP internalIP old.ours.com current.ours.com
    reported success in updating password server, open directory, both interfaces, hostconfig (which in fact did not change) and samba. It reported an issue with kadmin which is related to Kerberos (we dont use Kerberos yet).
    Changing the hostname of the server using changeip did not solve the issue. I then found the hint to check with scutil. This showed that the Hostname was not set on the prospective replica machine. (A question aside: in how many place is the hostname stored? The traditional /etc/hostname has gone, but seems to be replaces with several other configuration files and databases. I cant see this as an advantage). Setting the hostname using scutil worked fine. However, it did not solve the problem either. At least, slapconfig now started to complain about not being able to log in as root instead of failing from the start.
    I also checked all log files on bboth machines that might have to do with openldap, as there are /var/log/slapd.log, /var/log/system.log and /Library/Log/slapconfig.log. I also checked the log of th layer on top of openldap which is /Library/Log/DirectoryService.server.log. None of them revealed anything noticeable beside a lot of of entries that I have googled in the last few hours and which all dont seem to be associated with the problem in question.
    I will take a break now, but I have to fix this until tomorrow and I hope to get the ultimate hint from you, dear reader.
    Thanks and bye, Christian Völker

    ssh command failed with status 127
    That command is not allowed with the root account via public key authentication.
    Initial OD replication takes place via 'ssh'. If you have 'sshd' configured on the OD Master to authenticate with public keys then the OD replica will not be able to communicate with the OD Master via 'ssh'. You must configure the OD Master to use 'ssh' with password authentication and root login enabled.
    Demote the replica back to standalone. Stop any services that you may have running on the primary network interface. Then stop any services that you may have running on the secondary network interface. In the 'Network' System Prefpane remove the IP number from the secondary interface then deactivate the secondary network interface.
    Assign the private IP address and hostname that you wish to use for the replica to the primary network interface. Assign the 'public' IP number to the secondary interface. Check the DNS to see that the IP address and hostname for the primary network interface resolve both forward and reverse for the hostname of the replica that you have chosen. If it does not, fix your DNS before proceeding.
    In the 'Sharing' System Prefpane, change the name of the machine to the hostname (server.domain.tld) of the replica that you have chosen. Then use 'changeip -checkhostname' to see if the IP/hostname matches. Fix it if it doesn't.
    Then configure the /etc/sshd_config file on the OD master like this:
    \# Authentication:
    PermitRootLogin yes
    PasswordAuthentication yes
    PubkeyAuthentication no
    and the /etc/ssh_config file on the OD replica like this:
    PasswordAuthentication yes
    PubkeyAuthentication no
    Then from the OD replica as the 'root' user issue:
    slapconfig -createreplica <ODMasterIPorFQDN> <diradmin user>
    Make sure that the 'diradmin' user's password contains only alpha-numeric characters -no 'option-characters' or symbols, change it first if it does. Once the process completes, reactivate the secondary interface for the 'public' IP and check the configuration of services that will be using that IP, then start your other services. Secure the 'ssh' service on both machines to disable password authentication and 'root' logins.

  • SSRS expression returns #error value in some cells

    Hello,
    What do you think below expression sometimes return #error value in ssrs.
    =SUM(Fields!X.Value / 100 * DateDiff(DateInterval.Day,Fields!s_date.Value,Fields!e_date.Value)) /
    IIF( SUM(DateDiff(DateInterval.Day,Fields!s_date.Value,Fields!e_date.Value)) = 0
    ,nothing
    ,SUM(DateDiff(DateInterval.Day,Fields!s_date.Value,Fields!e_date.Value))

    Hi,
    Use below expression to overcome the issue:
    =
    IIF( SUM(DateDiff(DateInterval.Day,Fields!s_date.Value,Fields!e_date.Value)) = 0
    , 0
    , SUM(   Fields!X.Value / 100 
    * DateDiff(DateInterval.Day,Fields!s_date.Value,Fields!e_date.Value)
      SUM(DateDiff(DateInterval.Day,Fields!s_date.Value,Fields!e_date.Value)) 
    Thanks, Madhu
    Hi madhu,
    I have value for Month field as 0. I have used MonthName function in the report. So im getting error as #Error
    Expression:
    MONTHNAME(Fields!Month.Value)& " "& Fields!Day.Value &" "&  Fields!Year.Value
    Please help me to resolve the issue.
    Thanks in Advance..
    Regards,
    LuckyAbdul

  • Error Value = 69

    I am attempting to modify an rather fresh OS X Server Leopard install as a Standalone Server (Open Dir) to an Open Directory Master. In Server Admin, I added the service and then I clicked the "Change" button on the Open Directory service Setting pane.
    I get the Server Configuration Assistance successfully. I can select Master. I can create the Directory Administrator. After the continue button is clicked and it processes the setting up Master server, I get a couple of errors.
    First a small dialogue that states: The server returned an error while processing a request. The server reported the error: 'kNetworkError' while processing a command of type: 'writeSettings'
    I click okay and the status states "marking services as configured." Then the statement "This server has been configured as a Open Directory Master."
    Only on refresh it is still reported as a standalone.
    That was done in Server Admin local to the box. If I attempt remotely via Server Admin I get a different ending.
    "This server has not been configured as an Open Directory Master. Error has Occurred! Error Value = 69."
    When performed locally, the log file reports:
    2008-02-29 08:58:14 PST - T[0xA0802FA0] - DirectoryService 5.2 (v514.4) starting up...
    2008-02-29 08:58:14 PST - T[0xB0185000] - Initializing TCP ...
    2008-02-29 08:58:14 PST - T[0xB0207000] - Plugin <Cache>, Version <1.0>, processed successfully.
    2008-02-29 08:58:14 PST - T[0xB0207000] - Plugin <Configure>, Version <3.0>, processed successfully.
    2008-02-29 08:58:14 PST - T[0xB0207000] - Plugin <Local>, Version <1.0>, processed successfully.
    2008-02-29 08:58:14 PST - T[0xB0207000] - Plugin <LDAPv3>, Version <3.0>, processed successfully.
    2008-02-29 08:58:14 PST - T[0xB0207000] - Plugin <Search>, Version <3.0>, processed successfully.
    2008-02-29 08:58:14 PST - T[0xB0207000] - Plugin <BSD>, Version <2.0>, processed successfully.
    2008-02-29 08:58:14 PST - T[0xB038D000] - Registered node /Configure
    2008-02-29 08:58:14 PST - T[0xB038D000] - Plug-in Configure state is now active.
    2008-02-29 08:58:14 PST - T[0xB0491000] - Plug-in LDAPv3 state is now active.
    2008-02-29 08:58:14 PST - T[0xB0595000] - Registered Locally Hosted Node /BSD/local
    2008-02-29 08:58:14 PST - T[0xB0513000] - Registered node /Search
    2008-02-29 08:58:14 PST - T[0xB0595000] - Registered node /BSD/local
    2008-02-29 08:58:14 PST - T[0xB0595000] - Plug-in BSD state is now active.
    2008-02-29 08:58:14 PST - T[0xB0513000] - Registered node /Search/Contacts
    2008-02-29 08:58:14 PST - T[0xB040F000] - Registered Locally Hosted Node /Local/Default
    2008-02-29 08:58:14 PST - T[0xB0513000] - Registered node /Search/Network
    2008-02-29 08:58:14 PST - T[0xB0513000] - Plug-in Search state is now active.
    2008-02-29 08:58:14 PST - T[0xB040F000] - Registered node /Local/Default
    2008-02-29 08:58:14 PST - T[0xB040F000] - Plug-in Local state is now active.
    2008-02-29 08:58:14 PST - T[0xB030B000] - Registered node /Cache
    2008-02-29 08:58:14 PST - T[0xB030B000] - Plug-in Cache state is now active.
    2008-02-29 08:58:14 PST - T[0xB0207000] - Plugin "Active Directory", Version "1.6.1", is set to load lazily.
    2008-02-29 08:58:14 PST - T[0xB0207000] - Plugin "PasswordServer", Version "4.0.2", is set to load lazily.
    2008-02-29 08:58:18 PST - T[0xB0081000] - Network transition occurred.
    2008-02-29 08:58:18 PST - T[0xB0081000] - Network transition occurred.
    The configuration log states:
    2008-02-29 09:21:45 -0800 - slapconfig -createldapmasterandadmin
    2008-02-29 09:21:45 -0800 - Creating password server slot
    2008-02-29 09:21:45 -0800 - command: /usr/sbin/mkpassdb -a -u diradmin -p -q
    2008-02-29 09:21:45 -0800 - command: /usr/sbin/mkpassdb -a -u root -p -q
    2008-02-29 09:21:45 -0800 - command: /usr/sbin/mkpassdb -a -u OURDOMAIN.com$ -p -q
    2008-02-29 09:21:45 -0800 - command: /usr/sbin/mkpassdb -setcomputeraccount 0x47c83f296b8b45670000001800000018
    2008-02-29 09:21:45 -0800 - Setting SASL realm to <OURDOMAIN.com>
    2008-02-29 09:21:45 -0800 - command: /usr/sbin/mkpassdb -setrealm domainsecuritypartners.com
    2008-02-29 09:21:45 -0800 - Copied file from /etc/openldap/slapd.conf to /etc/openldap/slapd.conf.backup.
    2008-02-29 09:22:16 -0800 - Removed file at path /var/db/openldap/openldap-data/DB_CONFIG.
    2008-02-29 09:22:18 -0800 - Starting LDAP server (slapd)
    2008-02-29 09:22:38 -0800 - Error: The slapd process did not start.
    2008-02-29 09:22:39 -0800 - Stopping LDAP server (slapd)
    2008-02-29 09:22:39 -0800 - Stopping LDAP replicator (slurpd)
    2008-02-29 09:22:39 -0800 - slapconfig -setldapconfig
    2008-02-29 09:22:39 -0800 - command: /usr/sbin/mkpassdb -setreplicationinterval 300 SyncDefault
    2008-02-29 09:22:39 -0800 - command: /usr/bin/ldapmodify -c -x -H ldapi://%2Fvar%2Frun%2Fldapi
    2008-02-29 09:23:39 -0800 - ldapmodify command output:
    ldap_bind: Can't contact LDAP server (-1)
    2008-02-29 09:23:39 -0800 - ldapmodify command failed with status 1
    2008-02-29 09:23:39 -0800 - ldap_bind: Can't contact LDAP server (-1)
    Any comments or suggestions? We would rather not blow the install away and start over.
    It is installed on a brand-new Mac mini.

    I had a student that had the same problem. It turns out that the DNS was the problem (DNS wasn't set up properly at some point, and corrupted a DNS entry).
    Some things that you can try to clear up any DNS errors:
    1. In Terminal, run "changeip -checkhostname". If you see any issues reported, follow the instructions to fix the issue. Luckily, the system gives you accurate instructions to fix it.
    2. Completely delete your DNS zones, and reboot the machine. It will take some time for the Server Admin to come back up, but it's worth it. Then repopulate the DNS entries. Once you have the main DNS entries, check your DNS with either Lookup (in Network Utility), or use dig on the command line. Make sure you are getting a response.
    Once everything is rebuilt on the DNS side, that should resolve your issue (at least it did for us).
    Hope that helps!
    Scothoser

  • How to solve: Main Thread (Suspended: Error: value of pendingCustomerTokenList must be a collection)

    Hi All,
    Have an app that I am creating in flashbuilder 4, java axis 2 web service and mysql.
    In my app I have defined a service.  I have had not problems with pulling data and inserting data
    by calling my java functions through the service.
    I added a new property and then made it available in flex.  it display on label field,  Ran the app and got the error:
    Error: value of pendingCustomerTokenList must be a collection
      at valueObjects::_Super_PendingTokensResponse/set pendingCustomerTokenList()[F:\vEngage\flexworkspace\FBAgentApp\src\valueObjects\_Super_Pe ndingTokensResponse.as:104]
      at com.adobe.serializers.utility::TypeUtility$/assignProperty()[/Users/sameer/depot/flex/ide _builder/com.adobe.flexbuilder.dcrad/serializers/src/com/adobe/serializers/utility/TypeUti lity.as:559]
      at com.adobe.serializers.utility::TypeUtility$/convertToStrongType()[/Users/sameer/depot/fle x/ide_builder/com.adobe.flexbuilder.dcrad/serializers/src/com/adobe/serializers/utility/Ty peUtility.as:498]
      at com.adobe.serializers.utility::TypeUtility$/convertResultHandler()[/Users/sameer/depot/fl ex/ide_builder/com.adobe.flexbuilder.dcrad/serializers/src/com/adobe/serializers/utility/T ypeUtility.as:372]
      at mx.rpc.soap::Operation/http://www.adobe.com/2006/flex/mx/internal::processResult()[E:\dev\4.y\frameworks\projects \rpc\src\mx\rpc\soap\Operation.as:953]
      at mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::resultHandler()[E:\dev\4.y\frameworks\projects \rpc\src\mx\rpc\AbstractInvoker.as:313]
      at mx.rpc::Responder/result()[E:\dev\4.y\frameworks\projects\rpc\src\mx\rpc\Responder.as:56]
      at mx.rpc::AsyncRequest/acknowledge()[E:\dev\4.y\frameworks\projects\rpc\src\mx\rpc\AsyncReq uest.as:84]
      at DirectHTTPMessageResponder/completeHandler()[E:\dev\4.y\frameworks\projects\rpc\src\mx\me ssaging\channels\DirectHTTPChannel.as:451]
      at flash.events::EventDispatcher/dispatchEventFunction()
      at flash.events::EventDispatcher/dispatchEvent()
      at flash.net::URLLoader/onComplete()
    I looked at the Network Monitor tab and examined the call/response.  Response body shows no error and the Response result shows the data returned by my java axis 2 function.  Its all correct.
    Ran configure return type again.  Let it auto-detect and return type from sample data. The properties returned looked just fine.
    Looked at the _Super_PendingTokensResponse.as on line 104
    var oldValue:ArrayCollection = _internal_pendingCustomerTokenList;              
            if (oldValue !== value)
                if (value is ArrayCollection)
                    _internal_pendingCustomerTokenList = value;
                else if (value is Array)
                    _internal_pendingCustomerTokenList = new ArrayCollection(value);
                else
                    throw new Error("value of pendingCustomerTokenList must be a collection");
            this.dispatchEvent(mx.events.PropertyChangeEvent.createUpdateEvent(this, "pendingCustomerTokenList", oldValue, _internal_pendingCustomerTokenList));
    How to I correct this problem ?
    thanks for any help.

    Have a look at these docs:
    E-CA Change Assistant gives error: All agents should be running and sending pulses for all application, batch, file and web servers for the environment before the Change Assistant is started (Doc ID 1073464.1)
    E-CA: PT8.53, PT8.52, PT8.51, PT8.50: EMF Agents not Finding Configuration Files for App Server, Batch Server (Doc ID 1080590.1)

  • Error :Value Too large for DEF_VALUE of SNP_REV_COL

    I am getting the following error while I am importing my work repository .
    Error : Value Too large for DEF_VALUE of SNP_REV_COL
    Can any one pls let me know the root cause of the issue.
    I found the following work around to resolve the issue.
    I am changing the 'DEF_VALUE' column length in both 'SNP_REV_COL' and 'SNP_COL' tables.
    I am using the ODI 10.1.3.5 version.
    alter table SNP_REV_COL modify DEF_VALUE VARCHAR2 (400);
    alter table SNP_COL modify DEF_VALUE VARCHAR2(400);
    I am able to import the work_rep with out any issues after changing the above columns.
    I am looking for the reason why this issues is occurring.
    Thanks,
    Yellanki
    Edited by: Yellanki on Feb 7, 2011 3:18 AM

    Ankit,
    I am trying to move my Dev WR to Test. And my Source Technologies are SQL Server and Oracle.
    Target is Oracle. I got the work around for this issue And I am looking for the root cause of the issue.
    Any help is greatly appreciated.
    Thanks,
    Yellanki

  • Line 1 Error - Value 120 for the flexfield segment Company does not exist

    {color:#0000ff}Receiving the following error message in the "Submit Expense Report - Expense Allocation" page:
    "Error : Line 1 Error - Value 120 for the flexfield segment Company does not exist in the value set XX_GL_COMPANY"
    This error message is shown when the user is entering the expense report in R12 Oracle Internet Expenses responsibility. After the user has finished entering the expense lines and after the user has reviewed the default expense allocation values in the expense allocation page, upon clicking on the next button , this error message is shown.
    Has anybody experienced this issue?
    We have opened a Service Request with Oracle but so far there is no resolution. This issue occurs intermittently. It is NOT consistent. We have advised the user base with the following workarounds to over this bug:
    1. The system administrator shall clear the cache using Functional Administrator responsonsibility
    OR
    2. Advise the application user to sign-off from Oracle Applications and allow 5 minutes before they sign-in again.
    Any help or advise in the matter is appreciated.
    Thank you.
    {color}

    Check these things
    1. you have enable PerPeriodOfService DFF to this set.
    2. you are setting Context Variable like (AttributeCategory) with requried value.
    Thanks

  • Account error: value does not exist in BB Company is displayed when Uploading a Journal to Oracle ADI Interface Table

    Environment:
    Oracle ADI version: version Oracle ADI 7.2.12.04.25 and patch number 9493800
    Microsoft Office version: 2003
    How to recreate incident:
    1. Create a budget worksheet for a company
    2. View the budget information
    3. Upload budget information to the Interface Table
    Actual Result:
    Account error: Value <value> for the flexfield COMPANY does not exist in the value set BB_COMPANY. I have noticed the same error is displayed regardless of whether I select options from the combo boxes or enter random numbers in the journal i.e. 0000 for each field.
    Expected Result:
    Budget information to be uploaded successful especially when the data has not been amended
    Questions:
    1. What is happening to cause this problem?
    2. What is the solution?

    The issue is resolved, no need to answer, the dbconnection class was calling the wrong db :(

  • JSF select one menu keeps giving me summary=Validation Error: Value is not

    Hi all,
    I'm using five select menus in a JSP file.
    the other four are populated whenever the first menu changes its value (ValueChange event).
    after the menus are populated, i select a item in each menu and submit it.
    but when i submit the form i get the following error:
    E com.sun.faces.context.FacesContextImpl addMessage Adding Message[sourceId=form2:menu61,summary=Validation Error: Value is not valid)
    [12/1/06 11:25:58:541 EST] 00000030 jsf           E com.sun.faces.context.FacesContextImpl addMessage Adding Message[sourceId=form2:menu5,summary=Validation Error: Value is not valid)
    [12/1/06 11:25:58:557 EST] 00000030 jsf           E com.sun.faces.context.FacesContextImpl addMessage Adding Message[sourceId=form2:menu6,summary=Validation Error: Value is not valid)where menu61, menu5, menu6 are the menus on the form.
    someone pls throw some light on this.
    -Seshu

    Hi,
    Since you are using a request scoped bean things work like this:
    1. You fetch your list, for example from a database, with a bean that is put in request scope.
    2. You populate your select component on the jsp page.
    3. You select an item in the select component and submits the form.
    4. When the form is submitted the selected value has to be validated against the list it was chosen from. Since you retrieved the list from a bean in request scope the list isn't available when you submit the form and the getter for the list probably returns an empty list which gives you the validation error.
    What you have to do is to get the list the item was selected from when submitting the form. This can be done in different ways. Either you keep your list in the session between the requests or you get the list from your data storage again. This is a horrible "feature" with JSF and from what I know it's impossible to turn this validation off.
    /klejs

  • Import Sales Orders, error: "value must be numeric in property discountper

    When i import Sales Orders, the system gives me this error: "value must be numeric in property discountpercent".
    where is the problem?

    Hello Lorenzo,
    If you carefully read the Error message, it say value must be numeric in property discountpercent
    It pertains to the discount percent column and the value you have filled in it.
    Please make sure you have only numeric values here.  Also make sure that any numeric value is not accidentally saved as charecter type ( you can notice  a green triange arrow at the left top corner of each column)
    Suda

  • SSRS 2014 SharePoint integrated - getting error "Value does not fall within the expected range"

    Hi everyone,
    Note sure if this should be in the SharePoint forum instead, but here goes...
    I have got an SSRS report (SQL 2014) deployed to SharePoint 2013, and I am using a command line to call this report. The command line is...
    https://myserver/_vti_bin/reportserver?https://myserver/Reports/AdjustmentPlan.rdl&rs:Format=PDF&ParamActionGUID=B9B57C49-558B-471A-8BFD-2853673E8874
    This returns an error "Value does not fall within the expected range"
    If I remove the "&rs:Format=PDF" then the report appears on screen without problems...
    When I look in the sharepoint log files, I see the command line has changed to be 
    https://myserver/_vti_bin/reportserver?https://{machine_name}/Reports/AdjustmentPlan.rdl&rs:Format=PDF&ParamActionGUID=B9B57C49-558B-471A-8BFD-2853673E8874
    I'm not sure why this is happening, but if I can ensure the command line uses the correct SharePoint address, then I think this will fix the problem.
    Any questions or suggestions or solutions gratefully received.
    thanks
    David

    Thanks for the reply. I can probably explain easier than screenshots..
    The server name is "datacentre-cenet" for example
    But the address we use to access SharePoint is https://cenet (ie using the SharePoint Alternate Access mappings). So the command line to call the SSRS report uses the SharePoint name (CENET).
    But when I try to export SSRS to PDF, the command line get changed to
    https://datacentre-cenet which causes an error
    My thought is that somewhere SSRS is using the server name, rather than the correct URL which is
    https://cenet
    So if I could know where SSRS picks up the server name, I could configure that to fix this issue.
    Hope that's more clearer, thanks again,
    David

  • Error "Value '' could not be converted."

    WPF - MVVM arch.  .Net ver 4.0, VS2010.
    I am trying to clear the selection in a comboBox get an error "Value '' could not be converted."
    The ComboBox's iItemSource is bound to a key-value pair list.  The SelectedValue is the Key and the DisplayMemberPath is bound to the Value.
    If the ItemSource is bound to an ordinary datatype, such as a string, and clear the selected value in ComboBox, this error doesnt occur.  But I needed it as a Key-Value pair since its a lookup. 
    Suspect that the error could be because the key-value pair has no corresponding null entry or could not take a null value.  Could this a bug in the framework.  How to resolve this.  Seen the blogs that says use Nullable
    value and do the conversion, but doesnt appear to be a good way to resolve this since an explicit conversion adapter have to be written.  Is there a better way to resolve this.

    I would have thought
    Bind SelectedValue to a nullable property.
    That's the key it's going to end up with.
    Your key might have to be a nullable type as well.
    Set that property to null.
    You might also have to do the synchronise thing
    IsSynchronizedWithCurrentItem="True"
    On the combo.
    Hope that helps.
    Technet articles: Uneventful MVVM;
    All my Technet Articles

  • Remote PowerShell Error: Value cannot be null

    I am trying to run commands on our exchange server from another server, and I keep running into this problem regard less of the command I run.  For example I am trying to run the New-MailboxExportRequest and I alway get the error "Value cannot be null."
     If I run the command from the exchange server console it works fine.
    the client machine is Server 2008 (x86) and the server is Server 2008 R2 (x64).
    Here is the exact log of what I am doing
    Windows PowerShell
    Copyright (C) 2009 Microsoft Corporation. All rights reserved.
    PS C:\Users\Administrator> Enter-PSSession -computerName SAM
    [sam]: PS C:\Users\Administrator\Documents> Add-PSSnapin Microsoft.Exchange.Management.PowerShell.E2010
    [sam]: PS C:\Users\Administrator\Documents> new-mailboxexportRequest
    cmdlet New-MailboxExportRequest at command pipeline position 1
    Supply values for the following parameters:
    Mailbox: eric
    FilePath: C:\Test\eric.pst
    Value cannot be null.
    Parameter name: parameters
    + CategoryInfo :
    + FullyQualifiedErrorId : System.ArgumentNullException,Microsoft.Exchange.Management.RecipientTasks.NewMailboxExportRequest
    [sam]: PS C:\Users\Administrator\Documents>
    It seems that almost all the exchange commands do not work using this connection method.  Can any one tell me what I am missing?

    Have the remote powershell ever worked before?
    Have you tried to use the procedure in the article below to connect the remote exchange server?
    Connect Remote Exchange Management Shell to an Exchange Server
    James Luo
    TechNet Subscriber Support (http://technet.microsoft.com/en-us/subscriptions/ms788697.aspx)
    If you have any feedback on our support, please contact [email protected]

  • Error values

    Hi!
    I'm working on an C++ application that calls java web start with the -wait option. I need to return a error value if the page can't be loaded. Is there any way to do that? How can I catch the error value?
    Thanks.

    if you use 1.5.0 or later, and you invoke "javaws -silent ..." you should always get return value of -1 if app cannot be started, or if main of app throws an exception.
    However, you can't really run an app in silent mode (unless it is really a console app and dosn't show any gui)
    If you run just "javaws -wait <url>" it will usually double launch, so it will only wait for the first invocation of java to return, which will succeded. to prevent a double launch, dowload the jnlp file youself and run "javaws -wait <filename>".
    In this case any problem encountered will cause a launch error dialog (since it's not silent) and -1 treturn will only come back after the user has dismisses the error dialog.
    If you want "almost silent" such that program can use gui, but not show error dialogs, you need to wait till version 6.0, which has the "-quiet" option.
    /Andy

  • Error value = 77 ... Can't change or delete OD

    I have a replica server set up, but the master server has moved (new DNS, new server name). There does not appear to be any way to rename the master server. Accordingly, I tried to change the OD type to a standalone server, then I'd create a new replica. Unfortunately, whenever I try to make a change I get one of two results:
    1. It appears to work, but... when I return to Server Manager, it is still a replica server.
    2. I get an Error value = 77 error message.
    How can I manually delete the OD configuration and set up again from scratch?

    Hi
    If changes have been made to the OD Master that involve a System Update, changes to DNS, hostname or IP Address then demotion to Standalone for both Master and Replica would be the most effective way of doing this.
    You should of course prepare the ground first.
    Make sure you have full and effective backups just in case, unshare any or all sharepoints especially the ones associated with home folder creation. If no changes are being made to anything that involves url or hostname changes then it should be OK to archive the LDAP database from the Master as this will retain everything to do with the OD. If not then export users and groups. Networked home folders are not affected and are not lost when demotion takes place. Bear in mind passwords are not retained if you export Users and Groups.
    Now demote the Replica to Standalone, next demote the Master to Standalone. Sort out your DNS either manually or using changeip depending on what changes you are making. Test and Qualify the DNS Service with nslookup, host and changeip -checkhostname commands. When you are confident that the DNS Service is working as it should be then go for promotion on the Master. Restore the archived LDAP database if that was a viable option before demotion or re-import users and groups. Re-share folders used for automounting home folders as well as any other share points. Re-locate Users to home folders, test the master first. Once you are happy with this promote the other server to Replica in same way you did this before the Master was moved.
    Before doing any of this make sure both machines involved in the Master/Replica relationship are updated to the latest possible updates and are the same version. For example Master/Replica relationships will break or not work if the Master is 10.5.2 and the Replica is 10.5.1 or less. Both must be the same version. When an update is made available you demote the Replica to Standalone first, update the Master and re-promote the Replica back again. Of course you could leave them as they are if there is no compelling reason to update the both of them.
    Apologies if you already know or tried this. The procedure for demotion and promotion is actually well documented in the relevant admin manuals available here:
    http://www.apple.com/server/macosx/resources/
    Hope this helps, Tony

Maybe you are looking for