Connect BPC 10.0 on Server with Client -Admin console on BPC 7.5

Hello,
We want to install SAP BPC version 10.0 NW on our Server. Our clients has installed BPC 7.5 SP5
Is possible connect the client version 7.5  with Server on 10.0?
Are there any errors or Can occur something that it damages the configuration?
Thanks a lot
Best Regards
Gustavo Fra

Hi,
As your clients allready has BPC 7.5Nw Sp5,you can use the same in Server also..if not once the Server is installed with BPC 10NW you can upgrade the clients system to 10.0 NW.
But both and client system should be on Same Version including Service Pack.
Thanks,
Naresh.K

Similar Messages

  • Screen sharing to OS X Lion Server with non-admin account

    I have set up a Lion Server with one admin (in addition to the root user) and several non-admin normal accounts. In Server.app, I have enabled remote login with ssh, and remote management via screen sharing.  I am unable to use Screen Sharing to connect to the server from the non-admin accounts, but able to use the admin account. I've read that it is only enabled for admin users, but need to access from non-admin accounts, and I can't add these accounts to the admin group. Is there a way to do this with Workgroup Manager? I tried changing the Remote Management settings in System Preferences by adding the non-admin, but when selecting 'Observe' and 'Control' in the options for the user, they are not saved.

    I resolved this issue by deselecting the "Enable screen sharing and remote management" in Server.app and going to System Preferences, Sharing Preferences, Screen Sharing, and allowing access for "All Users".  If you have some users you want to allow VNC, you can create a group, add the allowed users to the group, and add the group under "Only these users".

  • Impossible to start UCM managed server with the WLS console

    Hi,
    I cannot start the UCM managed server with the WLS console. The node manager is running by startNodeManager.cmd. The admin server by startWebLogic.cmd.
    When I start the UCM server with the console WLS (Environment, Servers, Control tab and Start on the checked server), it seems to be running (the state is RUNNING) but when I open the url on the the web server UCM there is a 404 error
    In the log, there are many java.lang.ClassNotFoundException: oracle.jrf.wls.JRFStartup, oracle.security.jps.wls.JpsWlsStartupClass, oracle.core.ojdl.weblogic.ODLConfiguration, oracle.jrf.AppContextStartup, oracle.as.jmx.framework.wls.spi.StartupListener, oracle.ias.cache.Startup, oracle.dms.wls.DMSStartup ...
    If I start UCM directly by startManagedWebLogic.cmd and not with the WLS console, everything is OK. No error in the log and UCM server is working well
    Any idea ?
    Thanks
    Hugues

    Great!
    I had the same error: when starting UCM on WL Console, it starts and says Running. But when accessing it on the browser receive the error 404. In the other hand, when starting with Commands, it force shutdowns.
    I have set the StartScriptEnabled property to true, now I can start UCM only on the command Line, to start it on WL Console, I have to manually start the node manager.
    Is there a way/script to start the node manager automatically?
    Regards,

  • Using credentials of a logged in user with JMX (Admin console extension)

    Hello,
    I would appreciate any info regarding creation of a connection to the DomainRuntimeService MBean server in an administration console extension in BEA Weblogic 9.2.
    The problem is that if I provide no security credentials, I'm not able to invoke any operations on the MBean server. Also the possibility of providing "default" user credentials within the extension "configuration" used to authenticate is not an option.
    The most convenient way would be to use the same mechanisms used by the rest of the administration console, but there seems to be very little information around about where to retrieve the username/password used to log in to the console.
    Thank you very much in advance, If you didn't understand my question, please ask for more information since English is not my native tongue.

    Hi,
    Check the following wiki content submitted by Michael Nicholls:
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/snippets/excel%252bspreadsheet%252bof%252bume%252bassignment%252bdata
    The code for getting groups for your case (current logged in user) should be like:-
    IWDClientUser clientUser = WDClientUser.getLoggedInClientUser();
    IUser user1 = clientUser.getSAPUser();
    Iterator groups = user1.getParentGroups(false);
    while (groups.hasNext()) {
    IGroup group = groupFact.getGroup(groups.next().toString());
    String groupname = group.getDisplayName();
    Add this group name to a list
    I do not have NWDS access at the moment so haven't checked it myself... you may try it out.
    Also check out the following threads on the same issue:
    Re: Get all Groups for current user
    Re: Portal User and Role info

  • How to use iCal Server with clients?

    Ok, so since I can't find this anywhere... How do I use iCal Server with other desktop clients? I've selected the user, enabled calendaring, the user can authenticate in web-based group calendars. But then I'm stuck.
    How do I give them their own calendar?
    In iCal, I go to Accounts and try and enter the info but it fails every time. I tried the dns name like so: "calendar.example.edu" but it generates an error. But the user can log in to the web calendar for groups. Where is the users individual calendar located?
    The help menu ignores that field as if it's not needed, but then it fails because the calendar doesn't know where the server is. The clients can't all be OD bound, so this has to work outside of Open Directory. According to Apple other CalDAV clients can connect too. How? Computers just don't "connect" on their own.
    Anyone know the answer?

    I was getting the same error when I tried to subscribe to a calendar using:
    Subscribe to: http://myserver.example.com:8008/
    principals/users/usershortname
    I found that if I added a trailing slash to the URL then it would work :
    Subscribe to: http://myserver.example.com:8008/
    principals/users/usershortname/
    (the way I found this was to navigate via the web browser to http://myserver.example.com:8008 then authenticate as a user, then navigating through to http://myserver.example.com:8008/principals/users/ where you can see all the user names all with a trailing slash after them)
    hope this helps
    Message was edited by: maximumjack

  • Replace Quotes, Connection Pooling, and Sun Web Server with MySQL, Oracle

    This is code I use to insert data into my MySQL and Oracle databases.
    I takes care of quotes and shows use of context, i.e. when you use Sun Web Server's
    ConnectionPooling. This code works. Feel free to reply if you have questions on how to set up connection pooling using Sun Web Server 6.1SP - it took quite a long time to learn and I couldn't find much information throughout the web, so I hope this helps...
    This is not a question and I am not looking for an answer, but please post comments or suggestions.
    dailysun
    This is in one class where I have a hashtable containing the
    column name / value pairs that I want to enter into my table.
    This class simply creates the SQL string from the values in the
    hashtable. It then passes that hashtable including the database
    name to a class which executes that sql statement (second code
    portion).
    /* Insert data into sf_parts. Create the column strings from
             * the provided hash table. Be sure to parse out hash elements which
             * are used for the createTemplate process
            StringBuffer values = new StringBuffer();
            StringBuffer fields = new StringBuffer();
            Enumeration keys = fieldHash.keys();
            while(keys.hasMoreElements()){
                Object currentKey = keys.nextElement();
                    String fieldValue = (String) fieldHash.get(currentKey);
                    if(values.length() >0){
                        values.append(",");
                    values.append("'"+fieldValue.replaceAll("'","''")+"'"); // Takes care of quotes and various other special characters!
                    if(fields.length() >0){
                        fields.append(",");
                    fields.append(currentKey);
            sql = "INSERT INTO myTable (" + fields.toString() + ") VALUES (" + values.toString() + ");";
            String insertResult = caq.getInsertDelete(sql,"myDatabaseName"); // your database name is defined in web.xml and sun-web.xml when you use Sun Web Server's Connection Pooling.
            returnValue += "<br><br><b>Rows inserted into table(myTable): </b>" + insertResult + "<br>\n";
            And, like I describe above, this method executes the sql statement.
         * Takes care of insert, update and delete requests.
         * Must have set both dbName as well as the sql String.
         * Will return number of rows affected as String.
         * @return String Number of rows affected
         * @exception SQLException
         * @exception Exception
        public String getInsertDelete() {
            checkData(); // this simply checks if the variables dbName and sql are not empty ;-)
            InitialContext initContext = null;
            int rv = 0;
            try{
                // Get connection from configured pool
                initContext = new InitialContext();
                source = (DataSource) initContext.lookup("java:comp/env/jdbc/" + dbName); // I have this set up in web.xml and sun-web.xml (I use Sun Web Server 6.1SP which does connection pooling for me)
                conn = source.getConnection();
                if(conn != null){
                    stmt = conn.createStatement();
                    rv = stmt.executeUpdate(sql);
            }catch (SQLException e){
                // do something
            }catch (Exception e){
                // do something
            }finally{
                try{
                    stmt.close();
                }catch(Exception e){
                    // do something
                try{
                    conn.close();
                }catch(Exception e){
                    // do something
                try{
                    initContext.close();
                }catch(Exception e){
                    // do something
            return rv+"";
        }  

    This is code I use to insert data into my MySQL and
    Oracle databases.
    I takes care of quotes and shows use of context, i.e.
    when you use Sun Web Server's
    ConnectionPooling. This code works. Feel free to
    reply if you have questions on how to set up
    connection pooling using Sun Web Server 6.1SP - it
    took quite a long time to learn and I couldn't find
    much information throughout the web, so I hope this
    helps...
    This is not a question and I am not looking for an
    answer, but please post comments or suggestions.Using prepared statements would mean that you wouldn't have to worry about quotes.
    You should be closing the result set.
    You are handling all fields as strings. That won't work with time fields and might not work for numeric fields.
    Presumably most of your variables are member variables. They should be local variables because that is the scope of the usage.
    You must do something with the exceptions.
    Hashtables although convienent mean that problems with usage can only be resolved at run time rather than compile time.

  • Connecting to a Windows 2003-Server with a MacBook

    Hi guys!
    I'm planning on buying a MacBook anytime soon. The main purpose of this investment is work at school. Therefore I have to ensure that everything works perfectly, otherwise I would have to buy a Windows notebook (in fact not the kind of decision I wanna make).
    We have a Windows 2003-Server and every other pupil can easily connect to this server with a Windows XP machine wirelessly. They can use printers, surf the Internet and use all the network harddrives (like F: for everyone; P: for projects were only certain groups have access to certain folders; and Z: your home-directory where only the very user has access).
    I need to make sure 2 things:
    a) When I connect to the network via Airport, does the system ask me for my account, so I can have (or have not) access to files I am entitled to?
    b) Does everything work fine under normal condition?
    I am aware that something could happen nobody could have forseen, but as the MacBook is a bigger investment than a € 700 windows crapbook, I would like to make sure that everything should work seemlessly.

    Thanks Jay, It now auto log's in but it's still not acting like a networked drive - when saving an attachment etc I still can't save direct to the server as it doesn't appear in the listing.. I need to save to desktop or doc's then manually drag it into the server... this is a pain...
    Any further ideas.

  • Can not connect to a remote SSH server with my mac

    Ok have tried 4 different applications, fetch , captain ftp, terminal, etc.
    I am trying and connect to a friends ssh server to upload some file logs. I have the correct login/password, have tried both protocol 1 and 2. Port 22 is correct. I keep getting the error message
    User logging error - captain ftp
    SFTP connection to ..... could not be opened becasue the connection to the SFTP server could not be established or was lost - Fetch
    sshexchangeidentification: Connection closed by remote host - Ternminal
    We have tested it using Telnet and other programs on a PC and all is well.
    When i try and connect he receives the message
    Refused connect from cpe-"ip address"(ip address)
    policy: HostKey/etc/ssh/sshhost_rsakey
    Do i have a setting somewhere i am missing.

    1st, is the server behind a home router? Has port 22 been "Port Forwarded" from the internet side to the server's side of the router?
    2nd, from a Terminal session use the command:
    ssh -v -v -v [email protected]
    The -v -v -v triplets will give you a wealth of ssh connection information. If you read through this carefully you may find the root cause of your problems (assuming the 1st step above doesn't yield results).
    Another thing to consider, is that ssh will not make a connection to an account that it does not consider to be reasonably secure. This means that the home directory of the account and specific key subdirectories must have proper ownership and permissions, or ssh will not connect. The specific ownership and permissions needed and the files and directories checked are spelled out in the ssh man page
    man ssh

  • Can't access msg server instance through admin console

    I am running
    Sun Java(tm) System Messaging Server 6.3-5.02 (built Oct 12 2007; 32bit)
    libimta.so 6.3-5.02 (built 17:15:31, Oct 12 2007; 32bit)
    SunOS cosmos.scranton.edu 5.10 Generic_118833-36 sun4u sparc SUNW,Sun-Fire-V245
    along with [20/Feb/2008:14:39:46 -0500] - Sun Java(TM) System Directory Server/5.2_Patch_4 B2005.230.0041 (64-bit) as the config DS
    The console webserver is
    [20/Feb/2008:14:42:00] info (26032): SunONE-WebServer-Enterprise/6.0SP3 B05/19/2004 02:48
    and
    # ./mpsadmconfig -version
    Administration Server Command Line (admconfig) version 5.2
    Copyright (c) 2001 Sun Microsystems, Inc.
    I can manage the DS through the Console just fine. If I try to access the msg server nothing happens.
    I see the following error in the ds admin-serv/logs/error log
    [21/Feb/2008:08:41:35] warning (26033): for host ::ffff:134.198.6.4 trying to GET /msg-config/tasks/operation/cgi_root, send-cgi reports: cannot find CGI program /opt/luminis/products/ds/bin/msg/admin/bin/cgi_root (No such file or directory)
    This cgi_root file is a pointer to /opt/luminis/products/mail/lib/cgimsg which does not exist
    It applied patch 115610-25 which (I'm under the impression) has the Admin console in it. It didn't fix it though
    So, does anyone know of a patch that just has the Admin Server / Console or does anyone running 32 bit Sparc Solaris 10 have a cgimsg file they can lend me? (I'll give it right back!)

    chris_krall1 wrote:
    I can't argue with that Shane. Well you can argue but there isn't anything I can do about it unfortunately. The decision to stop using the admin console was a 'big-picture' sort of deal.
    Well sort of - this didn't work when I first installed msg 6.2-4.04. The core patch 6.3-5.02 (120228-25) was applied through smpatch more or less inadvertently. Anyway I guess I will have to learn the command line interface. I really only wish to apply certs to the various services and turn on ssl
    I was able to request and apply the cert through msgcert, so I will try the next steps and see how it goesmsgcert was added to 6.3 for entirely this reason -- a replacement was required for the functionality lost due to the dropping of the admin console.
    Regards,
    Shane.

  • Lexmark Marknet unable to connect to Netware 5.1 server with IPX

    Hi,
    Im having some problems with Lexmark Marknet print servers. We are using
    Netware 5.1 servers with ipx print queues. The print servers are MarkNet
    X2000 series and MarkNet Pro3 Series from Lexmark. The print servers are
    being serviced by a Netware 5.1 server. (server a) I use the MarkVision
    Printer Utility to setup the printer server.
    We are having a migration project from Windows NT workstations to Windows
    XP workstations. We have made new print queues for the XP environment. We
    also want to use an other server (server b) for servicing the print
    servers. I have made al the new queues on the volume on the new server
    (server b). When I use the markvision to add the new server (server b) to
    the existing print server it doesnt connect. Could there be a problem in
    de IPX environment ?

    Any reason why you dont want to use NDPS with IP? Most print servers like
    lexmark will work with IP/LPR printing all you need to do is find out
    what the name is for the port. Some use raw others use printer etc..
    The print queues can easily be attached to the ndps printers within the
    NWADMIN (workstation client MUST have ndps installed prior to assigning
    queue).
    > Hi,
    >
    > Im having some problems with Lexmark Marknet print servers. We are
    using
    > Netware 5.1 servers with ipx print queues. The print servers are
    MarkNet
    > X2000 series and MarkNet Pro3 Series from Lexmark. The print servers are
    > being serviced by a Netware 5.1 server. (server a) I use the MarkVision
    > Printer Utility to setup the printer server.
    >
    > We are having a migration project from Windows NT workstations to
    Windows
    > XP workstations. We have made new print queues for the XP environment.
    We
    > also want to use an other server (server b) for servicing the print
    > servers. I have made al the new queues on the volume on the new server
    > (server b). When I use the markvision to add the new server (server b)
    to
    > the existing print server it doesnt connect. Could there be a problem
    in
    > de IPX environment ?
    >

  • Cant connect to RDP session hos server with RDP Windows2012 R2

    Hi,
    i have problem with connecting to my two RDP Sessionhost Servers with rdp. the login problem is occuring randomly but more often on one host.
    Environment, 2 session host servers, 1 broker server and 2 webbaccess servers. The webbaccess and broker server is loadbalanced with a kemp loadbalancing system.
    Error when connectiong with Rdp
    The connection cannot be completed because the remote computer that was reached is not the one you specified. This could be caused by an outdated entry in the DNS cache. Try using the IP address of the computer instead of the name. 
    The only way to get around is to connect with /admin or with ipadress
    i have found a kb with a solution to the problem for Windows 2008, but can´t find anything similarly for windows 2012R2

    Hi,
    Thank you for posting in Windows Server Forum.
    - Please try to flush the DNS cache with ipconfig /flushdns.
    - Check name lookup through DNS.
    - Check reverse DNS lookup on the IP address of the server. 
    - Examine the DNS records created for the servers / client machines on the DNS server.
    - Try disabling IP6 on both machines.
    For more information, you can refer below articles point 9.
    10 DNS Errors That Will Kill Your Network
    Hope it helps!
    Thanks.
    Dharmesh Solanki

  • Remote Desktop Connection  (RDC) iMac to PC server with fixed IP

    I have setup my first imac and as part of this process downloaded Remote Desktop Connection for macs so that I can log onto my server at work. Problem is when I attempt to connect to my remote pc the following message appears "Remote Desktop Connection cannot verify the identity of the computer that you want to connect to. Try connecting to the Windows-based computer, or contact our administrator"

    So, what if those don't help? I've had "Always connect, even if authentication fails" selected for quite a while. It was working fine. Yesterday I installed Office 2011 (and immediately installed SP1), and now it broke my ability to connect to a Windows Server 2008 VM that definitely worked yesterday before the Office upgrade.
    Anybody have a solution for this? It appears to be a bug in RDC 2.10. Thanks, Microsoft. Off to find a working RDP client for the Mac…

  • Can't Connect to SMP 3.0 server from Client

    Hello All , I am trying to connect SMP 3.0 server but i am getting error like Requesting Public Key from Server Communications error (14) Connection failed Ending transmission and i also checked with url as per my knowledge its  working fine because i am getting message like I am here . I am using below Url . https://Kunal-jit:8082/MobileNorthwind Message : I am here But i think might be SSL certificate issue because its running with red cross. Can you guide ?  how to solve ? Thanks & Regards,      Kunal Varaiya
    Tags edited by: Michael Appleby

    Hello Bill ,
    SMP Server logs for agentry is below :
    15:45:06 06/06/2014: Starting Agentry (64-bit Windows) 15:45:06 06/06/2014: Reading system ini file. 15:45:06 06/06/2014: Starting log file. 15:45:06 06/06/2014: Loading message groups. 15:45:06 06/06/2014: Starting threads. 15:45:06 06/06/2014:    1 initial threads.  Threads will auto-scale. 15:45:06 06/06/2014: Event: 0, 2, Loading the Agentry Runtime's public/private key for password exchanges. 15:45:07 06/06/2014: Event: 0, 2, Key pair loaded successfully. 15:45:07 06/06/2014: Starting Agentry: Agentry Server Agent v7.0.3.159 15:45:07 06/06/2014: Event: 0, 2, Agentry Startup 15:45:07 06/06/2014: Loading 0 front ends 15:45:07 06/06/2014: Loading front end from angelvine 15:45:07 06/06/2014: WebSockets Front End: loading configuration 15:45:07 06/06/2014: Event: 17, 14, WebSockets Front End v7.0.3.159 15:45:07 06/06/2014: Starting Agentry Server Agent 15:45:07 06/06/2014: Agentry Server Agent: Starting threads. 15:45:07 06/06/2014:    1 initial threads.  Threads will auto-scale. 15:45:07 06/06/2014: Agentry Server Agent: Adding messages. 15:45:07 06/06/2014: Event: 1, 4, Agentry Server Agent v7.0.3.159 15:45:07 06/06/2014: Loading agent from ag3.dll 15:45:07 06/06/2014: Starting Server 15:45:07 06/06/2014: Server: reading config file 15:45:08 06/06/2014: Event: 20, 150, Loading Development application definitions 15:45:14 06/06/2014: Initializing SQL-Northwind from ag3sqlbe.dll 15:45:14 06/06/2014: Northwind Back End: reading config information. 15:45:14 06/06/2014: Northwind: name set to 'SQL Back End'. 15:45:14 06/06/2014: SQL Back End Back End: reading query config information. 15:45:14 06/06/2014: SQL Back End Back End: initialized 15:45:14 06/06/2014: Event: 21, 4, Loaded SQL Back End (SQL v7.0.3.159) from ag3sqlbe.dll 15:45:14 06/06/2014: SQL Back End Back End: connecting 'sa' to database 'Northwind' 15:45:16 06/06/2014: Event: 21, 101, dB Connect 15:45:16 06/06/2014: SQL Back End Back End: started 15:45:16 06/06/2014: Event: 20, 152, Loading Development application definitions for default localization 15:45:16 06/06/2014: Event: 20, 153, Finished loading Development application definitions for default localization 15:45:16 06/06/2014: Event: 20, 151, Finished loading Development application definitions 15:45:16 06/06/2014: Server: Starting threads. 15:45:16 06/06/2014:    1 initial threads.  Threads will auto-scale. 15:45:16 06/06/2014: Event: 20, 4, Server v7.0.3.159 15:45:16 06/06/2014: Starting front ends 15:45:16 06/06/2014: WebSockets Front End: Opening WebSockets servlet for sub-URL /MobileNorthwind 15:45:16 06/06/2014: Event: 17, 10, WebSockets Front End v7.0.3.159 15:45:16 06/06/2014: Event: 0, 0, Old log files moved into C:\SAP_SMP\DevSMPServer\Server\log\agentry\rolled\2014-06-06-154506 15:45:16 06/06/2014: Event: 0, 23, Agentry startup is complete.
    So based on logs  it looks good . but when i try to run URL : https://Kunal-Jit:8081/MobileNorthwind I am getting SSL Connection error (I also followed steps provided by last post). ATE : Communication error 14
    Can you please guide ? How to solve ?
    Thanks & Regards, Kunal Varaiya

  • How to connect to Windows 2008 VPN server with certificate support

    Unfortunatelly if I select any Windows 2008 server compatible protocol (PPTP, L2TP) I cannot select PKI certificate, its only available for Cisco VPN. Yet my company has 1000 laptops and utilizing Windows 2008 Server for VPN (Cisco is too expensive and unnecessary because VPN is part of Windows Server). PKI certificate is required for connection security.
    Any plans to enable certificates for PPTP or L2TP in 2.1 firmware? Even better would be to add SSTP protocol with certificate support, because it takes only one standard TCP connection (https) per user (uses least possible NAT resources for heavy loaded NATed WiFi spots). Also in some public places https is the only option to connect as PPTP and L2TP are filtered.

    Hi Shahzad,
    >>how to connect sql server 2008 r2 sp2 with visual studio 2013 ultimate?
    Based on your issue, if you wan to connect the sql server 2008 r2 sp2 from VS2013 IDE. I suggest you can try the Ammar and darnold924's suggestion to check your issue.
    In addition, I suggest you can also refer the following steps to connect the sql server 2008 r2 sp2 with visual studio 2013 ultimate.
    Step1: I suggest you can go to VIEW->SQL Server Object Explorer->Right click SQL Server->Add SQL Server.
    Step2: After you connect the SQL Server 2008 r2 sp2 fine, I suggest you can go to VIEW->Server Explorer-> right click the Data Connection->Add Connection.
    And then you can create the connect string in the Add Connection dialog box.
    Hope it help you!
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Cannot connect to Oracle 10g XE Server from Client

    I have tried in vain to connect to the Server from a client installation using both browser and SQLPlus. Someone help me out pls...
    Glogo.

    I have read the SelfStudy many times but Sheila can't help me. I have installed 10g XE Client on a different pc and tried connecting as follows to no avail:
    FROM Run SQL Command line; I entered "conn glogo/*****@GServer:8080/apex" the report I always get is
    ORA-12170: TNS:Connect timeout occured
    From Internet Explorer; I entered "http://GServer/127.0.0.1:8080/apex" the report I get is internet explorer cannot display the webpage
    I ensured the listener is on by typing LSNRCTL STATUS on the command line of the system running the Server. The report indicates that the Listener is ready.
    I am still wondering what is wrong! I have also changed network setting from DHCP to static IP without results. What next friend(s)? Do you know?

Maybe you are looking for

  • Error while deploying app on Tomcat 6.0

    Hi All, As per https://blogs.oracle.com/dana/entry/how_to_deploy_a_11g_adf_applic_1 , I tried to deploy ADF web app on Tomcat 6.0, but I was blocked by following errors. Env: Jdev 11.1.1.6.0 Tomcat 6.0.36 Catalina.log 2013-4-16 10:29:58 oracle.adf.mb

  • Burning error 4280 and 4450

    Hello! So I've read all the helpful answers about this, and have tried every fix, but nothing works. Every discussion thread is super old and I wonder if there is anything more up-to-date? This registry fix... in this thread...last post.... MIGHT be

  • How to change color of list box highlighting in Acrobat 9 Pro?

    When you create a list box in Acrobat 9 Pro you select the default value.  That default value displays on the form in a highlighted color.  Does anyone know how to change the color of the highlight or ideally make it no color?  Thanks.

  • Screen resolution​s

    I am having trouble with need for speed hot pursuit 2010. I have hp 2009 and my screen resolutions are 800 x 600 and my graphics adapter is ATI Radeon HD 4200. I want to enhance my screen resolutions to 1600 x 900 but the game lags terribly how can I

  • Serial streams and control

    There is a good post here about reading the serial port stream and a good post here about parsing the data. I have been trying to incorporate these two methods for my application. I am working with a couple of NMEA devices a flux gate compass and a D