Periodic errors authenticating caldav/carddav

I'm having users from iCal and via their iPhones get periodic errors while trying to connect to our MacOS X Lion server. The caldav logs show an odd error:
2012-04-11 14:24:53-0700 [-] [caldav-6]  [PooledMemCacheProtocol,client] [calendarserver.platform.darwin.od.opendirectory#error] Error Domain=com.apple.OpenDirectory Code=5205 "Authentication server encountered a communication error while attempting the requested operation." UserInfo=0x7fc5e2f1db00 {NSLocalizedDescription=Authentication server encountered a communication error while attempting the requested operation., NSLocalizedFailureReason=Authentication server encountered a communication error while attempting the requested operation.}
2012-04-11 14:24:53-0700 [-] [caldav-6]  [PooledMemCacheProtocol,client] [twistedcaldav.directory.appleopendirectory.OpenDirectoryRecord#error] OpenDirectory (node=xxx.seatme.com) error while performing digest authentication for user jordan: Error Domain=com.apple.OpenDirectory Code=5205 "Authentication server encountered a communication error while attempting the requested operation." UserInfo=0x7fc5e2f1db00 {NSLocalizedDescription=Authentication server encountered a communication error while attempting the requested operation., NSLocalizedFailureReason=Authentication server encountered a communication error while attempting the requested operation.}
So it seems that ocacssionally, the connection to OpenDirectory simply fails. Has anyone else run into this problem? We have about 50 devices hitting this server and when it happens, iCal prompts the user saying their password is invalid and asks them to enter their password again which is subpar to say the least.

We work-around it using what Jonathan Miller posted. Specifically:
/Library/LaunchDaemons/com.seatme.checkpwservice.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
  <key>Label</key>
  <string>com.seatme.CheckPwService</string>
  <key>ProgramArguments</key>
  <array>
    <string>/usr/local/bin/checkpwservice</string>
  </array>
  <key>WatchPaths</key>
  <array>
    <string>/private/var/log/opendirectoryd.log</string>
  </array>
  <key>StandardOutPath</key>
  <string>/dev/null</string>
  <key>ThrottleInterval</key>
  <integer>30</integer>
</dict>
</plist>
/usr/local/bin/checkpwservice (from Jonathan):
if tail -n20 /private/var/log/opendirectoryd.log | grep -q "Broken pipe"
          then
             killall PasswordService;
             sleep 5;
             killall opendirectoryd;
             sleep 5;
             exit;
fi
Then load it:
chmod 755 /usr/local/bin/checkpwservice
launchctl load -w /Library/LaunchDaemons/com.seatme.checkpwservice.plist

Similar Messages

  • 2011 outlook gives the following error: "Authentication failed because Outlook doesn't support any of the available authentication methods."

    Upgraded my computer to 10.9.2 Mavericks and now my 2011 outlook gives the following error: "Authentication failed because Outlook doesn't support any of the available authentication methods."  Anybody know how to fix it?  Thank you.

    I got the following from the microsoft Web site. Also, the SMPT port must be overwriten. Use port 587
    This article contains information about the compatibility of Microsoft Outlook for Mac 2011 and Apple iCloud. Outlook for Mac 2011 does not support Apple iCloud calendar (CalDAV) and contact (CardDAV) synchronization.  Outlook for Mac 2011 does support iCloud Mail. For steps on how to configure your iCloud email account in Outlook for Mac 2011, go to the "More Information" section of this article. 
    To configure your Apple iCloud email account in Microsoft Outlook for Mac 2011, follow these steps:
    Start Outlook 2011.
    On the Tools menu, click Accounts.
    Click the plus sign in the lower-left corner, and then select E-mail.
    Enter your E-mail Address and Password, and then click Add Account.
    Note: The new account will appear in the left navigation pane of the Accounts dialog box.
    Enter one of the following in the Incoming server box:
    mail.me.com (for me.com mail addresses)
    mail.mac.com (for mac.com mail addresses)
    Click to select Use SSL to connect (recommended) under the Incoming server box.
    Enter one of the following in the Outgoing server box:
    smtp.me.com (for me.com mail addresses)
    smtp.mac.com (for mac.com mail addresses)
    Click to select Use SSL to connect (recommended) under the Outgoing server box.
    After you have entered the incoming and outgoing server information, Outlook 2011 will start to receive your email messages. 
    Note: You can click Advanced to enter additional settings, such as leaving a copy of each message on the server. 

  • Error authenticating proxy while running agent job

    I am trying to schedule a SSIS2014 package via SQL Server Agent job. Both SSIS and SSMS are running on my local machine in the same domain. I am running SSMS with the same user
    Domain\Admin which is the creator of the SSIS package. SSMS 32-Bit and SSIS 32-Bit are running on Windows 7 64-Bit machine. I can run the package within SSIS without problems.
    When I use a proxy account to run the job step, the following message occurs:
    Unable to start execution of step 1 (reason: Error authenticating proxy `Domain\Admin`, system error: Logon failure: unknown user name or bad password.). The step failed.
    The proxy account uses the credentials identity Domain\Admin. Since the password fields for credential properties in SSMS cannot be left blank, I typed any password although my corresponding windows account has no password. So as mentioned above
    it's the same user account that created the SSIS package since Domain\Admin is stated in the CreatorName property of the SSIS package.
    With this proxy, I tried to run SSIS jobs using the package ProtectionLevel's
    EncryptSensitiveWithUserKey and EncryptSensitiveWithPassword. Running the package manually within SSDT without problems, but from SSMS agent job the same error message appears. I tried the package sources "File System" and, after
    importing the package to MSDB, "SQL Server" and "SSIS Package Store". But exactly the same error message appears with each method.
    Task manager shows that SSMS is running in administrator mode. Using Windows Component Services I added DCOM permissions for
    Domain\Admin to start and activate "Microsoft SQL Server Integration Services 12.0" from local. But the same error message appears. So in my opinion it's a problem with SSMS user account permissions (???) but unfortunately I don't know
    what exactly to do here. I tried the following:
    In the system database MSDB (full path: Databases / System Databases / MSDB / Security / Logins) I assigned all available role memberships (Including db_ssisoperator, db_ssisltduser, db_ssisadmin) to
    Domain\Admin.
    In server security (full path: Security / Logins) I assigned all available server roles. In the tab User Mapping, I assigned the MSDB database.
    Still the same error message appears when I try to run the job. Does anybody have some ideas what I can try?

    If you use the Agent then set the package protection to "Rely on server".
    Then Domain/Admin is probably not an actual proxy but the account the Agent is running under, in this or even any case follow http://www.mssqltips.com/sqlservertip/2163/running-a-ssis-package-from-sql-server-agent-using-a-proxy-account/ to create the
    proper proxy for the packages.
    Arthur My Blog

  • POSTING PERIOD ERROR WHILE DOING GR

    Dear All,
    I am facing error in posting period while doing GR -
    1) Posting period 007 2010 is not open - For current date GR
    2) Posting only lies in periods 2010/07 and 2010/06 in Company Code - For future date in 2010-08
    3) Posting period 006 2010 is not open - For back date GR in 2010-06
    Checked T Code MMRV - Ticked -  Allow posting in previous per. (Still facing the same error)
    Also as per MMRV -
    Current period  07 2010
    Previous period  06 2010
    Last period in prev. year 12 2009
    Please guide
    Vikas

    Hi,
    Check on it:-
    COGI Posting period error
    Re: Error in Opening the Posting Period.
    http://www.sap-img.com/sap-sd/movement-type-posting-error-in-delivery.htm
    pherasath

  • How to setup a local CalDav/CardDav server to synch calendars and contacts

    Since it is now not possible anymore to sync contacts and calendars without the cloud I would like to setup and CalDav/CardDav server in my local home (WiFi) network so that whenever my iOS devices are connected to that network calendars and contacts get synched. Is there any good resource (a step by step tutorial preferably) to learn how to do it? Will I be needing a dedicated machine for the server (I just have one iMac and many iOS devices)? Will all my devices automatically be able to sync once they are connected to the local WiFi?

    But then I would need to buy another Mac. That seems a little overklill just for a CalDav/CardDav server. Can't I just run a little service on my iMac? As stated above I have only one Mac and I probably wouldn't want to use OSX Server as my day-to-day desktop OS. Or would I?

  • SQL Server does not exist or access denied - periodic error

    Hi There,
    For the last week or so, I have been getting periodic errors on my sites powered by MSSQL databases. The error message is as follows:
    Microsoft OLE DB Provider for SQL Server error '80004005'
    [DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied.
    Usually, a quick refresh, and everything works fine again.
    My host doesn't know what has caused the issue, but has dug up this microsoft link: http://support.microsoft.com/kb/907264
    Most of that tech speak is beyond me! I use Dreamweaver - does anybody know if the standard dreamweaver connections or cursors contravene the advice on that page, and if so how to fix it?
    If not, does anybody know where to look to solve this issue?
    Thanks,
    Dan 

    I had this same problem and on a hunch I deleted the brackets
    so that the connection string instead of being,
    "Persist Security Info=False;Data
    Source=[THESERVER\SQLEXPRESS];Initial Catalog=[AdventureWorks];User
    ID=[ATEST];Password=[kjdkjdkjd]"
    is now,
    "Persist Security Info=False;Data
    Source=THESERVER\SQLEXPRESS;Initial Catalog=AdventureWorks;User
    ID=ATEST;Password=kjdkjdkjd"
    This was in Dreamweaver 8.

  • Getting the error "Authentication failed."

    Hi,
    I am getting the error +"Authentication failed. If problem persists, please contact the system administrator"+ while login to OEM12c grid console as sysman user.
    I thought it was sysman password related and set the new password at DB level and OMS level too.
    Changed the SYSMAN user password at DB level as: alter user sysman identified by qmpzla102;
    Changed the SYSMAN user password at Grid level (OMS level) as: emctl config oms -store_repos_details -repos_host ushdc8951.us.deloitte.com -repos_port 1521 -repos_sid OER -repos_user SYSMAN -repos_pwd qmpzla102
    Though I am getting the same error while login to the OEM console.
    Please help me in getting the solution.
    Thanks,
    Mahipal

    Similar thread
    Error while login to 12c R2 OEM grid

  • Reboot errors authentication mDNSResponder SecKeychainFindGenericPas. HELP?

    Reboot errors authentication mDNSResponder SecKeychainFindGenericPassword. HELP?
    I first have to explain that several months ago after an apple update, I always have a dialog which ask for my 'system/keychain' password... something like that which I don't have, it's not my login password.
    I finally delete the annoying ~"system keychain" sorry don't remember the exact name which was always asking a password on my PB and PM and reboot. Now no more password is asked but it seems some problems are appearing any idea how to repear all those strange errors???
    sudo ? recreate the keychain ???
    My system is pure, no hack, anti-virus, nothing. Repairing keychain does not help, repairing disk authorization neither, tools from versiontracker neither.
    I have a snow airbase.
    Thanks in advance !
    Mar 2 10:59:55 Ordinateur-de-SM shutdown: reboot by SM:
    Mar 2 10:59:57 Ordinateur-de-SM SystemStarter[4296]: authentication service (4304) did not complete successfully
    Mar 2 10:59:59 Ordinateur-de-SM SystemStarter[4296]: The following StartupItems failed to properly start:
    Mar 2 10:59:59 Ordinateur-de-SM SystemStarter[4296]: /System/Library/StartupItems/AuthServer
    Mar 2 10:59:59 Ordinateur-de-SM SystemStarter[4296]: - execution of Startup script failed
    Mar 2 11:01:01 localhost diskarbitrationd[39]: disk0s3 hfs 662F4EBC-D3F6-3C04-AF5E-B4A13B6DB2E2 HD-SM /
    Mar 2 11:01:03 localhost mDNSResponder: Couldn't read user-specified Computer Name; using default “Macintosh-000393D1E6CC” instead
    Mar 2 11:01:03 localhost mDNSResponder: Couldn't read user-specified local hostname; using default “Macintosh-000393D1E6CC.local” instead
    Mar 2 11:01:04 localhost mDNSResponder: Adding browse domain local.
    Mar 2 11:01:04 localhost lookupd[65]: lookupd (version 369.2) starting - Thu Mar 2 11:01:04 2006
    Mar 2 11:01:04 localhost lookupd[65]: lookupd (version 369.2) starting - Thu Mar 2 11:01:04 2006
    Mar 2 11:01:04 localhost kernel[0]: NVDA,Display-B: vram [94000000:08000000]
    Mar 2 11:01:04 localhost kernel[0]: NVDA,Display-A: vram [00000000:01000000]
    Mar 2 11:01:06 localhost DirectoryService[57]: Launched version 2.1 (v352.1)
    Mar 2 11:01:06 Ordinateur-de-SM configd[37]: setting hostname to "Ordinateur-de-SM.local"
    Mar 2 11:01:09 Ordinateur-de-SM /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow: Login Window Application Started
    Mar 2 11:01:10 Ordinateur-de-SM kernel[0]: AirPort: Link Active: "ViaAirPort" - 0030661dd724 - chan 2
    HERE TOO
    Mar 2 11:01:10 Ordinateur-de-SM configd[37]: SecKeychainFindGenericPassword err= -25308 ( =0xffff9d24, secErrStr=User interaction is not allowed. ) (current= ViaAirPort)
    Mar 2 11:01:11 Ordinateur-de-SM loginwindow[113]: Login Window Started Security Agent
    Mar 2 11:01:13 Ordinateur-de-SM configd[37]: executing /System/Library/SystemConfiguration/Kicker.bundle/Contents/Resources/enable-net work
    Mar 2 11:01:13 Ordinateur-de-SM configd[37]: posting notification com.apple.system.config.network_change
    Mar 2 11:01:13 Ordinateur-de-SM lookupd[136]: lookupd (version 369.2) starting - Thu Mar 2 11:01:13 2006
    Mar 2 11:01:17 Ordinateur-de-SM configd[37]: target=enable-network: disabled
    PowerMac G4 Dual 1.25Ghz   Mac OS X (10.4.5)   PowerBook G4 500Mhz

    can you be more clear when this happens, is it on startup? can you start up successfuly? have you safe booted?

  • Getnode returned null for uri error for caldav server

    Hello,
    I am trying to install the Oracle UCS ( SUN 7 update 2 ) server.
    https://wikis.oracle.com/display/CommSuite7U2/Communications+Suite+on+a+Single+Host+%28Linux%29#CommunicationsSuiteonaSingleHost%28Linux%29-InstallingtheExample
    So far, I have successfully:
    Checked the installation requirements
    Installed Communications Suite 7 Update 2 Software
    Installed and Configured the Directory Server
    Prepared the Directory under ( Configuring Communications Suite Components )
    Configured Delegated Administrator and Communications CLI
    Configured Messaging Server
    Configured MYSQL Server
    Configured Calendar Server
    I have just installed a caldav server. I checked that it was enabled by running:
    # asadmin list-components -p <admin-port> --type=web
    davserver <web-module>
    Command list-components executed successfully.
    # asadmin show-component-status -p <admin-port> davserver
    Status of davserver is enabled.
    Command show-component-status executed successfully.
    that was from this page:
    https://wikis.oracle.com/display/CommSuite7RR92909/Calendar+Server+7+Troubleshooting
    In Firefox, I try to hit the suggested pages under "Testing Calendar accounts". However, this errors out every time for me.
    http://domain.com/davserver/dav/h/myDomain.com/myusername/calendar
    wheremyDdomain.com is my actual domain that I will not list here
    and myUsername is my actual username which I will not list here
    ( I edited both of these in the logs below )
    I checked my log in /var/opt/sun/comms/davserver/logs:
    INFO [2012-02-11T11:46:02.729-0500] <...DavServer.<init>> Server Startup succeeded
    INFO [2012-02-11T11:46:02.730-0500] <...DavServer.loadBackend> Loading backend defaultbackend with backendid defaultbackend
    INFO [2012-02-11T11:46:02.730-0500] <...DavServer.loadBackend>      JDBC JNDI Name = jdbc/defaultbackend
    INFO [2012-02-11T11:46:09.033-0500] <...DavServer.loadBackend> Loading backend ischedulebackend with backendid ischedulebackend
    INFO [2012-02-11T11:46:09.033-0500] <...DavServer.loadBackend>      JDBC JNDI Name = jdbc/ischedulebackend
    INFO [2012-02-11T11:46:09.427-0500] <...DavServer.loadBackends> iSchedule enabled
    INFO [2012-02-11T11:46:09.439-0500] <...DavServer.loadBackends> modified ischedule collection at /ischedule/
    INFO [2012-02-11T13:33:18.967-0500] <...URIInfoManagerImpl.getEntryFromSearchFilter> found 0 corresponding to: (uid=caldav)
    INFO [2012-02-11T13:33:59.844-0500] <...URIInfoManagerImpl.getEntryFromSearchFilter> found 0 corresponding to: (uid=caldav)
    FINE [2012-02-11T13:42:39.157-0500] <...DavServerServlet.service> [REQ] GET /davserver/browse/h/myDomainName/myUserName/calendar 127.0.0.1 myDomainName
    FINE [2012-02-11T13:42:39.808-0500] <...LDAPSingleHostPool.getConnection> got connection from getConnection() for pool Pool number:0. Host=myDomainName
    FINE [2012-02-11T13:42:41.441-0500] <...LDAPSingleHostPool.getConnection> got connection from getConnection() for pool Pool number:0. Host=myDomainName
    FINE [2012-02-11T13:42:41.460-0500] <...LoginModuleHelper.checkIfUserInAdminGroup> user: admin; isMemberOf = cn=Service Administrators, ou=Groups, o=isp
    FINE [2012-02-11T13:42:41.684-0500] <...DavBrowserServlet.service> Got a non standard condition: getNode returned null for uri /davserver/browse/h/myDomainName/myUserName/calendar
    FINE [2012-02-11T13:42:41.684-0500] <...DavServerServlet.service> [RES] [404] Command execution time: 2.527 secs
    I can hit this page from the browser:
    http://myDomainName:4848
    From my understanding, that is the admin port. That brings up the GlassFish server admin page.
    I do not remember creating a calendar account anywhere is my first thought. I followed the example deployment step by step so far and nowhere does it have me create a calendar user account. So, maybe there is no account at this point?
    So, my first question would be:
    How can I verify that I have a calendar account to begin with? ( or is this what I am doing by trying to log into the sites suggested under 'Test Calendar Accounts').
    My next question would be:
    What does this error mean: "getnode returned null for uri error for caldav server"?
    Spin off question from that:
    What should I do to fix that error?
    Thanks in advance!

    I did not put a slash at the end of the uris I was testing
    http://myDomain.com:80/davserver/browse/h/myDomain/myUserName/calendar
    http://myDomain.com:80/davserver/dav/h/myDomain/myUserName/calendar
    Once I put the slash at the end of the uri, the configuration page appeared and the error was not displayed about getNode anymore:
    http://myDomain.com:80/davserver/browse/h/myDomain/myUserName/calendar/
    http://myDomain.com:80/davserver/dav/h/myDomain/myUserName/calendar/

  • Fi posting error due to fiscal period error 1

    HI SAP GURUS,
    I am trying to post TR6 Challan in todays date & getting following message-
    Fi posting error due to fiscal period error 1
    Message no. 8I216
    Diagnosis
    Attempt to post the document in a period outside the current Fiscal
    period  setup.
    Procedure
    Change the posting date  or  Change the fiscal  period prior to posting
    the  transaction under consideration.
    please help me to resolve the issue.
    CHEERS

    HI
    This error is due to Posting period is not open in FI check the posting period is opened for all the accounts in OB52 then post the entries
    hope it will be usefull

  • ERROR: Authentication no respond: no error

    I configured an ASA as VPN using Windows IAS authentication. When using test aaa authentication command, I receive ERROR: Authentication no respond: no error. I can ping the IAS server? The configuration can be found this page:http://www.howtocisco.com/cisco/samples/iasexample.htm.
    Any suggestions?

    Hi,
    Thank you for the reply. It didn't hit the IAS and no error in the Event Viewer. Then I found the problem was the IAS stops. After started it, my test received another error Invalid password. The Event shows ID 2 with authentication method is PAP. So I enabled the PAP (Unencrypted authentication) on the IAS. I can VPN in now. Is the the PAP (Unencrypted authentication)? Can I force the VPN use different authentication such as MS-CHAP v1 or v2?

  • OID error authenticating orcladmin user

    Hi,
    I am in the process of switching the OID instance I am using on my local machine to a remote machine. Essentially I want to use the OID instance running on that remote machine.
    I have specified the host and port, but when I try and add the username and password in step 2 (cn=orcladmin) I get the following error :
    javax.naming.AuthenticationException: [LDAP: error code 49 - Invalid Credentials]
    Error authenticating user. [LDAP: error code 49 - Invalid Credentials]
    I know my username and password are correct as I can connect to the OID instance using the Oracle Directory Manager.
    Does anyone have any ideas what I need to do to resolve this ?
    Thanks,

    This is strange as orcladmin usually already has administrative privileges after installation (Both cn=orcladmin and cn=orcladmin,cn=users,dc=whatever domain).
    You may check this on the oidadmin, here on my environment, cn=orcladmin,cn=Users,dc=..domain.. is member of the group cn=IAS & User Mgmt Application Admins,cn=Groups,cn=OracleContext,dc=..domain..., and this group is inside the group cn=iASAdmins,cn=Groups,cn=OracleContext (This one is in the root context, not inside the domain tree). But all this is setup automatically during installation, you shouldnt be needing to change it, there is no reference to this stuff on the documentation that I am aware of.
    Post a reference to what manual or note are you following.
    Regards,
    Luis

  • Session management error: Authentication Rejected error

    Please help me with this error I get when trying to build qdvdauthor:
    /opt/qt/bin/uic qplayer/engines/dialogqxinesetup.ui -o .ui/dialogqxinesetup.h
    Session management error: Authentication Rejected, reason : None of the authentication protocols specified are supported and host-based authentication failed
    the xhost + command does not help and ...
    the command: xhost +localhost gives me the following message:
    xhost:  bad hostname "localhost"
    Thank you

    br4 wrote:
    no
    in /etc/rc.conf
    # NETWORKING
    HOSTNAME="myhost"
    and /etc/hosts is 127.0.0.1
    i use dhcp . so should i change the /etc/rc.conf ?
    At least something worked!  FYI, I use dhcp as well and here are the relevant parts of my /etc/rc.conf
    # NETWORKING
    HOSTNAME="darkstar"
    and /etc/hosts
    #<ip-address> <hostname.domain.org> <hostname>
    127.0.0.1 localhost.localdomain localhost darkstar

  • CalDav CardDav contacts sync (Google or CardScan)?

    i am running iOS7/iPhone and Mavericks/MBP and Lion/Mac Pro in a small business.
    i would like to get a set of contacts in Google synced to my various devices WITH the groups/categories. right now if i do this by checking the "Contacts" box in my GMail acount in Mavericks on my laptop i get all my contacts without the categories/groups which is useless.
    does anyone know if there is a way to do this with CalDav CardDav sync? i am thinking that perhaps i can do this by uploading my contacts to Google Contacts or by somehow posting my contacts database as an export from CardScan.
    i ran across these articles which look mighty interesting.
    TIA
    http://512pixels.net/2013/06/ios-contacts-google-carddav/
    http://512pixels.net/2012/12/contacts-google-carddav/

    I have the same problem. Is CardDAV passing contact groups?

  • WebDav Issues (calDav, cardDav)

    Good news first: I was able to connect with my webDav provider. I made one account for each service and the phone automatically grouped them together.
    But they dont work as they should...
    The cardDav account only fetches 25 contacts of 100+. When I create a new contact on either side it also wont show up on the other side.
    calDav worked first. But it stopped fetching new entries from the server. However creating a new entry on the phone gets transmitted to the server and vice versa.
    Various desktop clients work flawless with those accounts.
    Anyone had similar issues or maybe an idea to solve this?
    Btw: Will the field for Outlook categories ever get implemented? I am tired of getting it strippend from my data. It would also be nice to use it for automatic Groups. Even my old phone did this although it rather sucked at synchronizing.

    Did set up a fresh calendar on the server and updated the contacts too.
    For a short time I had all my calendar entries showing up on the phone. I could open and view them
    But now most vanished again -.-
    It looks like everything that has an Outlook Category assigned got filtered by the system. Which is everything except for birthdays in my Calendar. This does not what I expected from business phone...
    Contacts on the Phone now made it to 46. Umlauts (ä,ö,ü) got converted in question marks in a square... (Edit: Error with umlauts was made by a different client)
    After more than one year after the BB10 release, stuff like this should have been ironed out.

Maybe you are looking for

  • IS Retail Reg

    Hi Sap Gurus, I am new to Retail and got the following issues at the time of creating PO. 1)Article not subj. to inventory mgmt. in site XXXX (Pl. check your input) 2)Account assignment mandatory for article ZZZZ (enter acc. ***. cat.) Message no. ME

  • Pro C with gcc?

    Hi, I am trying to use gcc for Windows as a compiler for Pro C precompiled programs. The program complies ok but when I try to link it , there's an error that it can't find the file or directory. The sintax used to link is as follows: gcc -o test.o -

  • Existing Musi

    I'm currently thinking about purchasing an itouch and I have some questions about itunes. I have a lot of music on my computer and was just wondering if there would be any sort of conversion needed for my current music to be compatible with itunes. A

  • Syncmaster 226BW connected on my MacBook Pro doesn't work

    Hi, I've tried to connected my Samsung Syncmaster 226BW on my MacBook Pro by the VGA/DVI connector and the screen was black even if I set my setting to the good resolution in the control pannel. All the other setting is correct but my screen is alway

  • My hard drive died, so I need a new serial number to reinstall Lightroom.

    Hello, My hard drive died, so I need a new serial number to reinstall Lightroom. How do I go about having another serial number emailed to me? Thanks!