Enterprise Messenger for OCS 2005 and OS 5.0

Does anyone know if RIM is working on a release for Enterprise Messenger that will be compatible with Microsoft Office Communicator 2005 that will run on handheld OS 5.0?  They released the OCS 2007/5.0 compatible version 2.7 several weeks ago, but I have not seen the update for OCS 2005/5.0. 

FYI -- typically, forward looking statements are discouraged on these forums...and authoritative future information is definitely not encouraged...anyone who knows the answer would be barred from revealing it as it would be proprietary information, not for disclosure.
Good luck!
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

Similar Messages

  • Enterprise Deployment for Hosted Devlopment and Production

    We are moving from a 11G dev environment to 11g production. We chose Installation scenario#3: Enterprise Deployment for Hosted Development and Production so we could scale out the load to multiple servers. I am at the point now where I need to load my repostory and webcat(dashboard files) and I want to make sure I understand what needs to be done.
    Do I load my Repository and Webcat directory on the first node and it deploys it automatically to the 2nd node or are there other steps to do this.
    Thanks!

    Hi,
    I thought about that possibility, but since in the Apple website I read that
    "Deploy proprietary, in-house applications to authorized users in your company, the iPhone Developer Enterprise Program is available to companies with 500 or more employees and a Dun & Bradstreet number."
    Since I'm freelancer,I don't have 500 employees, neither the Dun & Bradstreet number.
    Can I subscribe to the program in the same way?
    Also, if I subscribe the Enterprise program, I can also develop and publish "normal" apps for the iTunes, or do I need to have another subscription?
    Best regards and thanks for the fast answers
    Paulo Correia

  • Compile Add-On for SBO 2005 and 2007

    Hi All,
    I am looking for a document that I downloaded a while ago on steps how to compile add-ons for SBO version 2005 and 2007 on the same machine. I don't want to run both versions (I can be running either) just want to be able to compile add-ons on both version 2005 and version 2007 on my local machine. I also don't want to use virtual machine or something like that.
    Thanks for the help,
    Adele

    Hi Adele,
    usually it is enough to change the .dll reference in your code and recompile it.
    you can also decide which diapi connection you use
    when creating the company object
    //The object OComp is defined as company object of the selected version
    Dim OComp As SAPbobsCOM.Company
    Set OComp = New SAPbobsCOM.Company
    or
    //The object OComp is defined as company object of version 2005
    Dim OComp As SAPbobsCOM.Company
    Set OComp = CreateObject("SAPbobsCOM.Company.6.8")
    // for 2007 it should be
    Dim OComp As SAPbobsCOM.Company
    Set OComp = CreateObject("SAPbobsCOM.Company.8")

  • Java Version for ERP 2005 and Oracle 10.2.0.1

    Hi all,
    I've just a question. I'm trying to install ERP2005 on Windows 2003 Server with Oracle 10.2.0.1.
    But the process terminates at the step "Import ABAP" with the error messages concerning "CJS-30022 Program 'Migration Monitor' exits with error code 103 " and " FCO-00011 The step runMigrationMonitor with step key".
    I've had a similiar abort with another installation. Could the java version cause this error? Which java version is recommended as standard in regard to our ERP2005-installation?
    Please help me !!
    Thanks in advance.

    10.2.0.1 is not supported.
    you have directly update 10.2.0.1 after the installation to 10.2.0.2 and then install at least hotfix 10.2.0.2.12 (current is 10.2.0.2.13).
    Using older version of Oracle 10.2.0.2.12 will cause a lot of problems.
    By the way, are you installing a blank new ERP2005 or are you performing a systme copy?
    Peter

  • Problems with concurrency tests using Crystal Reports for VS 2005

    Post Author: condeagustin
    CA Forum: General Feedback
    Hi
    My name is Agustin and Im using Crystal Reports for VS 2005
    and NET 2.0 to generate pdf files. This is the scenario:
    I created a COM+ object in c# and everytime the
    COM+ creates an instance of this object, the following flow is executed:
    it reads an xml file from a database, then it feeds the report with this
    xml file, afterwards it generates a pdf file and finally this pdf file is
    inserted into the database. Both fields (xml and pdf fields) are varbinary in the
    same table in sql server 2005. All the flow from reading the xml to inserting
    the pdf into the database is executed in memory, it never goes to the hard
    disk. In other words both the xml and the pdf file are stored in memory (the
    RAM). That is the only function of that COM+ object and I already have it in a
    production server and it works GREAT!!
    The PROBLEM is the concurrency tests. I made the following tests
    in the same production server:
    1. First I went to the registry and I set the PrintJobLimit to
    100 in HKEY_LOCAL_MACHINESOFTWARECrystal Decisions10.2Report Application
    ServerServer
    2. I shut down the object in the COM+ and I executed 100
    threads all at the same time. Each thread created one instance of the object in
    the COM+ and the 100 pdfs were generated SUCCESFULLY in 5 minutes!!
    3. Then I executed again 100 threads (WITHOUT shutting down the
    object in the com+). 10 pdfs were generated succesfully but the rest were
    never generated and there was no exception because my object was NEVER
    INSTANTIADED in the COM+, I mean, the 90 instances were never created in the
    COM+, so my object was never executed, THAT IS MY PROBLEM!! Do I have to
    modify something in the registry files of crystal reports to fix this? What can
    I do? I have revised the code in that object a LOT OF TIMES and believe me,
    everything is being closed and disposed at the end (the memory streams, the
    ReportClass objects, the connection to the database, even the dataset used to
    store the data of the xml file!
    So to sum up the problem is not with the execution of my object
    (cause once is created the object works great and the pdf is generated
    perfectly!), the problem is with the com+ TRYING to create another instance
    of my object given that test scenario. Help me please, What do you
    suggest?
    The production server has this specifications:
    Operative System: Windows Server 2003 Enterprise Edition with Service Pack 2
    Processor: Dual Core AMD Opteron 2212 2.00GHz
    RAM: 820MB
    Hard drive: It is partitioned in 2 drives --> C
    drive has 20GB and D has 60GB
    Note: Each generated pdf has only one page and if you bring it
    to disk its maximum size is 56KB
    I hope your answer and thank you
    Agustín Conde Martí

    Post Author: John Werner Enoksen
    CA Forum: General Feedback
    Hi, im about to write a simular solution where I will use VS2008/Com+ to be in compliance to an existing solition written in VB6.0, so I was googling to look for bumps. Did you figure this one out?
    Best regards,
    John Werner

  • Enterprise service for Approving/Rejecting Time sheets

    Hi All,
    I am searching for the Enterprise service regarding "Approving / Rejecting Employee timesheet by Manager", i am able to find the Approve/Reject leave request but not the time sheet. could any one please help me in finding these services regarding time sheets. I need these services names as it is high priority issue. or is there any other way to accomplish the same task ?
    Thanks,
    Rohan

    Hi Shrivastava.G,
    Thanks for the quick response, i will look and dwell into it and see if it's fit my requirements and award points accordingly. time being i am stuck in one more problem i was able to find the Enterprise sercvices for Changing timesheet and even displaying timesheet, but surprisingly we could not find the enteprise service for the initial basic requirement of "CREATING TIMECARD", where a user can enter and book the necessary hours on weeekly basis.
    i got these two enterprise service, but it does not fit our requirement:
    1) ECC_EMPLTIMEEVENTERPCRTRC
    2) ECC_EMPTIMSHEETCHGRC
    Any help on this would be much appreciated,
    Thanks,
    Rohan

  • Enterprise structure for construction business

    Hi ,
    Here the business case like this "We are implementing SAP for construction company , i have some doubt in enterprise structure becaue in construction company they don't have any perticular manufactureing Plant , there will be have different project site and these go on changeing as per the project period . So my question how to design logistic enterprise structure for construction business" and how to integrate these with PS
    Edited by: Raghavendra Balegar on Jul 2, 2009 6:29 AM

    Dear
    1) Each project you can consider as a plant ( where u can valuate the stock at plant level),
    2) and difeerent storage locations under plants depends on your material types like ROH,HALB,ERSA,FERT...ect
    3)purchase organisations like if have a contracts create one referance pur.org and if require create one more pur.org at local purchases
    4)PS consultant has to create each project as WBS element ,under WBS element networks, under networs activities
    5) PS-MM integration
    When ever Project people requires material as per their planning, they required to accocate the material to particulat activity say if they want cement they need to allocate cement to particulat activity ,
       system intern will raise PR at activity level and reservation at newwork level ( item categoty should be L in PS)
    base on the PR , purchasing people can create RFQ or PO ,GR,IR Like MM standard Procedure (PR account assignment will be Q orP)
    based on the resevation GI will be done (m.type 281 Q)
    Regards
    venu gopal

  • Can't find a workin MSN messenger for Mac

    Ok. so I'm trying to find a version of MSN Messenger for my Mac and there was a version to download on Apple's website, but when i opened it, it opened in something called HexEdit, and was all binary code. I have Mac OS X 10.5.2 so it should work, but I don't know why it wont. Anyone got any ideas or suggestions? Cause I'd really like to be able to have MSN on here. Thanks.

    try to download from this site..
    http://www.microsoft.com/mac/products/messenger/default.mspx

  • I wonder to know what is the enterprise solution for windows and application event log management and analyzer

    Hi
    I wonder to know what is the enterprise solution for windows and application event log management and analyzer.
    I have recently research and find two application that seems to be profession ,1-manageengine eventlog analyzer, 2- Solarwinds LEM(Solarwind Log & Event Manager).
    I Want to know the point of view of Microsoft expert and give me their experience and solutions.
    thanks in advance.

    Consider MS System Center 2012.
    Rgds

  • Double stack BI and Enterprise portal for SSO

    I am in the process of configuring a double stack BI and SAP Enterprise Portal. Both systems are residing on different domains. We want to utilize the standalone SAP Enterprise Portal for our BEx etc. For that I have exchanged certificates between the ABAP and the SAP Enterprise Portal systems and with the help of Support desk tool I have overcome the certificate issues. The RFC connection from ABAP and SAP Enterprise Portal works fine. The Support desk tool is complaining now about the prefix of these two servers. Also when I check the connection testing between these two systems all the messages are correct except for WEBAS connection it complains about the ping service which is already active on ABAP side. For Connectors it complains about SSO which is not detected/complained by the Support desk tool (0.426). I need your advice:
    1. Either uninstall the JAVA instance of BI or
    2. Make a Federated Portal network by making the BI JAVA as PRODUCER and the SAP standalone as CONSUMER.
    The Support package levels are the same as EHP1 SP 7 of both the double stack BI and the standalone Enterprise Portal systems. The source of users are both local to the systems.

    answered

  • I have installed oracle 10g in my winxp machine. i am using enterprise manager. i am not able to shutdown the system as it asks for os username and password. i have provided my os username and password but eerror persiste. somebody pls help me to get rid

    I have installed oracle 10g in my winxp machine. i am using enterprise manager. i am not able to shutdown the system as it asks for os username and password. i have provided my os username and password but eerror persiste. somebody pls help me to get rid of this.

    Here I am using Java Type IV for database
    connection.
    So,there was no necessity of creating DNS.How your app communicates with db shouldn't matter for the end user. Still, you may want to use a functional network name also for the thin client driver connection string.
    So,is there any other way to solve this problem.What is the problem really? Do you not use dns for network naming? Maybe you have to manage the hosts file on every client then.

  • 15 int digits and 3 decimal digits number problem in CR for VS 2005

    Post Author: condeagustin
    CA Forum: Crystal Reports
    HiIm using the Crystal Reports that comes with VS 2005 and I'm having a problem showing a number with 15 int digits and 3 decimal digits. In my tests, for example I have a formula that only has this line of code:  356125478123456.251I want the report to show  356,125,478,123,456.251 but it shows  356,125,478,123,456.000Why does CR puts 000 when it has to be a 251!!! WHY?!!!! I have tried to put the number as a string and I have tried a lot of functions like Round, Truncate, ToText, CDbl, etc and it's always the same result. In the format object of that formula the decimals are 1.000 and the rounding is 0.001. And the following is the weirdest part:If, instead of 356125478123456.251 I put 56125478123456.251, CR shows 56,125,478,123,456.300If then I put  6125478123456.251 CR shows 6,125,478,123,456.250And then if I put 125478123456.251 CR SUCCESFULLY shows 125,478,123,456.251 That is the way I want it but with 15 int digits. It looks like CR only works with a maximum of 12 int digits, more than that, the decimals don't work. How can I fix this? Please help me!Kind regards,Agustín Conde 

    Post Author: Ken Wong
    CA Forum: Crystal Reports
    Hi Agustin,
    Crystal Reports uses signed doubles as its datatype for numbers.  A signed double on a 32 bit machine is represented by 8 bytes.  1 sign bit, 11 exponent bit, and 52 bit for the mantissa. This roughly corresponds to 15 digits of total precision in decimal; ie. it does not matter where your dot is. You have 15 digits before and after the decimal point combined.
    This behavior is pretty standard.  You should see similar behavior in applications such as excel.
    Hope this helps,
    Ken

  • I was told I need to remove the enterprise server account I have and need to add a new one for work but the IT person did not tell me how to do this.  Can anyone help?

    I was told I need to remove the enterprise server account I have and need to add a new one for work but the IT person did not tell me how to do this.  Can anyone help?

        Jennymbell, never fear help is here!
    Have you tried contacting your IT department for assistance? You can visit http://bit.ly/QECbGh for steps on how to enterprise activation.
    Keep me posted if you need further assistance.
    John B
    Follow us on Twitter @VZWSupport

  • Why Can't Camera Work with Windows Messenger for Mac and give output video?

    I can see from the other end, but my camera won't come on so they can't see me. I hear them and can type in Messenger, but I'd like to have 2-way video, not just receive.
    My camera works as I use it in Photo Booth, so that's not the problem. I can't find a way to setup the video within Messenger. Don't know if it's problem with Messenger or Leopard.
    Whatever it is, it's very annoying that I can't output video.
    Anyone with similar problem or have the answer? I'd be forever grateful!
    junroe

    Microsoft Messenger doesn't have video support on the Mac version. If you want crossplatform videochat, ask your friends to join AOL Instant Messenger. You can get video chat crossplatform between AOL Instant Messenger for PC & Apple's iChat which supports AOL Instant Messenger screen names. Skype is crossplatform too. An open source program called ophonex supports Microsoft Messenger's Netmeeting protocol for video chat as well. IRC is also crossplatform in videochat though its setup is a bit more complicated with the software known as Ircle for the Mac.
    Message was edited by: a brody

  • OCCI for Oracle 9i and MS Visual Studio 2005

    Hello.
    Where do I get OCCI *.lib and *.dll files for Oracle 9i and MS Visual Studio 2005 (VC 8)?
    Roman Perepelitsa.

    I was able to use MS Visual Studio 2005 and OCCi classes. There is a catch though, I was not able to use the debug library dll as it will crash. So I was not able to debug any code using the VS debugger, instead, I use the old and lengthy process: insert printf statements.
    Jeff

Maybe you are looking for