Error trying making a connection through TCP/IP

Hi, i have build a measurmentsystem with Schneider Elektric devices. All kinds of elektrical data are measured by a powermeter PM710. This device is coupled with the Ethernet gateway EGX100 with RS485. This gateway at his turn is coupled with the internal network. When i am trying to get the values out of this gateway i get an error 63: Possible reason(s):
LabVIEW:  Serial port receive buffer overflow.
=========================
LabVIEW:  The network connection was refused by the server. For TCP/IP, make sure the server is running and listening on the port you are trying to use. Firewalls can also cause a server to refuse a connection. For VI Server, make sure you have enabled VI Server from Tools>>Options>>VI Server:Configuration.
How can i fix this problem? I have added a jpeg from my program
Attachments:
TCP-IP.jpg ‏87 KB

Hi, this didn't have any result. I've added som jpegs from my settings for tcp/ip maybe there is something wrong with that? I'm not that familiar with this so.
Attachments:
configuration.jpg ‏150 KB
modbuscommand.jpg ‏70 KB
machine access.jpg ‏147 KB

Similar Messages

  • Error message -1073807298 when connecting through TCP

    I get the error code -1073807298 when I try to connect to a TCP raw socket VISA resource, the weirdest thing is that I actually can read the result of the queries I make. I fixed the problem reading one byte at a time but this is very inefficient (it uses a while loop) and I still get warnings, so I'd like to know if there is a way to fix this or if there is an equivalent of the "Serial Settings: Number of Bytes at Serial Port" for VISA TCP connections....
    This is the WARNING that I get when I read one byte at a time:
    Warning 1073676294 occurred at VISA Read in LV.vi
    Possible reason(s):
    VISA:  (Hex 0x3FFF0006) The number of bytes transferred is equal to the requested input count. More data might be available.
    This is the ERROR  that I get when I set the byte count to 1024:
    Error -1073807298 occurred at VISA Read in LV.vi
    Possible reason(s):
    VISA:  (Hex 0xBFFF003E) Could not perform operation because of I/O error.
    I enclosed the VI for your review,
    Thanx in advance for your help,
    Attachments:
    LV.vi ‏22 KB

    Hi,
    While there is no equivalent of the "Serial Settings: Number of Bytes at Serial Port" for VISA TCP connections, one strategy is to make the first byte in your TCP string to contain the number of bytes to follow it.  That way you can read that byte then know what to set the byte count to.
    Regards,
    John E.
    Applications Engineering
    National Instruments

  • Error trying to establish connection to the EIS

    Hi,
    I created a simple Drag&Relate structure, With one InfoObjects as source and a R/3 transaction as target.
    it works fine but only with my user !!!
    When other user wants to use this functionality appear this message:
    <i>Error trying to execute a query statement against MetaMatrix: Error trying to establish connection to the EIS : Connection Failed: Nested Exception. Failed to get connection. Please contact your admin.</i>
    I verified that this user had permisions in BO and Iviews...
    I assigned him super_admin role, but it  isn't working
    what do I forget ?
    Regards.

    Hi All,
    Which method are you using for the backend connection, SAPLOGONTICKET or UIDPW?
    If it is SAPLOGONTICKET then the each user that you are using in the Portal runtime should be defined (same user name) in the backend that he access. If it is UIDPW then you have to map every Portal user which accesses the backend system to a user in the backend, via the Portal user mapping.
    Best Regards,
    Raanan

  • Error while  making relational drill through connection

    <p>Hi All,</p><p> </p><p>This Problem is related to Web Analysis report on System 9,for aceratin report I need to fetch data from RDBMS. So I tried tocreate a connection for relational drill through, but it threwerror saying connection failed.The exact message was:</p><p> </p><p>"Geeting Connection Failed",and got Exception Meassge"oracle.jdbc.driver.OracleDriver"</p><p> </p><p>Could you people suggest what cause is there behind that.</p><p>Here I would like to mention that same RDMBS I can access onworkspace through BQY.</p><p> </p><p>I'll be very thankful if somebody could help me out of this.</p><p> </p><p>Chandra</p>

    I got this error but I was working with SQL Server. The way to fix this was getting the latest JDBC drivers for SQL Server (or in your case Oracle) and adding them to the classpath.You will have to add it the the application server classpath as well since adding to the classpath on the server isnt enough.Hope this helps

  • Error while testing Driver connection Through The EnterPrise Manager

    Hi -
    I am using OAS 10.1.3v for my application.I am using both SQL Server 2000 JDBC driver and Oracle JDBC driver for my application. I am encountering problems due to SQL Server 2000 JDBC driver.
    I tried testing for connectivity for SQL driver through the enterprise manager.(on the em console, inside home/administration/JDBC resources ). I am getting the following error :
    Unable to create : com.microsoft.jdbc.sqlserver.SQLServerDriver
    Missing class: com.microsoft.jdbc.sqlserver.SQLServerDriver Dependent class: oracle.oc4j.sql.config.DataSourceConfigUtils Loader: oc4j:10.1.3 Code-Source: /E:/product/10.1.3.1/OracleAS_1/j2ee/home/lib/oc4j-internal.jar Configuration: in META-INF/boot.xml in E:\product\10.1.3.1\OracleAS_1\j2ee\home\oc4j.jar This load was initiated at ascontrol.web.ascontrol:0.0.0 using the Class.forName() method. The missing class is available from the following locations: 1. Code-Source: /E:/product/10.1.3.1/OracleAS_1/j2ee/home/applib/mssqlserver.jar (from in /E:/product/10.1.3.1/OracleAS_1/j2ee/home/config/server.xml) This code-source is available in loader global.libraries:1.0. This shared-library can be imported by the "ascontrol" application
    I tried adding mssqlserver.jar to the shared library.Still, i got the same error.
    The connection which i am trying to test, has the following entry in the data-sources.xml :
    <connection-pool name="BPELPM_CONNECTION_POOL1" max-connections="30">
         <connection-factory factory-class="com.microsoft.jdbc.sqlserver.SQLServerDriver" user="sa" password="" url="jdbc:microsoft:sqlserver://localhost:1433;databaseName=WE411;selectMethod=cursor" commit-record-table-name=""/>
         </connection-pool>
         <managed-data-source connection-pool-name="BPELPM_CONNECTION_POOL1" jndi-name="jdbc/ExpressJDBCDataSource" name="ExpressJDBCDataSource"/>
    I also tried with native-data-source option in the data-source.xml without a connection pool like -
    <native-data-source
    name="ExpressJDBCDataSource"
    jndi-name="jdbc/ExpressJDBCDataSource"
    description="Native DataSource"
    data-source-class="com.microsoft.jdbc.sqlserver.SQLServerDataSource"
    user="sa"
    password=""
    url="jdbc:microsoft:sqlserver://localhost:1433;databaseName=WE411 ;selectMethod=cursor ">
    </native-data-source>
    I am getting the same error as above.
    Has anybody encountered a similiar problem ?
    A related post that was posted by me is :
    SQL Server Driver Problem in Oracle Application Server 10.1.3 data-sources

    thank you very much for your help. for update server's full name, may I put the mapping values  into host file in the format of  <ip address> <hostname.domain name> <hostname>, do you think it is OK?
    in the second blog you suggest there is something about Server port(please refer to the following):
    in the window machine, there should be an entry like sapms<SAP System ID> , can you please give me a full example:
    let's say my system ID is EC1,  so it would be sapmsEC1  8000/tcp, right ?
    Here you have to enter the port of your application server. By default this is 80<SAP System ID>. But your basis administrator can modify this setting, thatu2019s why you should check it in the transaction SMICM (Goto -> Parameters -> Display). For example the IBSolution Development System Erinome the port is 8000.
    You can also have a look into your services file on your machine. If you have a windows machine then the file exists e.g. here C:\WINDOWS\system32\drivers\etc\services
    In this file you should search a entry like sapms<SAP System ID>.
    Edited by: jingying Sony on May 24, 2010 4:41 PM

  • Error message -1073807298 when connecting through USB

    Hi,
     I am trying to retrive data from an instrument through serial port as well as USB,
     My vi works smoothly while connecting through serial port.
     But when i try to connect through USB Error code-1073807298
     is coming. This error comes when visa try to write to the instrument.
     From visa configure serial port.vi  no error is coming.
     Can someone suggest a method to solve this problem... 

    I get exactly the same error code with a TCP raw socket connection, the weirdest thing is that I actually can read the result of the query. I fixed the problem reading one byte at a time but this is very inefficient (it uses a while loop) and I still get warnings, so I'd like to know if there is a way to fix this or if there is an equivalent of the "Serial Settings: Number of Bytes at Serial Port" for VISA TCP connections....
    This is the WARNING that I get when I read one byte at a time:
    Warning 1073676294 occurred at VISA Read in LV.vi
    Possible reason(s):
    VISA:  (Hex 0x3FFF0006) The number of bytes transferred is equal to the requested input count. More data might be available.
    This is the ERROR  that I get when I set the byte count to 1024:
    Error -1073807298 occurred at VISA Read in LV.vi
    Possible reason(s):
    VISA:  (Hex 0xBFFF003E) Could not perform operation because of I/O error.
    I enclosed the VI for your review,
    Thanx in advance for your help,
    Attachments:
    LV.vi ‏22 KB

  • Modbus errors when making object connection

    I have a telemetry system that currently has 37 RTU's and uses Lookout 6.0.2. We are adding an additional site ( pump station with controls) and I am experiencing a probleml when making the "connection" between a control object (00001) and a switch. With the RTU up and running without the switch connection, modbus statistics show valid response frames at 100% with no errors. Input states can be changed and the software works properly and dispays the correct state. AS SOON as I make the connection between the control object and the switch, modbus statistics show "no response" errors immediately and the software X's out all of the dispayed objects for that RTU. If I change the switch position, the RTU responds and turns on or off the corresponding output even though the software says the RTU in not responding. I have tried creating a new modbus driver and making a simple connection between a control object and a switch with the same result. If I re-address my RTU to a lower number that is not in use, such as 13, everything works normally. I do not have the luxury of just going to a lower number as the system is currently undergoing expansion and will continue to grow beyond the mark of 40 units in the field. Anybody seen this before?
    Thanks
    Brad Adams
    Service Manager
    CommTech
    441 Donelson Pike, Suite 420
    Nashville, TN  37214
    Phone: 615-889-4756
    Fax:      615-391-0300
    Cell:      615-477-8975
    [email protected]
    "once you eliminate all other possibilities, what's left, however improbable, must be the solution"

    Are you using serial modbus ASCII, RTU or TCPIP?  Also, what type of radios are you using?  I have noticed some errors with MDS radios when attempting to pass some binary codes through them.

  • Making audio conference through tcp/ip

    hi,
    i want to establish audio conference between some systems which are connected through lan by using tcp/ip or udp i want make audio conference .
    i established the peer to peer voice communication ,now i want to make audio conference between a limitted number of systems which are connected through lan..
    if any body know the answer please help me...or tell me where did i can get answers to this type of questions?...

    Hi, this didn't have any result. I've added som jpegs from my settings for tcp/ip maybe there is something wrong with that? I'm not that familiar with this so.
    Attachments:
    configuration.jpg ‏150 KB
    modbuscommand.jpg ‏70 KB
    machine access.jpg ‏147 KB

  • Getting error trying to query db through HS connection

    I am trying to set up a new heterogenous services connection to mimic one on a 10gr2 server. I went through all the trouble of setting everything up, including listener and found out I had to use DG4ODBC instead on 11.2 as they had axed the 10.2 program. So here's my configuration:
    Platform: Windows 2008 Server 64-bit hosting Oracle 11.2.0.1
    Target: Windows 2008 Server hosting SQL Server 2008
    ORACLE_HOME: E:\Oracle\product\11.2.0\dbhome_1
    odbc set up as SYSTEM DSN, name SQLWEB
    ran Dg4odbcConfig.jar file to obtain settings files:
    [E:\Oracle\product\11.2.0\dbhome_1\hs\admin\initSQLWEB.ora]
    HS_FDS_CONNECT_INFO = SQLWEB
    HS_FDS_TRACE_LEVEL=OFF
    #HS_LANGUAGE=AMERICAN_AMERICA.WE8ISO8859P1[E:\Oracle\product\11.2.0\dbhome_1\NETWORK\ADMIN\tnsnames.ora]
    # tnsnames.ora Network Configuration File: E:\Oracle\product\11.2.0\dbhome_1\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    TSA =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = TSORACLE1)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = TSA)
    SQLWEB=
    (DESCRIPTION =
    (ADDRESS=(PROTOCOL=TCP)(HOST=192.168.168.212)(port=1523))
      (CONNECT_DATA =
       (SID = SQLWEB)
      (HS=OK)
    )(note that 192.168.168.212 is IP for host TSORACLE1)
    tnsping:
    Microsoft Windows [Version 6.1.7601]
    Copyright (c) 2009 Microsoft Corporation.  All rights reserved.
    C:\Users\Administrator>tnsping SQLWEB
    TNS Ping Utility for 64-bit Windows: Version 11.2.0.1.0 - Production on 26-JUL-2
    012 12:43:42
    Copyright (c) 1997, 2010, Oracle.  All rights reserved.
    Used parameter files:
    E:\Oracle\product\11.2.0\dbhome_1\network\admin\sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS=(PROTOCOL=TCP)(HOST=192.168.168.21
    2)(port=1523)) (CONNECT_DATA = (SID = SQLWEB)) (HS=OK))
    OK (0 msec)
    C:\Users\Administrator>[E:\Oracle\product\11.2.0\dbhome_1\NETWORK\ADMIN\listener.ora]
    # listener.ora Network Configuration File: E:\Oracle\product\11.2.0\grid\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
          (ADDRESS = (PROTOCOL = TCP)(HOST = TSORACLE1)(PORT = 1521))
    ADR_BASE_LISTENER = E:\Oracle
    ENABLE_GLOBAL_DYNAMIC_ENDPOINT_LISTENER=ON          # line added by Agent
    LISTENER_DYNAMICS =
    (ADDRESS_LIST=
          (ADDRESS=(PROTOCOL=tcp)(HOST=TSORACLE1)(PORT=1522))
    SID_LIST_LISTENER_DYNAMICS=
      (SID_LIST=
          (SID_DESC=
             (SID_NAME=DYNAMICS)
             (ORACLE_HOME=E:\Oracle\product\11.2.0\grid)
             (PROGRAM=dg4odbc)
    LISTENER_SQLWEB =
    (ADDRESS_LIST=
          (ADDRESS=(PROTOCOL=tcp)(HOST=TSORACLE1)(PORT=1523))
    SID_LIST_LISTENER_SQLWEB=
      (SID_LIST=
          (SID_DESC=
             (SID_NAME=SQLWEB)
             (ORACLE_HOME=E:\Oracle\product\11.2.0\grid)
             (PROGRAM=dg4odbc)
    LSNRCTL> status LISTENER_SQLWEB
    Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=TSORACLE1)(PORT=1523))
    STATUS of the LISTENER
    Alias                     LISTENER_SQLWEB
    Version                   TNSLSNR for 64-bit Windows: Version 11.2.0.1.0 - Produ
    ction
    Start Date                26-JUL-2012 12:15:26
    Uptime                    0 days 0 hr. 29 min. 10 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   E:\Oracle\product\11.2.0\dbhome_1\network\admin\listen
    er.ora
    Listener Log File         e:\oracle\diag\tnslsnr\TSORACLE1\listener_sqlweb\alert
    \log.xml
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=TSORACLE1)(PORT=1523)))
    Services Summary...
    Service "SQLWEB" has 1 instance(s).
      Instance "SQLWEB", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfullyI am getting the following error when trying to query from the table:
    C:\Users\Administrator>sqlplus /nolog
    SQL*Plus: Release 11.2.0.1.0 Production on Thu Jul 26 12:46:04 2012
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    SQL> connect apps
    Enter password:
    Connected.
    SQL> select * from mancamp_location@sqlweb;
    select * from mancamp_location@sqlweb
    ERROR at line 1:
    ORA-28513: internal error in heterogeneous remote agent
    ORA-02063: preceding line from SQLWEB
    SQL>Any suggestions?

    So I saw the error just after I posted. My DB_HOME as listed in the Listener is wrong. It's pointing to my ASM home. Fixed that and now connection works! Hurray!

  • Getting error ORA-12705, while connecting through Sql*Plus?

    Hi TOM,
    While connecting ORACLE Database through Sql*Plus / via through Application. We getting error called "Error while trying to retrieve text for error ORA-12705".
    How to re-solve this one?
    Thanks & Regards,
    Senthil K Kumar.

    Maran,
    check the registry NLS_LANG in the registry rename it as suggested by burleson and add a new entryCurrently, it was more suggested by Maxim ;-)
    Nicolas.

  • Error While Making a Request Through API

    Hi everyone,
    I'm trying to submit a request through the API for the "Assign Roles" template, I used http://java.net/projects/openptk/sources/svn/content/branches/Oracle/OIM11g/examples/java/OIMClient/src/oim/client/request/RequestRoleCreate.java?rev=1489 as a basis for my code. Pretty much line for line.
    This is my code.
    public static RequestStatusSummary[] applicationAccessRequest(String email, String templateName, String roleName) {
    String userKey = getUserKey(email);
    Beneficiary beneficiary = null;
    RequestBeneficiaryEntity entity = null;
    List<RequestBeneficiaryEntity> entityList = null;
    List<RequestBeneficiaryEntity> entityAttrList = null;
    // add role requested
    entityList = new ArrayList<RequestBeneficiaryEntity>();
    entity = new RequestBeneficiaryEntity();
    entity.setEntityKey(getRoleKey(roleName));
    entity.setEntityType(RequestConstants.ROLE);
    entity.setEntitySubType(roleName);
    entityList.add(entity);
    // set beneficiary to user
    beneficiary = new Beneficiary();
    beneficiary.setBeneficiaryType("user");
    beneficiary.setBeneficiaryKey(userKey);
    beneficiary.setTargetEntities(entityList);
    // add benficiaries to the request data
    List<Beneficiary> beneficiaries = new ArrayList<Beneficiary>();
    beneficiaries.add(beneficiary);
    requestData.setBeneficiaries(beneficiaries);
    System.out.println(requestData);
    // submit request
    String reqId = requestSvc.submitRequest(requestData);
    RequestStatusSummary[] requestStatusSummary = requestSvc.getRequestStatusSummary(reqId);
    return requestStatusSummary;
    getRoleKey() and getUserKey obtain the correct values. Directly before calling this method I log in to OIM using OIMClient this works correctly as well. The issue is that submitRequest() throws this. Any suggestions would be greatly appreciated. Thank you for your time.
    javax.ejb.EJBException: ; nested exception is:
         java.io.EOFException; nested exception is: java.io.EOFException
         at weblogic.rjvm.t3.MuxableSocketT3.endOfStream(MuxableSocketT3.java:345)
         at weblogic.socket.SocketMuxer.deliverExceptionAndCleanup(SocketMuxer.java:826)
         at weblogic.socket.SocketMuxer.deliverEndOfStream(SocketMuxer.java:760)
         at weblogic.socket.SocketMuxer.readReadySocketOnce(SocketMuxer.java:941)
         at weblogic.socket.SocketMuxer.readReadySocket(SocketMuxer.java:888)
         at weblogic.socket.JavaSocketMuxer.processSockets(JavaSocketMuxer.java:339)
         at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
         at weblogic.work.ExecuteRequestAdapter.execute(ExecuteRequestAdapter.java:21)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    javax.ejb.EJBException: ; nested exception is:
         java.io.EOFException; nested exception is: java.io.EOFException
         at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.unwrapRemoteException(RemoteBusinessIntfProxy.java:121)
         at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:96)
         at $Proxy6.submitRequestx(Unknown Source)
         at oracle.iam.request.api.RequestServiceDelegate.submitRequest(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at Thor.API.Base.SecurityInvocationHandler$1.run(SecurityInvocationHandler.java:68)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.security.Security.runAs(Security.java:41)
         at Thor.API.Security.LoginHandler.weblogicLoginSession.runAs(weblogicLoginSession.java:52)
         at Thor.API.Base.SecurityInvocationHandler.invoke(SecurityInvocationHandler.java:79)
         at $Proxy7.submitRequest(Unknown Source)
         at testoimlogin.TestOIMLogin.applicationAccessRequest(TestOIMLogin.java:350)
         at testoimlogin.TestOIMLogin.main(TestOIMLogin.java:537)
    Caused by: java.io.EOFException
         at weblogic.rjvm.t3.MuxableSocketT3.endOfStream(MuxableSocketT3.java:345)
         at weblogic.socket.SocketMuxer.deliverExceptionAndCleanup(SocketMuxer.java:826)
         at weblogic.socket.SocketMuxer.deliverEndOfStream(SocketMuxer.java:760)
         at weblogic.socket.SocketMuxer.readReadySocketOnce(SocketMuxer.java:941)
         at weblogic.socket.SocketMuxer.readReadySocket(SocketMuxer.java:888)
         at weblogic.socket.JavaSocketMuxer.processSockets(JavaSocketMuxer.java:339)
         at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
         at weblogic.work.ExecuteRequestAdapter.execute(ExecuteRequestAdapter.java:21)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)

    How are you creating OIMClient ?
    Make sure that you are using proper OIM URL: t3://ManagerServer:MANAGEDSERVERPORT
    getting error while calling RequestService interface

  • Cannot connect through TCP/IP

    On a single NT workstation I have (a) Developer 6 (b) Oracle 8i Enterprise (c) Application server - all on different homes.
    I can connect to the database from Dev 6 if protocol is IPC but not if it is TCP. I can Ping the host successfully and Listener is opening to port 1521 if I use TCP.
    If I Tnsping the database the address is successfully resolved but I simply timeout. No error message.
    Can anyone help?

    <p>Yes, you have to configure a connect string (connect_string) your
    tnsnames.ora and use it while connecting to the database from the client. Add
    appropriate values for <i>connect_string, ip_or_hostname</i> and <i>sid</i> :-<br>
    <br>
    Here are the options to configure:-<br>
    <br>
    <u><b>Option # 1</b>:</u> Oracle Net Configuration Assistant <br>
    <br>
    You can use the above (Start -&gt; Programs -&gt; Oracle...) if Oracle Net component
    is installed in your client machine.<br>
    <br>
    Oracle New Configuration Assistant -&gt; Local Net Service Name configuration -&gt;
    Add -&gt; <br>
    Service Name : sid.domain or just sid<br>
    Protocol: TCP<br>
    Host name: ip_or_db_hostname<br>
    Choose the standard port 1521 (default)<br>
    Perform a test to check the config (by default it will try to use
    system/manager, change it to a valid logon and test it again)<br>
    Net Service Name : connect_string<br>
    <br>
    or <br>
    <br>
    <b><u>Option # 2:</u></b> Oracle Net Manager <br>
    <br>
    If using Oracle Net Manager, click on Service Naming, then on the menu click
    EDIT --&gt; CREATE<br>
    Net Service Name : connect_string<br>
    then rest is all same as specified in Oracle New Configuration Assistant.<br>
    <br>
    or<br>
    <br>
    <b><u>Option # 3:</u></b> Manually edit tnsnames.ora and add entry. A typical
    TNS entry in tnsnames.ora would like like below:-<br>
    <br>
    <font face="Courier New" size="2">&lt;<i>connect_string</i>&gt; =<br>
        (DESCRIPTION =<br>
            (ADDRESS_LIST =<br>
                (ADDRESS =
    (PROTOCOL = TCP)(HOST = &lt;<i>ip_or_db_hostname</i>&gt;)(PORT = 1521))<br>
            )<br>
            (CONNECT_DATA =<br>
            (SERVER = DEDICATED)<br>
            (SID = &lt;<i>sid</i>&gt;)<br>
            )<br>
        )</font><br>
    <br>
    Hope it helps,<br>
    Babu Rangasamy</p>

  • Error trying to activate HANA through SAP CAL

    Hello,
    I am encountering the following error when I try to activate AWS HANA through SAP CAL
    "We are sorry, we cannot provide you with the solution due to the results of an export control check"
    There seems to be a solution floating around but I can't seem to find the details.
    Thank you in advance.
    Jeff

    Hi Stanimir, I am facing the same issue when trying to activate
    1. openSAP - BI Clients and Applications on SAP HANA
    2. SAP Business Warehouse 7.4 SP5 incl. SAP Business Objects BI 4.1 SP2 on SAP HANA 1.0 SP7 BYOL
    error message
    "We are sorry, we cannot provide you with the solution due to the results of an export control check."
    Can you please help me ?
    Sharan
    [email protected]

  • Getting error when attempting to connect through infiniband interface

    Hello,
    I launched coherence with -Dtangosol.coherence.localhost=<infiniband address> on two machines. I get a message saying that one machine connected to the other, but no partitions are transfered. Instead I get a run time exception on my main thread. The code works fine, I tried with the ethernet address and the code ran.
    I also tried the multicast test on these two machines through their respective infiniband interfaces and I got messages being transfered.
    Any thoughts on something I might have missed?

    Hi Armando,
    Can you please post the Coherence as well as multicast test logs from both nodes as an attachment to this thread.
    thanks,
    mark

  • Error while making vendor rejection through 122 mvt

    Dear Friends,
    User made GR for a Subcontract Material against a Scheduling Agreement. Then part qty he wanted to reject through 122 mvt. System gives the following error.
    Purchase order 8101000081 00210 has no component 000ADC120000 in plant 1000
    Message no. M7387
    Kindly give some solution for the same. Both header and Component materials are available in the plant.
    Regards,
    Ask

    Hi,
    Kindly check movement type groups in SPRO>Logistic genaral > Tax on goods movement > indai > Business transactions > Subcontracting  >  maintain movement tye groups
    0001     122     O
    0001     541     O
    0001     544     O
    0002     101
    0002     105
    0002     542     O
    0002     543     O

Maybe you are looking for