What is JCo in SAP connectivity

Hi all,
            i want to connect to SAP system from java program.Is it that i need a JCO jar file.
I am new to this.the code i got by searching in all the forums for sap connectivity is
import com.sap.mw.jco.JCO;
import com.sap.mw.jco.IRepository;
public class checkSAP{
     private JCO.Client client = null;
     private JCO.Function function = null;
     private IRepository repository = null;
                 try {
                    client = JCO.createClient(
                            connClient,     // SAP client
                            connUser,       // userid
                            connPW,         // password
                            connLang,       // language
                            connHost,       // host name
                            connHostSyst ); // System number
                    client.connect();
catch (JCO.Exception ex) {
                    System.out.println("Caught an exception: \n" + ex);
can anyone plz help me how to create a conncetion and retrive data
Regards
Chandra

Hi chandra,
pls find information on how to use jco here ... Re: Create a Planned order from JAVA JCO
regards, jens

Similar Messages

  • What will happen to sap console screen if connection to SAP is broken

    Hi All,
    I have a doubt.
    What will happen to sap RF console transactions run on Hand held guns. when the connection to SAP appliaction serevr is broken.
    Does SAP has any recovery method. (I have seen recovery method for two step confirmations) is there some other means of checking the connection and recovery of data .
    Will the RF queue management take care of it.
    Thanks in Advance.
    Regards,
    Sathanbabu Mathan Kumar

    hii
    If the connection to the SAP Application Server will be broken while in-between atransaction the data will be lost
    regards

  • JCO or SAP Connector Framework

    Hello
    I have seen in these links that JCO is deprecated:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/40/003c41325fa831e10000000a1550b0/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/89/8a185c148e4f6582560a8d809210b4/content.htm
    Developers are supposed to use SAP Connector Framework, but it seems that this is a Framework only useful from a Portal Application. What I want to do is to invoke RFCs in a R3 System from a webapp using struts. I have done this using JCO.
    Should I implement it using another solution?
    Thanks in advance

    Hi Marcos,
    You can, of course, use SAP JCO in simple Java Project by importing needed Jars.
    I provide you a sample of connection class with method that you can use for calling a function.
    You can use method "showFunctionParameters()" to test your connection...
    regards
    package echoFunction;
    import java.io.IOException;
    import java.util.Properties;
    import javax.swing.JOptionPane;
    import com.sap.mw.jco.IFunctionTemplate;
    import com.sap.mw.jco.JCO;
    public class JcoConnection {
         private final String REPO_NAME = "REPO_01";
         private JCO.Repository repository;
         private JCO.Function function;
         private JCO.Client connection;
         private JCO.ParameterList paramImport;
         private JCO.ParameterList paramExport;
         private JCO.ParameterList paramTables;
         public JcoConnection() {
              // constructor
         public void connect(String sapClient, String userId, String passWord,
                   String language, String server, String systemNumber) {
              connection = JCO.createClient(sapClient, userId, passWord, language,
                        server, systemNumber);
              connection.connect();
              repository = new JCO.Repository(REPO_NAME, connection);
         public void connect(Properties properties) {
              connection = JCO.createClient(properties);
              connection.connect();
              repository = new JCO.Repository(REPO_NAME, connection);
         public void disConnect() {
              connection.disconnect();
         public void useFunction(String functionName) {
              IFunctionTemplate ift = repository.getFunctionTemplate(functionName
                        .toUpperCase());
              function = new JCO.Function(ift);
              paramImport = function.getImportParameterList();
              paramExport = function.getExportParameterList();
              paramTables = function.getTableParameterList();
         public void execute() throws JCO.AbapException {
              connection.execute(function);
         public void setInputValue(String paramName, String valueInput) {
              paramImport.setValue(valueInput, paramName);
         public String toString() {
              return connection.getAttributes().toString();
         public static void main(String[] args) {
              JcoConnection sapConn = new JcoConnection();
              try {
                   sapConn.connect(Utilities.loadPropertyFile("logon.properties"));
                   sapConn.useFunction("STFC_CONNECTION");
                   sapConn.setInputValue("REQUTEXT", "Echo text");
                   sapConn.execute();
              } catch (IOException ex) {
                   ex.printStackTrace();
              } catch (Exception ex) {
                   ex.printStackTrace();
              sapConn.disConnect();
              JOptionPane.showMessageDialog(null, sapConn.showFunctionParameters());
         public String showFunctionParameters() {
              String paramText = "";
              paramText = "ECHOTEXT: t";
              paramText += function.getExportParameterList().getString("ECHOTEXT")
                        + "n";
              paramText += "RESPTEXT: t";
              paramText += function.getExportParameterList().getString("RESPTEXT");
              return paramText;
    package echoFunction;
    import java.io.FileInputStream;
    import java.io.IOException;
    import java.util.Properties;
    public class Utilities {
         public static Properties loadPropertyFile(String filePath)
                   throws IOException {
              Properties properties = new Properties();
              properties.load(new FileInputStream(filePath));
              return properties;

  • SAP Connectivity in Netweaver developer studio...

    Hi everyone,
    I am trying to use the feature of "SAP connectivity" in the NDS.
    I created a proxy for a simple RFC.
    What I am trying to do is to call the RFC from a Java code.
    Here is what I wrote :
              try {
              Z_Rfc_Ws_Test2_Input input = new Z_Rfc_Ws_Test2_Input();
              input.setInput("Salut la compagnie");
              SAPProxy_PortType proxy = new SAPProxy_PortType();
              Z_Rfc_Ws_Test2_Output output = proxy.z_Rfc_Ws_Test2(input);
              } catch (Exception e) {
                   e.printStackTrace();
    I get an exception because I didn't specify the username and its credentials. Of course, I have to specify the server and the client number.
    Here is the exception :
    com.sap.aii.proxy.framework.core.BaseProxyException: JCoClient connection missing
         at com.sap.aii.proxy.framework.core.AbstractProxy.send$(AbstractProxy.java:150)
         at com.proxy.SAPProxy_PortType.z_Rfc_Ws_Test2(SAPProxy_PortType.java:16)
         at Client.main(Client.java:45)
    Can someone help with this issue ?
    Thanks in advance.

    Hi David,
             In your below code the JCO configurations is missing I mean ur JCO client. Try some thing like this which is self explanatory.
    (ur package name here if u have any)
    import com.sap.mw.jco.*;
    public class Jco {
         public static void main(String[] args) {
              // Necessary fields for Connection
              JCO.Client myConnection = null;
              JCO.Repository myRepository = null;
              JCO.Function myFunction = null;
              JCO.Field myHostName = null;
              // Establishing a connection
              try{
                   // Defining the connection parameters
                   myConnection = JCO.createClient("Client","User","Password","Lang","ServerIP","Sys Number");
                   myConnection.connect();
                   // Creating a repository
                   myRepository = new JCO.Repository(attribute,myConnection);
              }catch(Exception e){
                   System.out.println(e.toString());
                   System.exit(1);
                        // Finally closing the connection
              finally{
                   myConnection.disconnect();

  • SAP Connections

    I have been having some serious problems trying to get a connection to SAP from the SAPNetweaver.  I have done some research, but nothing solved my problem.  There are a lot of different notes out there, but no simple explanation on how to get it to work. 
    I would like this Message to be the "End All" for questions regarding SAP connections and I hope all of you can help.  "No Links", man am I tired of trying to follow the secondary links.  Just full explanations.  No links to the SAP Developers Manual, every description was just short of having enough information.
    PLEASE HELP.
    Here is the scenario:
    I have applications that require connections to SAP BAPIs.  I want the people that are accessing these applications to run the BAPIs with there own credentials. I have the SAP Netweaver installed, but am using an older SAP EIS.  I was using Tomcat with the JCO classes.  I had to create a different connection for each call, but was able to pass the users credentials from a login page that I created.  Now I am porting the application to Netweaver.
    Questions:
    1) What is SAPs preferred connection to BAPIs if I want to pass the credentials of the user to run the BAPIs?
    JCO, JRA, Other?

    sapjcorfc.dll already loaded in another classloader
    I don't know if this is 100% accurate statement, but here it is anyway.
    The error above came from me including the JCO.jar within my application as an "External JAR".  When I referenced it only, then I was able to use the JCO classes as I did when I was using TOMCAT.
    To add to the post above, I ust wanted to give a step by step on adding the reference to JCO.jar to your application so that you can program using it, but not having it be added to your application JAR.
    Prerequisites:
    1)  Web Module Created
    Steps:
    1)  Right click on Web Module and select "Properties"
    2)  Within the "Java Build Path" selection on the left side, Choose the "Library" tab.
    3)  Click the "Add Variable" button.
    4)  Click the "WD_RUNTIME" folder once and then click on the "Extend" button.
    5)  Expand the following directories:
    ->com.sap.mw.jco
    ->lib
    6) Select the sapjco.jar and click on the "OK" button.

  • What are the Non SAP data sources supported for Analysis workbooks?

    AO 1.4 SP6
    BO 4.1 SP2
    What are the Non SAP data sources supported for Analysis workbooks?
    Thanks.

    HANA is a data source (which could contain non-SAP data)
    For other Excel front-ends that may connect to "non-SAP" data look at Live Office or Power BI by Microsoft - see Excel and Power BI connectivity to SAP BusinessObjects Universes | Power BI

  • Trying to evaluate VBScript to SAP connection

    Hello,
       I'm in need of some help. I have no experience with SAP, I'm currently working with VBScript. The company I work for uses SAP and they deployed a module to track parts being received. Unfortunately, the module was designed to receive one part at a time. Some of the locations will be receiving dozens of parts. I have been tasked with finding a way to provide a web page (vbscript) where the user can receive the parts in a batch. In order to accomplish this I need to be able to get data from SAP and then write data back to SAP.
    Is it possible to not only read, but to write data back to SAP using VBScript? I want to implement a good solution and I need to implement a solution that the SAP administrators will be ok with.
    I really could use some help finding a good starting point to help me understand what I need. If I can't do what I need in VBScript then I need to find a third-party tool that will let me interface with SAP.
    Thank you,
    Brad

    Brad,
    VBScript can read and write SAP data.  Without knowing the details of exactly
    what you are trying to do I'll post a little code that you may find useful:
    Dim fc, sapConn, conn
    Set fc = CreateObject("SAP.Functions") ' function control
    Set sapConn = CreateObject("SAP.LogonControl.1") ' sap connection object
    Set conn = sapConn.NewConnection() ' sap connection object
    conn.System = "yoursystem" ' test, prod, development, whatever
    conn.SystemNumber = "99" ' numeric
    conn.ApplicationServer = "your.application.server" ' the machine name or ip
    conn.MessageServer = "your.message.server" ' the machine name or ip
    conn.client = 999 ' the client number
    conn.user = "user_name" ' your rfc enabled user name
    conn.Password = "password" ' the above named account password
    Dim retcd
    retcd = conn.Logon(0, True) ' establish the connection
    If (retcd = False) Then
        WScript.Echo "SAP Logon Failed."
    Else
        ' do something useful
    end if
    These guys have some pretty useful coding examples too:
    <a href="http://sapass.metro.client.jp/Sap_Active_X/index.htm">Useful Examples for vbscript and sap activex</a>
    Please note, most of the examples on the above web site use VBA and not
    vbscript.  So, leave out the As ... part of every Dim statement for pure vbscript.
    Here is an SAP URL on the subject you may find useful:
    <a href="http://help.sap.com/saphelp_46c/helpdata/en/39/7e11e0ac6011d189c60000e829fbbd/frameset.htm">SAP RFC BAPI Interfaces</a>
    Good luck!
    Ray

  • SAP Connectivity slow - Terminal Services

    Dear ALL,
    we have two Locations (A & B) & Main Server is placed at Location (A) and users from Location (B) connect through terminal Server (IBM Server) there are approximatly 6 users who connect at a time to terminal server, so what should be the RAM size of the Terminal Server.
    As of now we have given 2GB RAM, But the performance is very Poor
    Applications:
    SAP 2007B & 4 ADD-ons
    Thanks in  Advance

    Hi Pankaj,
    Check the following link
    Sizing a Terminal Services server for Business One
    Re: SAP BUSINESS ONE IS SLOW
    Re: Slow SAP connection
    SAP Business One Best-Practice System Setup and Sizing
    *Close the thread if issue solved.
    Regards
    Jambulingam.P

  • SAP Connection with a Website using HTTPS

    SAP Gurus,
    We are on SAP 4.7.  Requesting you to revert whether it is possible to connect SAP 4.7 with HTTPS (Secured) thru some BAPI or BADI.
    Details:
    1. The Business Process expected to be set is for Vendor Transactions.
    2. That is, the Vendor liability document is expected to be posted from the data that would flow thru Internet HTTPS.
    3. The request would originate from a website (that is NOT SAP).
    4. It would have the Vendor Party credentials.
    5. The Line Item Data would come to SAP thru HTTPS and it is expected that SAP would accept the request and process it.
    6. After successful process of the file, the system would generate Accounting Document.
    7. This Accounting Document is expected to be sent back to the originator website, using the same HTTPS connection.
    8. The entire leg is expected to be completed in 180 seconds.
    Qs:
    a. Is it possible to achieve this with using some BAPI or BADI?
    b. Whether it is possible to connect to SAP with some RFC (RFC may not be the right technical word, please recommend what else) using the Secured connection, that is HTTPS?
    Many Thanks

    Hi,
    Thanks for ur reply.
    I am facing the following problem.(I am using Https protocol)
    1.A runtime exception is thrown at line no 5. This is the main problem i am facing and as i am not able to establish the connection with the server, i was able to proceeed further.
    2. I need help for setting the content type(Remember i am using Https)
    3. As u said at server side file has to be decompressed but that is not under my scope so it is not a problem for me.
    4. once connection is established, I need to create a byte stream and write to destination and then i have to check the response sent by the server.
    I am looking for an idea how to establish the connection with the server. any references let me know.
    Code written by me:
    URL url = new URL("https://www.sun.com");
    URLConnection conn = url.openConnection();
    conn.setRequestProperty("content-type","Application/x-zip-compressed"); // I dont think this is correct way of setting the header var
    conn.connect(); // an exception is raised here
    conn.setDoOutput(true);
    OutputStream ostream = conn.getOutputStream();
    Message was edited by:
    vbr3650

  • JCO.Client not connected in repository call (EP7)

    Hi guys,
    please can someone help me with this error msg?
    I don’t understand why we getting this error msg, for some users they can run reports and others get this msg.
    500 Internal Server Error
    BEx Web Application
    Failed to process request. Please contact your system administrator.
    [Hide]
    Error Summary
    While processing the current request, an exception occured which could not be handled by the application or the framework.
    If the information contained on this page doesn't help you to find and correct the cause of the problem, please contact your system administrator.
    To facilitate analysis of the problem, keep a copy of this error page. Hint: Most browsers allow to select all content, copy it and then paste it into an empty document (e.g. email or simple text file).
    Root Cause
    The initial exception that caused the request to fail, was: 
    JCO.Client not connected in repository call
    com.sap.mw.jco.JCO$Exception: (102) JCO_ERROR_COMMUNICATION: JCO.Client not connected in repository call
    at com.sap.mw.jco.JCO$Repository.getVersion(JCO.java:20290)
    at com.sap.mw.jco.JCO$Repository.queryFunctionInterface(JCO.java:20630)
    at com.sap.mw.jco.JCO$Repository.queryFunctionInterface(JCO.java:20351)
    at com.sap.mw.jco.JCO$Repository.getFunctionInterface(JCO.java:20465)
    at com.sap.mw.jco.JCO$BasicRepository.getFunctionTemplate(JCO.java:19533)
    Details: Full Exception Chain
    System Environment
    Server
    BI Java     Release: 7 - Patch level: 0000000009 - Description: BI Web Applications Java - Additional info:  - Production mode: true
    BI ABAP     unknown
    Java Virtual Machine     Java HotSpot(TM) 64-Bit Server VM - Sun Microsystems Inc. - 1.4.2_12-b03
    Operating System     Linux - ia64 - 2.6.9-22.0.1.EL
    Full Exception Chain
    Log ID     0012799E22D40054000001AF00006B9400042A20B9AF8861
    com.sap.ip.bi.base.exception.BIBaseRuntimeException: JCo exception thrown when connecting to system "SAP_BW"
         at com.sap.ip.bi.base.application.service.rfcproxy.impl.jco640.Jco640Proxy.createFunction(Jco640Proxy.java:87)
         at com.sap.ip.bi.base.application.service.impl.application.ApplicationSettingsService.initializeProperties(ApplicationSettingsService.java:130)
         at com.sap.ip.bi.base.application.service.impl.application.ApplicationSettingsService.initialization(ApplicationSettingsService.java:124)
         at com.sap.ip.bi.base.application.impl.Application.createService(Application.java:477)
         at com.sap.ip.bi.base.application.impl.Application.getProperty(Application.java:624)
         at com.sap.ip.bi.base.application.impl.Application.initialization(Application.java:229)
         at com.sap.ip.bi.base.application.ApplicationFactory.createApplication(ApplicationFactory.java:132)
         at com.sap.ip.bi.base.application.ApplicationFactory.createApplication(ApplicationFactory.java:63)
         at com.sap.ip.bi.webapplications.runtime.impl.Page.constructPage(Page.java:729)
         at com.sap.ip.bi.webapplications.runtime.impl.Page.<init>(Page.java:647)
         at com.sap.ip.bi.webapplications.runtime.controller.impl.Controller.createPage(Controller.java:504)
         at com.sap.ip.bi.webapplications.runtime.controller.impl.Controller.doProcessRequest(Controller.java:911)
         at com.sap.ip.bi.webapplications.runtime.controller.impl.Controller.processRequest(Controller.java:851)
         at com.sap.ip.bi.webapplications.runtime.jsp.portal.services.BIRuntimeService.handleRequest(BIRuntimeService.java:380)
         at com.sap.ip.bi.webapplications.runtime.jsp.portal.components.LauncherComponent.doContent(LauncherComponent.java:21)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
         at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
         at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:646)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
         at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
         at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)
         at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:522)
    Many thanks in advance
    Jo-lize

    Hi, you can fix the problem ?
    i have same problem in BI7 and EP7, when launch Template Installer.
    <b>Create Destination in ABAP Import not successful Element 'SAPConfigLib.DES.Unclassified.createRfcDestination':!BrokerImport.import_of_element_failed!!BrokerImport.Fehler!com.sap.tc.lm.ctc.cul.cpi.exceptions.CPIBaseException: <Localization failed: ResourceBundle='com.sap.tc.lm.ctc.cul.cpi.CPIResourceBundle', ID='com.sap.tc.lm.ctc.cul.cpi.BaseException_BASE_EXCEPTION', Arguments: []> : Can't find resource for bundle java.util.PropertyResourceBundle, key com.sap.tc.lm.ctc.cul.cpi.BaseException_BASE_EXCEPTION:com.sap.tc.lm.ctc.provider.javaServiceProvider.JavaServiceWriter.writeElement!BrokerImport.LINE!157-:com.sap.tc.lm.ctc.cul.broker.BrokerImport.importElement.86
    -:com.sap.tc.lm.ctc.cul.broker.BrokerImport.importElement.128
    -:com.sap.tc.lm.ctc.cul.broker.BrokerImport.importElement.128
    -:com.sap.tc.lm.ctc.cul.serviceimpl.importservice.CULConfigurationImport.importConfiguration.96
    -:com.sap.tc.lm.ctc.ccl.templateinstaller.StepExecuter.run.41
    Element 'SAPConfigLib.DES.Unclassified.createRfcDestination':Error during executing Java Reflection:JCO.Client not connected in repository call
    </b>

  • Re: what is difference between sap locking and database locking

    hi,
        what is difference between sap locking and database locking. Iam locked the table mara by using lock objects.
    But iam unable to unlock the mara table. I give u the coding. Please check it.
    REPORT zlock .
    CALL FUNCTION 'ENQUEUE_EZTEST3'
    EXPORTING
       MODE_MARA            = 'S'
       MANDT                = SY-MANDT
       MATNR                = 'SOU-1'.
    call transaction 'MM02'.
    CALL FUNCTION 'DEQUEUE_EZTEST3'
         EXPORTING
              mode_mara = 'E'
              mandt     = sy-mandt
              matnr     = 'SOU-1'.
    IF sy-subrc = 0.
      WRITE: 'IT IS unlocked'.
    ENDIF.

    Hi Paluri
    Here is the difference between SAP locks and Database locks, i will try to find the solution to your code.
    Regards
    Ashish
    Database Locks: The database system automatically sets database locks when it receives change statements (INSERT, UPDATE, MODIFY, DELETE) from a program. Database locks are physical locks on the database entries affected by these statements. You can only set a lock for an existing database entry, since the lock mechanism uses a lock flag in the entry. These flags are automatically deleted in each database commit. This means that database locks can never be set for longer than a single database LUW; in other words, a single dialog step in an R/3 application program.
    Physical locks in the database system are therefore insufficient for the requirements of an R/3 transaction. Locks in the R/3 System must remain set for the duration of a whole SAP LUW, that is, over several dialog steps. They must also be capable of being handled by different work processes and even different application servers. Consequently, each lock must apply on all servers in that R/3 System.
    SAP Locks:
    To complement the SAP LUW concept, in which bundled database changes are made in a single database LUW, the R/3 System also contains a lock mechanism, fully independent of database locks, that allows you to set a lock that spans several dialog steps. These locks are known as SAP locks.
    The SAP lock concept is based on lock objects. Lock objects allow you to set an SAP lock for an entire application object. An application object consists of one or more entries in a database table, or entries from more than one database table that are linked using foreign key relationships.
    Before you can set an SAP lock in an ABAP program, you must first create a lock object in the ABAP Dictionary.

  • What is difference between SAP R3 And SAP IS Mills Product

    HI Friends
    What is difference between SAP R3 And SAP IS Mills Product
    What are the futures are availables in IS MIlls
    Regards

    Hi,
    SAP R/3 is the central enterprise version. It is not specifically designed for any inducstry sectors and it can cater many of the industry types.
    Is is developed for specific industries an for SMB's (small and medium business). It will have components specifically for the industry.
    The SAP Mill Products component adds sector-specific functionality to an ERP system to satisfy the complex requirements of mill industries (e.g. metal, wood, paper, textiles, construction materials, and cable sectors).
    These industry segments differ from others primarily in that the materials used have a large number of characteristics and variants. The materials in the segments listed above are also predominantly area-based (e.g. paper, textiles, plastic film) or length-based (e.g. cables, piping). Account must be taken of these material characteristics throughout the entire supply chain.
    To cater for the particularities of these industry segments, SAP Mill Products features processes and functions that cover the entire supply-chain cycle – from product design and configuration, through planning, order processing, capacity planning and production, to final delivery. Additional functions are available in costing and inventory management. SAP Mill Products are also integrated into Quality Management, Financial Accounting, and Controlling.
    Prase

  • Can some one please tell me what leads i need to connect my mac book pro to my tv

    Hi i have a mac book pro can someone tell me what leads i need to connect it to my tv
    thanks scott

    If your TV has HDMI, and if your MBP is compatible with this adapter, I highly recommend:
    http://store.apple.com/us/product/H1824ZM/A/Moshi_Mini_DisplayPort_to_HDMI_Adapt er
    It sends the audio out through the mini DisplayPort into the HDMI cable, but only if your computer has that capability.  On that page, scroll down and look for a comment titled "How you know if it is supported w/o guessing."

  • What do i need to connect my mac book pro to the tv with the thunderbolt on the mac to hdmi? I have the newest macbook pro. I'm wanting to have the best picture I can get from my 1080p tv. thanks

    what do i need to connect my mac book pro to the tv with the mac's thunderbolt port to hdmi? I have the newest macbook pro. I'm wanting to have the best picture I can get from my 1080p tv. thanks

    Thanks Community! I solved the problem. In fact it was not a problem but lack of understanding. These guys at Apple are way ahead in thir thinking. I will try to explain as short as I can.
    In Lion, ihe Prefferences/Display show only two choices: 6-7 steps of resolution and some color tab. No two screens, no two display to overlap, nothing for us to do. "That was the problem"! Everything is automatic.
    When I connected the HDMI cable to the Miniport into a T-bolt slot, the TV screen showed the "spiral galaxy" how Zyriab is calling it. In fact he gave me the best clue. That shows the connection is good. But where is the Mac Book image?
    You have to drag it to the right out of the Mac Book display area, and "voila!" it will continue on the TV screen. The same with the mouse pointer, push it out ofthe Mac Book display area and you see it on the TV sreen. Good image, you can keep the max resolution, etc. The sound is still on the Book's speakers. I have to figure that out.
    Thank everybody, especialy Zyriab, ne was the closest.
    High regards to everybody

  • What do I need to connect my apple cinema display to new macbook pro

    what do I need to connect my apple cinema display to new macbook pro?

    2011 macbook pro with TB ->  apple 27" Cinima Display with mini-displayport 
    Does this work natively?  Is there an adapter or workaround? 
    No, not until or if an adaptor becomes available.  See this thread.
    Apple display and Thunderbolt compatibility

Maybe you are looking for

  • How scheduling the data refresh for a published Excel workbook - SharePoint 2013

    Hi, I've implemented an Excel workbook that connects to a SSAS Tabular data source and I've published it on SharePoint. Now, how can I implement a scheduled data refresh if it is possible? Thanks

  • Write XML in a context field

    Good morning forum Have to implement the following solution. In a Web Dynpro component I am consuming a web service, and reading an XML, it is now functioning properly. But after the XML data is loaded into context, I must record all xml content in a

  • Error REP-0501 connecting to DB

    Hi to all, I have installed Oracle Devsuite 10.1.2.0.2. In Reports Builder, when I try to establish a connection with DB, this error are displayed: REP-0501: Unable to connect to the specified database ORA-12637: Packet receive failed If I try to con

  • What does a (-54) code mean and how do i fix it?

    when ever I try to put new music on my iphone5 or 4s it comes up with a code -54. It will download the music on my phone either way but it will put the song under different artist or change the album photo.

  • Account Annotations in Planning Dataform

    Hi All, I've created a Dataform, but when i wanted to create Account Annotations, I can t see the option to enable account annotations in the data form . My Data form has Account in row , Period in Column and entity , scenario and version in page . A