Unity - Changing the exchange to another server

Hi guys,
Lets say I have Unity 4.2 set up with exchange on another box. Then the whole exchange server went down without any backups.
My questions is can we install exchange on the same server as Unity?
and then move it to another server(once the server is back)

Unity has an emergency backup mode called UMR and in case the Exchange server goes down it stores the messages locally but is NOT a replacement for exchange and that works only after unity has been properly set with exchange.

Similar Messages

  • Change the Exchange server name in outlook

    Hello All,
    Configured two Exchange server 2010. Both server have Mailbox, CAS and HUB installed. All the user use outlook (Exchange Client). All outlook configured with exchange server host name not mapi name. Now i need to change the exchange server name in outlook.
    Is there any procedure to change the Exchange server name for outlook automatically. Please suggest.
    Thanks

    Hi,
    Let’s begin with the partition named when RPC endpoint Changes in the following article:
    http://blogs.technet.com/b/aljackie/archive/2013/11/14/outlook-rpc-end-point-and-pf-the-microsoft-exchange-administrator-has-made-a-change-that-requires-you-quit-and-restart-outlook.aspx
    “To add further on the cas array, the Outlook clients with an existing Outlook profile would continue to use the old RPC endpoint rather than the new RPC endpoint (even though Autodiscover detected the change). This is because the old RPC endpoint does not
    return an ecWrongServer response to the client. The RPC endpoint accepts the connection; therefore, Outlook ignores the Autodiscover response because it has a working connection.”
    In this case, except with recreating a profile, we can move mailboxes to force the Outlook client to do a profile discovery and update the profile based on new information.
    For more information about moving mailboxes, please refer to the following article:
    http://technet.microsoft.com/en-us/library/bb124495(v=exchg.141).aspx
    If you have any question, please feel free to let me know.
    Thanks,
    Angela Shi
    TechNet Community Support

  • Change the exchange rate of a line item manually

    My company has an issue regarding the exchange rates.  We are in a country using EURO.
    Though from one of our vendor we take prices in USD. In our pricing procedure in the sales orders we post the price of the vendor and in the prices we maintain another condition type for our profit.
    In the case of the vendor price that gives us USD, we have want to give the price in the usd and the system to translate the usd in eur (in the next line of the procing procedure) accourding to an exchange rate that the user will give per line item.
    At the moment the system thanslates the price to eur accourding to the exchange rate from the system (automatically) and I haven't have the possibility to change the predifined exchange rate manually as I want to do.

    Hi,
    Exchange rate are maintained in the T.Code "OB08".
    Goto the T.Code "OB08".
    Change the exchange rate as per your requirement.
    If you want to get different currency then goto the T.Code "XD02".
    Enter your customer number,Company code and sales area.
    Goto Sales area data.Sales tab.
    Change the currency to your value as per your requirement.
    If you create a new order with that customer,then we will get this new currency.
    After creating the invoice,pass the accounting document number into "FB03" and enter the company code and fiscal year.
    Enter.
    Click on "Currency".
    It gives you the value in base currency.
    Regards,
    Krishna.

  • How to change the primary outgoing mail server in iphone

    I am trying to change the primary outgoing mail server from Yahoo to another mail which is my internet provider. I do not know the steps to complete this in my iphone thanks

    If you have more than one email account on your phone, you can change the default account under Settings>Mail, Contacts, Calendar>Default Account. Note that this setting does not appear unless you have more than one account on your phone. So, you'll need to add the email account from your ISP under Settings>Mail, Contacts, Calendars>Add New Account if you have not already done so.

  • Apple Remote Desktop - how to change the date and time server ip address?

    Our imacs keep getting out of synch with our Windows Active Directory server and when they do, users can no longer log into the imacs. The imacs this morning were more than 5 minutes fast, for example.
    So, we have changed the date and time server on one of our imacs to our internal time server and that works fine. Now I would like to update all of the other imacs using a unix command in ARD. Can anyone tell me how to send this change? For this message, let's say our internal time server is 172.30.100.100

    Not a problem. There are a number of other system and network setup commands that you might find useful at some time. From within the Remote Desktop Admin in the Send Unix Command window type:
    networksetup -help
    systemsetup -help
    That will give you lists of the commands, including the one I posted above, with their basic syntax. They're handy to know.
    Cheers.

  • Change the iconbutton to another image when it unable?

    I want create some State-sensitive iconbuttons in my script.
    But I can's change the iconbutton to another image when it unable?
    It's mean: When I click one of the iconbuttons,it convert to unable and auto change to another image.
    This are some code of under.
    Sorry of my BAD English.
    Thank very much!
        //config iconbutton's different iamges.( _a is the normal image,_b is the unable image. )
        //I don't know which is the right way, or all wrong.
        var icon1 = {a:File("\icon\Icon_M1a.png"),b:File("\icon\Icon_M1b.png")} ;
        var icon1x = {a:"./icon/Icon_M1a.png",b:"./icon/Icon_M1b.png"} ;
        //BuildUI by under format.
        //My UI code is very complex, under is some line of it.
        Pleft: Group    { \
              orientation:'column', alignment:['left','fill'], margins: 0, spacing: 0,  \
              grmm1: Group { margins: 0, spacing: 0,  \
                            MBtn1: IconButton { text:'',preferredSize: [32, 32],image:("+icon.a+","+icon.b+")} \       //ERROR!! I don't know the right way.
                             MBtn2: IconButton { text:'',preferredSize: [32, 32],image:'./icon/Icon_M2a.png' } \
                              MBtn3: IconButton { text:'',preferredSize: [32, 32],image:'./icon/Icon_M3a.png' } \\
        //Unable the iconButton when mouse click.
        ...MBtn1.onClick = function () {
                  this.enabled = false ;
                  ...MBtn2.enabled = ...MBtn3.enabled = ture ;

    I want create some State-sensitive iconbuttons in my script.
    But I can's change the iconbutton to another image when it unable?
    It's mean: When I click one of the iconbuttons,it convert to unable and auto change to another image.
    This are some code of under.
    Sorry of my BAD English.
    Thank very much!
        //config iconbutton's different iamges.( _a is the normal image,_b is the unable image. )
        //I don't know which is the right way, or all wrong.
        var icon1 = {a:File("\icon\Icon_M1a.png"),b:File("\icon\Icon_M1b.png")} ;
        var icon1x = {a:"./icon/Icon_M1a.png",b:"./icon/Icon_M1b.png"} ;
        //BuildUI by under format.
        //My UI code is very complex, under is some line of it.
        Pleft: Group    { \
              orientation:'column', alignment:['left','fill'], margins: 0, spacing: 0,  \
              grmm1: Group { margins: 0, spacing: 0,  \
                            MBtn1: IconButton { text:'',preferredSize: [32, 32],image:("+icon.a+","+icon.b+")} \       //ERROR!! I don't know the right way.
                             MBtn2: IconButton { text:'',preferredSize: [32, 32],image:'./icon/Icon_M2a.png' } \
                              MBtn3: IconButton { text:'',preferredSize: [32, 32],image:'./icon/Icon_M3a.png' } \\
        //Unable the iconButton when mouse click.
        ...MBtn1.onClick = function () {
                  this.enabled = false ;
                  ...MBtn2.enabled = ...MBtn3.enabled = ture ;

  • Can we change the requestor to another engineer

    The user has left company who created service PR 10396246. So the workflow has started, but he didn't actually submitted it. Can we change the requestor to another engineer ?

    Hello,
    As I said, you can only change the PR Initiator in the workflow if you first find out where the workflow gets it from.
    If it's getting it from a BOR attribute which is getting it from a table, then you will have to find a way to change the value in the table (do not update SAP tables directly). If, however, it turns out the workflow copies the PR initiator to a custom workflow container and then uses that, then you can change it.
    So, please go to PFTC_DIS and find out where it gets the PR Initiator from and how it is stored.
    regards
    Rick Bakker
    Hanabi Technology

  • How to change the webserver from one server to another server

    Hi all,
    Can you please provide the document for changing the web server location from one server to another server?
    Thanks in Advance.
    Thanks & Regards,
    Siva Prasad B

    Siva Prasad wrote:
    Hi Michel,
    Coping PS_HOME is enough to relocate the web server? And Michel and I said earlier you need to reinstall your webserver... and redeploy the PIA, what's not clear ?
    Nicolas.

  • How to change the datasource from one server to another server?

    i need to change the datasource from development environment to production server. i had configured the JNDI informations like the following in the 'context.xml':
    <Context path="/RFT" docBase="RFT" reloadable="true">
    <Resource
    auth="Container"
    type="javax.sql.DataSource"
    driverClassName="com.microsoft.jdbc.sqlserver.SQLServerDriver"
    validationQuery="select 1"
    name="jdbc/datasource"
    username="sa"
    password="$m1sbag$"
    maxIdle="-1"
    maxActive="0"
    maxWait="5000"
    url="jdbc:microsoft:sqlserver://172.24.151.149:1433;databaseName=Projectgold" />
    <WatchedResource>WEB-INF/web.xml</WatchedResource>
    </Context>
    and in 'web.xml' included the following code:
    <resource-ref>
                         <res-ref-name>jdbc/datasource</res-ref-name>
                         <res-type>javax.sql.DataSource</res-type>
         <res-auth>Container</res-auth>
    </resource-ref>
    and mentioned the JNDI Connection Name in the .rpt file as 'jdbc/datasource', but still getting the same connection which one is configured during the report design. need a help to resolve this...
    Thanks,
    Ram

    eventhough it's working fine. I may have deployment problem. Anyway thanks for the reply.
    Regards,
    Ram

  • How do I change the advertised RD Gateway server?

    I have a 2012 R2 server that I setup RD Gateway services and setup RemoteApp.  Internally it all works fine.  The problem is the company was a branch of another company then bought out.  So the internal domain name is a .com that matches a
    different existing company.  So when I go to the .../rdweb and log in all is fine, then I select to open calculator and give it the user name, so far so good.  It then opens an error saying it can not validate the certificate because the RD Gateway
    is the servername.old-company.com.  I think all I need to do is get the RD Gateway address reported to the client corrected to the correct FQDN and I'm good.  I can not seem to find a way to do that.  I tried the Set-rdpublishedname script from
    http://gallery.technet.microsoft.com/Change-published-FQDN-for-2a029b80 but it does not change the RD Gateway address.  Unless I'm using it wrong.
    All suggestions welcome.  Thanks so much.

    That was already set properly, but following your instructions I found that under the RD Web Access the URL is pointing to the local address but it won’t let me edit it. 
    Is this what I need to get changed?
    Thanks

  • Changing from .mac to another server-how to make sure I keep all my emails?

    Sorry if this has been asked before--I couldn't find it in recent threads--,
    Here is my situation: I already have free email service from another server (my DSL provider) but I have kept paying for the .mac email and idisk storage for two years simply because I thought I was going to do great things, I guess.
    I now realize I am too busy to learn enough about setting up my own webpage or whatever, so want to consolidate and save money. I am going to not resubscribe when next year's payment comes due next month, but in the meanwhile, I need to know:
    Should I forward any or all of my (opened and read) mail to my new email/server? Or is it all stored on my iMac anyway, and so only need to send my friends an email telling them of the new address...? I obviously don't want to lose anything.
    Please advise. Thank you in advance for any help you can give.

    Your DSL provider probably does not provide/support an IMAP account - more than likely it is a POP account so there is no need to forward all messages from your .Mac account's Inbox mailbox to your DSL provider's email account which probably much has less server storage space available.
    If you have been accessing your account as a .Mac type account (which is really an IMAP account and behaves in the same way), you need to transfer all messages in the account's Inbox mailbox to a user created "On My Mac" location mailbox before the account expires.
    This will store the transferred messages locally on the hard drive and remove the messages from the server at the same time.
    I recommend using the Copy To command vs the Move To command in case something goes wrong with the process.
    At the menu bar, go to Mailbox and select New Mailbox.
    Select "On My Mac" as the location if not already selected, enter a name for the mailbox and select OK to create the mailbox.
    Select a message in the message list for the account's Inbox mailbox and at the menu bar, go to Edit > Select All to highlight/select all messages in the account's Inbox mailbox.
    At the menu bar, go to Message > Copy To and select the user created "On My Mac" location mailbox.
    This will copy all messages from the server to the user created mailbox. When completed and after confirming all messages were successfully copied to the mailbox, you can delete all messages from the server or leave as is. When the account expires, all messages available on the server will be deleted.
    If you are also saving sent messages on the server, you need to do the same with all sent messages stored on the server and with any other messages stored on the server that you want/need to keep such as and Drafts.
    I would send an email to all contacts in your Address Book informing them of your email address change now and to start using your new email address right away. This way, you will have fewer messages to transfer from the account's Inbox to the user created "On My Mac" location mailbox.
    If you have been accessing your .Mac account as a POP account, you need to do the same with all messages in the account's Inbox and Sent mailbox before deleting the account. When deleting an account with Mail, the account named folder and all associated account mailboxes are also deleted.

  • How to change the exchange rate filled in a posted Invoice?

    Hi All,
    an user has posted an invoice in foreign currency. He has forgotten filling in a particular exchange rate.
    I wonder if is possible to change the document filling, in the exchange rate required, so to have the right amount in local currency.
    Thanks
    G.Rossi

    Hi,
    You can not change exchang rate in the already posted document.
    You need to reverse that document and have to create a new one using correct exchange rate.
    Regards,
    Gaurav

  • Help required in changing the default page during server startup

    I am using JSF 1.1 and BEA Workshop Studio 3.3 on WebLogic 9.2. When ever I start or restart my server, by default the application opens up in Internet Explorer with url http://localhost:7001/. I appreciate if someone can let me know if it is possible to change the url to open up my home page.
    To be precise I would like to open http://localhost:7001/pages/home.jsf instead of http://localhost:7001/ when the server starts or restarts. Any help is highly appreciated.
    Thanks.
    ~SirG

    Set the context root to "/" in application server's configuration and define a welcome-file in webapplication's web.xml.

  • How to change the schema to another user ?

    Hi,
    I've registerd this schema and it works well,
    but I need to change the schema to connect to another User like MYUSER_2.
    because I have to migrate the MYUSER_1 to MYUSER_2 and then to delete MYUSER_1
    when I register the schema again with this user MYUSER_2
    , all xml-entries will become destroyed ?
    what can I do ?
    it's better , to register the schema without a user ?
    Norbert
    dbms_xmlschema.registerSchema(
    schemaurl => vschemaurl,
    schemadoc => xsd_file,
    local => FALSE,
    gentypes => TRUE,
    genbean => FALSE,
    gentables => TRUE,
    force => FALSE,
    owner => MYUSER_1
    ,CSID => nls_charset_id('AL32UTF8');
    );

    If 2 seperate users need to work witht the same XML Schema then the XML Schema should be registered as a global Schema. If you want to change the owner of an XMLschema, just like if you want to change the owner of a relational; table you will have to export the data and import it again.

  • Wanted to change the Exchange rate while saving the PO

    Hi,
    I have a requirement that i have to change the value of Exchange rate while saving the PO.
    Even i checked with more BADI's. but i am not able to update the new value.
    Can you tell me any specific user exits available for this.
    Thanks in Advance,
    Best Regards,
    Prabu

    Solved

Maybe you are looking for

  • Can the WLPI be used for a perl web site

    We have a client, which has a perl(Apache/mod_perl) based web site. Cutomers submit orders on the web site and right now there is an order-processing system, but the client is looking for workflow/process product which will ease with all this order p

  • Page numbering- How can I start with a specific Page #?

    I'm using Pages 09 (snow leopard, and Pages on my iPad IOS 4.3.5) and I'm trying to get pages to start numbering using specific numbers.  For example lets say I'm editing chapter 3 of a book which starts on page 84.  Chapter 3 is its own document and

  • Shared Libraries and personal security

    Have there been any security issues with Shared Libraries?

  • Purchase Requisition (PR) Workflow

    Hello all, I hope you can lend your thoughts/experience. I have been advised that a PR workflow (without the need of a user exit) can be designed to route notification to the approver based just on the structure in organizational management (OM). For

  • ICal share ...????

    am i really behind the times or has iCal Share gone? this is the third night in a row i've got the "Safari can't open the page "http://icalshare.com/" because Safari can't connect to the server "icalshare.com". message...