Outlook 2003 and Oracle

I have a user running Outlook 2003 and I've just installed the connector (1012 07) and patch 1012 08) but whenever I start Outlook I get a message saying that either the network is down (it isn't) or the server name is misspelled (it isn't either).
Any help?

I have also had the same error - it went away when you use the user name (not login name but the one which is entered in the First / Last fields) for the Calendar setup. For email, you still use the login name.
I'm not sure whether this will help - but you can give it a try

Similar Messages

  • Out of memory using Windows Server 2003 and Oracle 9.2.0.3

    Hi,
    I just installed both Windows Server 2003 and Oracle 9.2.0.3. The server I am using has 4 gigabytes of memory installed, and windows shows that to be the actual physical memory on the server. The paging file is 8 gigabytes for a total of 12 gigabytes of virtual memory.
    Using the Oracle Database Configuration Assistant, I create a new database using default values. After verifying the installation worked OK (database started, queries ran), I attempted to change some of the memory parameters and was able to start the database using about 1.4 gigabytes of total SGA, with the O/S using about .3 gigabytes for a total of 1.7 gigabytes. I then attempted to change the buffer cache + 1 gigabyte for a total of 2 gigabytes. Now the database will not start and I get an out of memory error ora-27102 with an additional O/S memory error of "O/S Error: (OS 8) Not enough storage is available to process this command".
    So, I have two problems:
    1) With 4 gigabytes installed, and the O/S using only about 300 megabytes, why isn't Oracle able to take advantage of the memory on this machine past the 1.7 gigabytes (as reported by Windows task manager).
    2) How do I change the spfile memory parameters so the database will start using spfile? I can start the database pointing to a pfile with lesser memory parameters, but I don't know how to effect change on the spfile, since I cannot start with the spfile.
    Both these technologies (9.2.0.3 and Server 2003) are new to me, so any insight would be appreciated!
    HERE ARE THE SPFILE PARAMETERS THAT WORKED:
    SGA (M)
    Shared Pool=104
    Buffer Cache=960 ***
    Large Pool=0
    Java Pool=64
    Total SGA=1128
    SGA Max Size=1321
    Aggregate PGA Target=1500
    Current PGA Allocated=22868KB
    WINDOWS MEMORY INFO FROM TASK MANAGER SHOW:
    PF Usage=1.66GB
    Physical Memory (K)
    Total=4062704
    Available=3203460
    System Cache=2499096
    Commit Charge (K)
    Total=1748184
    Limit=12288628
    Peak=1925276
    *** When I change this to 2048 the database did not start.
    Thank you.

    CREATE SPFILE
    Purpose
    Use the CREATE SPFILE statement to create a server parameter file from a client-side initialization parameter file. Server parameter files are binary files that exist only on the server and are called from client locations to start up the database.
    Server parameter files let you make persistent changes to individual parameters. When you use a server parameter file, you can specify in an ALTER SYSTEM SET parameter statement that the new parameter value should be persistent. This means that the new value applies not only in the current instance, but also to any instances that are started up subsequently. Traditional client-side parameter files do not let you make persistent changes to parameter values. Because they are located on the server, these files allow for automatic database tuning by Oracle and for backup by Recovery Manager (RMAN).
    To use a server parameter file when starting up the database, you must create it from a traditional text initialization parameter file using the CREATE SPFILE statement.
    All instances in an Real Application Clusters environment must use the same server parameter file. However, when otherwise permitted, individual instances can have different settings of the same parameter within this one file. Instance-specific parameter definitions are specified as SID.parameter = value, where SID is the instance identifier.
    The method of starting up the database with a server parameter file depends on whether you create a default or nondefault server parameter file. Please refer to "Creating a Server Parameter File: Examples" for examples of how to use server parameter files.
    See Also:
    CREATE PFILE for information on creating a regular text parameter file from a binary server parameter file
    Oracle9i Database Administrator's Guide for information on pre-Oracle9i initialization parameter files and Oracle9i server parameter files
    Oracle9i Real Application Clusters Administration for information on using server parameter files in a Real Application Clusters environment
    Prerequisites
    You must have the SYSDBA or the SYSOPER system privilege to execute this statement. You can execute this statement before or after instance startup. However, if you have already started an instance using spfile_name, you cannot specify the same spfile_name in this statement.
    Syntax
    create_spfile::=
    Text description of create_spfile
    Semantics
    spfile_name
    This clause lets you specify a name for the server parameter file you are creating.
    If you do not specify spfile_name, Oracle uses the platform-specific default server parameter filename. If spfile_name already exists on the server, this statement will overwrite it. When using a default server parameter file, you start up the database without referring to the file by name.
    If you do specify spfile_name, you are creating a nondefault server parameter file. In this case, to start up the database, you must first create a single-line traditional parameter file that points to the server parameter file, and then name the single-line file in your STARTUP command.
    See Also:
    "Creating a Server Parameter File: Examples" for information on starting up the database with default and nondefault server parameter files
    Oracle9i Database Administrator's Guide for Windows (or other appropriate operating system specific documentation) for default parameter file names
    pfile_name
    Specify the traditional initialization parameter file from which you want to create a server parameter file.
    If you specify pfile_name, the parameter file must reside on the server. If it does not reside in the default directory for parameter files on your operating system, you must specify the full path.
    If you do not specify pfile_name, Oracle looks in the default directory for parameter files on your operating system for the default parameter filename, and uses that file. If that file does not exist in the expected directory, Oracle returns an error.
    Note:
    In a Real Application Clusters environment, you must first combine all instance parameter files into one file before specifying it in this statement to create a server parameter file. For information on accomplishing this step, see Oracle9i Real Application Clusters Setup and Configuration.
    Examples
    Creating a Server Parameter File: Examples
    The following example creates a default server parameter file from a client initialization parameter file named t_init1.ora:
    CREATE SPFILE
    FROM PFILE = '$ORACLE_HOME/work/t_init1.ora';
    Note:
    Typically you will need to specify the full path and filename for parameter files on your operating system. Please refer to your Oracle operating system documentation for path information.
    When you create a default server parameter file, you subsequently start up the database using that server parameter file by using the SQL*Plus command STARTUP without the PFILE parameter, as follows:
    STARTUP
    The following example creates a nondefault server parameter file s_params.ora from a client initialization file named t_init1.ora:
    CREATE SPFILE = 's_params.ora'
    FROM PFILE = '$ORACLE_HOME/work/t_init1.ora';
    When you create a nondefault server parameter file, you subsequently start up the database by first creating a traditional parameter file containing the following single line:
    spfile = 's_params.ora'
    The name of this parameter file must comply with the naming conventions of your operating system. You then use the single-line parameter file in the STARTUP command. The following example shows how to start up the database, assuming that the single-line parameter file is named new_param.ora:
    STARTUP PFILE=new_param.ora
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96540/statements_616a.htm#SQLRF01315
    Joel P�rez

  • Palm pro wont sync with outlook 2003 and windows device manager?

    Palm pro wont sync with outlook 2003 and windows device manager?  Files  e.g. word docs or excel files sync o.k. but i need my contacts and i only get a error that there is sporblem with my desktop computer.
    I am using vista  and i have all updates installed.
    Post relates to: Treo Pro T850U (Unlocked)

    Do you have windows mobile device center installed(WMDC)? If not download it from here http://www.microsoft.com/windowsmobile/en-us/downloads/microsoft/device-center-download.mspx
    Be sure you download the correct version for your PC. If you have 32bit OS or 64bit OS. To find this out, right click on Computer under start and select properties. Near the middle it should say 32bit or 64bit. If you know you have the correct software. Open up the control panel and go to sync settings. Right click on the partnership you have setup and select delete. On your device go to Start-->Programs-->Activesync-->Menu-->Options tap on Windows PC and select Delete. Then once both are done resetup your partnership. But this time uncheck everything. Then once it is done syncing. Go to Mobile device settings and change content sync settings and select Contact. Click save and let it sync. Do the same for calendar, tasks, and notes but leave the last item checked. So when Contacts are done syncing you go and check Calendar and leave Contacts

  • Cant Edit Message Body (outlook 2003 and 2007), Cant select text VIA click (word), Cant Edit Advanced Options (word)

    A number of my users are having similar problems across the entire network. These issues have started on 8/26/2014
    This problem is not localized to a specific outlook version, the problem is happening on 2003 and 2007 alike. Also this problem is starting to move into MS-Word.
    In outlook i am unable to click the message body. If i click the message body nothing happens. I cannot select any text, type, or anything in the message body. I am however able to type in the message body if i press the 'tab key' and navigate to the message
    body. 
    I have wiped out profiles. reset all user settings, changed datafiles etc. Nothing i do seems to affect this problem.
    On microsoft word i am unable to edit a number of documents. These documents are readable, editable etc on different computers. There are not any protections on the files. The user who reported this problem is however unable to edit the text even though
    others are able to. To correct this problem we have protected and unprotected the file checked permissions all with no luck. 
    On the same computer i am unable to change any advanced options. When i attempt to click the listing nothing happens. Its acting in the same manner as outlook is described above. However i am unable to select anything using the 'tab' key.
    These problems started on a few different computers, but is beggining to spread and affect more users across the network.
    This also does not seem to be a group policy issue. We have a number of different user groups on the network, and this problem is not isolated to any specific user, or group, group member etc..
    Thanks in advance to anyone who might be able to lend some assistance to solve this matter.
    X

    Hi,
    Please first verify the activation status of your Microsoft Office.
    If your Microsoft Office is activated, please try to start Outlook or Word in safe mode to check if this issue persists. To do this, press Windows key + R to open the Run command, type
    outlook /safe and press Enter.
    Also please try to run a repair of your Office installation to check the result. See:
    http://support.microsoft.com/kb/924614
    Please let me know the result.
    Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Outlook 2003 and Exchange 2013

    We have just installed Exchange 2013 servers in our organization alongside existing Exchange 2007 servers. No mailboxes have been migrated yet and we are about ready to point our client access namespace to the Exchange 2013 servers and go into the co-existence
    stage.
    We still have some Outlook 2003 clients and I know these need to be updated to 2007 SP3 or 2010 Sp1 or 2013 before those mailboxes are migrated to Exchange 2013.
    However, I am curious as to whether we would hit any problems at all if we pointed our namespace to E2K13 before upgrading the Outlook 2003 clients, as long as none of the Outlook 2003 clients use Outlook Anywhere and the mailboxes those clients
    connect to remained on Exchange 2007 for the time being ?
    Clearly, Outlook 2003 is not 'supported' but the wording in the following link...
    http://social.technet.microsoft.com/wiki/contents/articles/845.outlook-versions-supported-by-exchange-200720102013online.aspx
    says " Please bear in mind there’s a difference between what is supported and what might be compatible with Exchange 2013"
    Would the situation I'm thinking of be one of those 'compatible but unsupported' scenarios. i.e I can't think of any reason why the Outlook 2003 clients would have a need to connect to an E2K13 CAS server ...
    I'd be interested to hear other people experiences/opinions on this. Thanks!

    Hi,
    Based on my knowledge, for internal users whose mailboxes exist on Exchange 2007, it is ok to still use Outlook 2003 as clients. Because
    they will still connect to the Exchange 2007 Mailbox server instance hosting the mailbox. If the user is moved to Exchange 2013, please upgrade the Outlook client to higher version. Because Exchange 2013 doesn’t support Outlook 2003 client.
    For Outlook 2003 clients connected to Exchange 2007, they doesn’t support autodiscover service to get some Exchange services such as free/busy information, OAB. Outlook 2003 would connect to Public Folder in Exchange 2007 to retrieve these
    services. For OWA and ActiveSync service, it is not related to Outlook 2003 client, the CAS2013 would redirect the service request or send to CAS2007 for necessary data.
    Regards,
    Winnie Liang
    TechNet Community Support

  • Nokia 6790, Outlook 2003, and PC suite 7.1

    Until last week I had perfect sync between my Nokia 6790 and Outlook 2003 Contacts using PC Suite 7.1.  I am also using WinXP SP3.  The other day I started to get a red X on the sync button when trying to do a sync between the phone and Outlook 2003.  I tried the Office 2003 repair from the help menu, added a new profile in Outlook 2003, which the suite recognized, but still got the red X.  Does anyone have any suggestions as to what to do next?  Thanks.

    I also should mention that I am using USB cable connection

  • Tour Sync Issues with Outlook 2003 and Error Code 0x8004fceb

    Hello, I have a Tour with DM 5.0, which I sync with Outlook 2003 on my laptop running Vista O/S.  I am having a problem deleting items from the Tour that I've previously added via a sync with Outlook. 
    Some time after syncing, I delete the items from Outlook and then re-sync.  Instead of deleting from BB, the changes dialog box tells me the items are going to be added from the device to Outlook!!!  If I accept changes so that other calendar items will update (from Outlook to BB), Outlook remains fine, but the items do not delete from BB.
    Additionally, existing items on BB are duplicated on the BB during sync.  In other words, I have ended up with 7 entries for one appointment on the BB even though there's only one in Outlook.  This primarily happens with recurring appointments.
    Lastly, despite all this confusion, the sync ends with Error Code 0x8004fceb; check documentation, which I cannot locate on blackberry.com.
    I am set up for two-way sync, future items only.  I even reset to one-way sync from calendar to device to no avail.
    Please help.
    Thank you.

    Sorry. I guess I needed to be clearer I have Office SP 2.
    I will tell you that I currently running an older version of iTunes (7.3) because that is the only one that syncs.
    In the newest version of iTunes (and of course the current one) it does give me the option to sync with outlook.
    Message was edited by: obxbound

  • Error when trying to configure sync between Outlook 2003 and Blackberry Desktop Software 4.6

    I am unable to configure the Blackberry Desktop Software (version 4.6) to sync with my Outlook 2003.  I used to have an older version of the desktop software and it worked just fine.  I got a new phone and updated the software and am unable to configure the sync.  I get the following message when I try to configure it: "Runtime Error: folder is no longer part of the system data source or the folder could not be found."
    Please help.  I need these to sync.

    HI and Welcome to the Forums!
    I suggest trying a clean DTM uninstall:
    KB02206 How to perform a clean uninstall of BlackBerry Desktop Software
    followed by reinstalling from scratch. You should be able to go to the latest v5.0 with Outlook 2003...it's available here:
    http://na.blackberry.com/eng/services/desktop/#tab_tab_overview
    Cheers!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Outlook 2003 and Office 2007/10 Files

    Our exec is having problems opening up files created with the Office 2007/10 standard...doesn't matter if it is WORD or EXCEL...and he has the compatibility pack installed to read the files.
    When he tries to open a DOCX or XLSX file within an email attachment in Outlook 2003, it says the file cannot be found...if he saves it first and opens it up fro mthe save position, it works. And he can open standard DOC or XLS files within a attachment email.
    We have uninstalled and reinstalled the compatability pack / file converter with same results...this is a situation where he just wants it fixed and fast.
    Thanks...
    Brian

    Hi,
    We may follow these steps to modify the registry and change Outlook's attachment security behavior.
    ========================
    Important This section, method, or task contains steps that tell you how to modify the registry. However,
    serious problems might occur if you modify the registry incorrectly. Therefore, make sure that you follow these steps carefully. For added protection, back up the registry before you modify it. Then, you can restore the registry if a problem occurs.
    1.      
    Exit Outlook if it is running.
    2.      
    Click
    Start, and then click Run. Copy and paste (or type) the following command in the
    Open box, and then press ENTER: regedit
    3.      
    Verify that the following registry key for your version of Outlook exists.
    Microsoft Office Outlook 2003
    HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Outlook\Security
    If the registry key exists, go to step 5.
    If the registry key does not exist, follow these steps to create it:
    a.       
    Locate, and then click the following registry key:
    HKEY_CURRENT_USER\Software\Microsoft
    b.      
    Under
    Edit, click New, and then click Key.
    c.       
    Type
    Office, and then press ENTER.
    d.      
    Under
    Edit, click New, and then click Key.
    e.      
    For Outlook 2003, type
    11.0, and then press ENTER.
    f.        
    Under
    Edit, click New, and then click Key.
    g.       
    Type
    Outlook, and then press ENTER.
    h.      
    Under
    Edit, click New, and then click Key.
    i.        
    Type
    Security, and then press ENTER.
    1.      
    Under
    Edit, click New, and then click String Value.
    2.      
    Copy and paste (or type) the following name for the new value:
    Level2Remove
    3.      
    Press ENTER.
    4.      
    Right-click the new string value name, and then click
    Modify.
    5.      
    Type the file name extension of the file type that you want to open in Outlook. For example:
    .docx
    To specify multiple file types, use the following format:
    .docx;.xlsx
    6.      
    Click
    OK.
    7.      
    Exit Registry Editor.
    8.      
    Restart your computer.
    Best Regards,
    Sally Tang
    TechNet Subscriber Support in forum
    If you have any feedback on our support, please contact
    [email protected] 

  • Microsoft Outlook 2003 and vCard 3.0

    Hi All,
    We are send mail with attachement as a .vcf file. The attached vcf file contains contact information.
    My issue is that  i have send contact image with vCard(PHOTO;TYPE=JPEG;ENCODING=BASE64:) it is diplayed in Microsoft outlook 2007 but the contact image not displayed in Microsft outlook 2003.
    Am using vCard 3.0.
    vCard 3.0 format
    BEGIN:VCARD
    VERSION:3.0
    N;charset=iso-8859-1:LLL;FFF;MMM
    FN;charset=iso-8859-1:FFF MMM LLL
    TITLE;charset=iso-8859-1: S/W Eng
    ORG;charset=iso-8859-1:vcard;Softwarevcard
    EMAIL;type=WORK:[email protected]
    EMAIL;type=HOME:[email protected]
    TEL;type=WORK:+91-484-12345
    TEL;type=CELL:
    TEL;type=HOME:+91-485-1234567
    TEL;TYPE=FAX,HOME:
    TEL;type=FAX,WORK:
    TEL;type=PAGER:12345678
    NOTE;ENCODING=QUOTED-PRINTABLE:Profile
    item1.ADR;type=WORK:;; ;;;;
    URL;type=WORK:
    PHOTO;TYPE=JPEG;ENCODING=BASE64:
    END:VCARD

    Two more things:
    First, sorry for the bad spelling, grammar, and all of that. English isn't my first language and I'm so frustrated at this point I'm not paying any attention to it. Sorry!
    Second, after trying to repair again the icloud 3.0 through the Control Panel of Windows, guess what? It made Offce to crash again! Now I will have to install it again.
    =(

  • Outlook 2003 and my modem connection keeps asking me for my password!

    And it's getting REALLY annoying to have to type this in everytime.
    Modem keeps asking me for my WEP, which is already saved in the settings.
    Outlook 2003 (Vista) keeps asking me for my password for receiving and sending email everytime. This password is ALSO saved in the settings. Oh, and then I get an error message stating it cannot perform these functions.
    This never used to happen during dial-up when I had it. This is excruciatingly annoying.
    With outlook, it was happening on and off, but now consistently.
    Modem, just started today.

    Hello emily's.phone
    You'll find a thread covering a similar problem here. It may be of some use to you. There are also some great contributors here who will chime in with answers.
    Welcome to the Verizon discussion boards.
    ElizabethSl

  • MS Outlook 2003 and Nano

    Hello,
    I have problem for syncronice my Nano with the Calendar of the MS Outlook 2003.
    Where can I get for instruction about it?.
    Thanks.

    Synchronizing contacts and calendars to an iPod, iPod nano, or iPod mini

  • OUTLOOK EXPRESS AND ORACLE FORMS

    WITH THIS CODE,
    win_api_shell.winexec('C:\PROGRAM FILES\MICROSOFT OFFICE\OFFICE\OUTLOOK.EXE')
    I CAN OPEN OUTLOOK EXPRESS FROM AN ORACLE FORM.
    I WANT TO KNOW HOW I CAN MODIFY THIS CODE SO THE PROGRAM GOES INTO OUTLOOK EXPRESS AND OPENS A BLANK NEW MAIL MESSAGE FROM AN ORACLE FORM. ALSO IF THE ABOVE PROBLEM CAN BE TAKEN CARE OF CAN THE 'TO' LINE BE PREPOULATED WITH AN EMAIL ADDRESS FROM AN ORACLE FORM. I KNOW THAT THIS CAN BE DONE WHEN SOMEBODY HAS BEEN LOGGED INTO THE INTERNET. HOW CAN SOMEBODY DO THIS IF THEY ARE NOT LOGGED INTO THE INTERNET?

    This would be nice to know

  • OUTLOOK EXPRESS AND ORACLE FORM

    I have attached 2 libraries in an ORACLE form DD2KWUTIL and D2KCOMM. These are DELOPER 2000 UTILITY LIBRARIES.
    I have been able to bring up OUTLOOK from an ORACLE Form by installing the following code in a WHEN-BUTTON-PRESSED TRIGGER win_api_shell.winexec('C:\PROGRAM FILES\MICROSOFT OFFICE\OUTLOOK EXE').I have also been given code which is supposed to put in the recipient name, subject line an body in an email. The code that I am using is
    WIN_API_SHELL.WINEXEC('''C:\PROGRAM FILES\MICROSOFT OFFICE\OFFICE\OUTLOOK.EXE\MSIMN.EXE''/mailurl:mailto:'||:EMAIL.RECIPIENT_NAME||'?CC='||' '||'&bcc='||' '||&subject='||:EMAIL.SUBJECT||'&body='||:EMAIL.MESS,WIN_API.SW_SHOWNORMAL,TRUE); EMAIL.RECIPIENT, EMAIL.SUBJECT, and EMAIL.MESS are fields from the form. However this code is not working. When I run the program, I get FRM40735 WHEN-BUTTON-PRESSED TRIGGER RAISED UNHANDLED EXCEPTION ORA-01403. I KNOW THAT ORA-01403 MEANS RECORD NOT FOUND BUT I DO NOT KNOW WHY I AM GETTING THIS ERROR MESSAGE. WHAT DO I NEED TO CHANGE IN MY CODE?

    This would be nice to know

  • Synchronisation prob between outlook 2003 and noki...

    Windows xp sp2
    Latest version of pc suite is installed (just checked via the updater)
    Connection method: Bluetooth
    Synchronisation between my contacts and calendar entries in outlook 2003 SP2 and my Nokia n95 8gb was working perfectly until today.
    By perfectly what I mean is that the following happens: if I remove a contact or calendar entry from outlook, it is removed from phone when I sync. Also, if a calendar entry is made on phone or contact amended this was then reflected correctly in outlook on next sync.
    Now what happens is the following:
    I removed a number of calendar entries from outlook and instead of removing these from phone when i synced it kept them on phone and also placed them back in outlook again.
    I also note that when sync is running that it appears to be running through all calendar entries and re syncing rather than just amended ones.
    I only make use of calendar and contacts nothing else between phone and outlook
    This is so weird as i have made no changes to settings on phone or pc!
    Message Edited by mikeashworth on 14-May-2008 07:15 PM

    hi, i have been running my sync as follows.
    plug phone into usb cable. prompted for pc suite connection. I accept.
    PC suite has the word "synchronise" available for clicking. I click on that and synchronise takes place.
    this is how I've always sync'd my phone and outlook.
    From the moment I installed software a cpl of months ago have been to update in both directions for calendar and contacts (those are only things I sync). This was working perfectly until one day it decided to go haywire and add back entries to my outlook calendar which i'd previously deleted.
    i'm currently getting round this by only updating items in outlook and checking the option to remove all items from phone before sending them all, as new, to the phone again from the PC.
    I dont want this to be the way I have to do this though, I want to go back to the old method whereby i could quite happily add an entry in either outlook or phone calendar/contacts and the sync will work correctly. :-(

Maybe you are looking for

  • Who can decode this Panic Report?

    My MacBook Pro keeps crashing and it's driving me up the wall. First I get this screen: And here is the Panic Report: Interval Since Last Panic Report:  101596 sec Panics Since Last Report:          3 Anonymous UUID:                    (removed) Mon

  • Where are the Sales Org and DC details entered in IDOC type ORDERS05?

    I'm continually getting the message that the SORG and DC does not exist for a PO raised within CRM. However, I can't actually see any segments where these details can be entered. Is this something that is derived automatically based on the material n

  • OS X 10.10.1 Apple Mail reliability issue with Virgin Mail Servers

    Apple Mail(8.1) reliability issue with Virgin Mail Servers on my iMac and Laptop Pro with the new Yosemite update!  Spent 1.5hrs with the virgin team (thought we solved it by changing from Auto to one minute update) only to find on return I still hav

  • Software upgrade while tethering has frozen phone

    I tried upgrading my iPhone 4 to the 4.1 software. My internet connection is via tethering. When my phone restarted, it lost the internet connection and is now frozen on a screen which shows a picture of a CD with the word "iTunes" below it, and then

  • The old Creative Audigy 2 audio conso

    Just reformatted, downloaded the Audigy 2 ZS drivers from creative's website, but the audio console it installed is different from the old one I used to have... Before I used to have creative's volume icon in my system tray which would let me test th