JCo Outbound Connection

Hi,
I am looking for an Outbound Connection from ABAP using Jco and RFC destination.
Is it mandatory to set the MetaData?
If yes how the Table Parameter would be registered using Meta.
I am looking at this blog, which is very helpful, but it is not having the table parameter setting:
/people/gregor.wolf3/blog/2004/08/26/setup-and-test-sap-java-connector-outbound-connection
Appreciate your help

Hi Prathap,
Create a function module in the ABAP system from where you are making the remote calls with the same signature, i.e. same parameter names and same dictionary types.  The body of the function module can be left empty in the local system, all we need is the signature.
Then in se80 you can use the pattern button to insert the function call entering the function name.  Remember to add the destination rfcdest and exceptions parts as in this example:
data:
  msg(80) type c.
call function 'MY_FUNCTION' destination rfcdest
  importing
  exporting
  tables
  exceptions
    system_failure        = 1 message msg
    communication_failure = 2 message msg
    others                = 3.
  if sy-subrc <> 0.
  error handling
  endif.
The system_failure and communication_failure are important, if not present and the remote function call can't be completed the caller code can be left waiting or dump.
Best regards... Lucio

Similar Messages

  • SAP R/3 outbound connection to CE 7.1 (Bean IDOC_INBOUND_ASYNCHRONOUS)

    Hi ...,
    I want to use RFC in the R/3 backend system to call a JCO-Server on SAP CE 7.1 (outbound connection).
    The JCO-Server starts successfully and everything works fine so far. That means, I can send an IDoc (material "MATMAS") via RFC to the SAP CE 7.1 and if I look through the transaction we02 the Idoc sent successfully to the the system. But if I look through the log-file of the CE 7.1 (.../nwa/logs) I realize the following error-message:
    java.lang.RuntimeException: Bean IDOC_INBOUND_ASYNCHRONOUS not found on host XXXX, ProgId =XXXX: Object not found in lookup of IDOC_INBOUND_ASYNCHRONOUS.
    at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.handleRequest(RFCDefaultRequestHandler.java:121)
    at com.sap.engine.services.rfcengine.RFCJCOServer$J2EEApplicationRunnable.run(RFCJCOServer.java:269)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:152)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:247)
    Caused by: com.sap.engine.services.jndi.persistent.exceptions.NameNotFoundException: Object not found in lookup of IDOC_INBOUND_ASYNCHRONOUS.
    at com.sap.engine.services.jndi.implserver.ServerContextImpl.lookup(ServerContextImpl.java:584)
    at com.sap.engine.services.jndi.implclient.ClientContext.lookup(ClientContext.java:343)
    at com.sap.engine.services.jndi.implclient.OffsetClientContext.lookup(OffsetClientContext.java:266)
    at com.sap.engine.services.jndi.implclient.OffsetClientContext.lookup(OffsetClientContext.java:286)
    at javax.naming.InitialContext.lookup(InitialContext.java:351)
    at javax.naming.InitialContext.lookup(InitialContext.java:351)
    at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.handleRequest(RFCDefaultRequestHandler.java:104)
    ... 5 more
    It would be very grateful, if somebody of you could help me!
    Thanks a lot.
    Stefan

    Hi Stefan,
    I am not working in CE 7.1, but have come across this issue several times with various clients.  Did you ever get a solution to this issue?
    Thanks,
    Mike

  • Jco: Error Connecting using sapgw04

    Hi,
    I have a problem using Jco to connect to a SAP-System.
    I'm trying to connect to SAP using the following configuartions:
         sysnr:           04
         GWServ:      sapgw00
         GWHost:      XXX.YYY.com
         ASHost:      XXX.YYY.com
    The code to create a repository for this configuration is:
         JCO.addClientPool(poolname, maxpoolsize, "538", "username", "password", "DE",
                   "XXX.YYY.com", "04", "XXX.YYY.com", "sapgw00");
    When I use this pool to get a function I get an Exception:
    com.sap.mw.jco.JCO$Exception: (123) JCO_ERROR_FUNCTION_NOT_FOUND: Server repository could not create function template '[FUNCTIONNAME]'
    caused by: com.sap.mw.jco.JCO$Exception: (102) RFC_ERROR_COMMUNICATION: Connect from SAP gateway to RFC server failed
    Connect_PM 
         GWHOST=XXX.YYY.com , GWSERV=sapgw00, ASHOST=XXX.YYY.com , SYSNR=04
    LOCATION   
         SAP-Gateway on host h33e / sapgw00
    ERROR       partner not reached
         (host XXX.YYY.com , service <b>sapgw04</b>)
    The strange thing is the sapgw04 in the error-message.
    Somehow JCO wants to use sapgw04 to connect to the RFC-Server. Is this an error in the SAP-Configuration or do I have to change the configuration of Jco?
    How can I tell Jco not to use sapgw04 but sapgw00?
    Any help would be appreciated!
    Thanks
    Torsten

    Hi Torsten,
    please check how you log on to your system.  You are giving a system number 04, which corresponds to sapgw04.  I'm not sure why the method needs all the information, seems to be duplicate to me (please comment if I'm wrong); it should be sufficient to use:
    addClientPool(String key,
       int max_connections,
       String client,
       String user,
       String passwd,
       String lang,
       String ashost,
       String sysnr)
    If you don't want to use sapgw04, just specify "00" for the sysnr.
    Hope this helps, harald

  • Strage problem with outbound connections

    Hi all,
    I've been unable to connect to my Gmail IMAP since I restored from a time machine backup. I know my IP hasn't been blacklisted, because I can still connect via my iPhone when I'm home and connected to the LAN, and my wife's mail app still works. I've completely removed all mail caches data from ~/Library for the mail app.
    After doing some network diagnostics, I've noticed I can't telnet to imap.gmail.com on port 993 from my Macbook Pro (the computer with mail failing). My firewall is completely disabled, again this works on my wife's laptop. Is there some other plist that could be interfering. Also, is it possible to list the firewall rules from the command line similar to linux's iptables? Something is blocking my outbound connection on the laptop itself, but I'm at a loss to find out what it is.
    thanks,
    Todd

    Hi,
    This could be the problem of confilting namespace or combinations.
    in receive action just check that right message interface is configured at Inbound side.
    just check any place void ?
    1)just check the name as case sensitive.
    2)Just check is there interface belongs to right software component.
    3)Just check mapping assigned to the right combination or not.
    its better to cross check all the component are assigned to right place or not.
    ****if helpful then rewards points
    Regards,
    Sumit Gupta

  • Can't modify Outbound Connection Pools properties in WebLogic 10.3.6

    I'm trying to configure BAM adapter in WebLogic Administration Console. Navigate to deployments -> OracleBamAdapter -> Configuration -> Outbound Connection Pools -> eis/bam/rmi -> tried to enter property value of Hostname but I couldn't. It is not in edit mode - no check box in front of Hostname column. I tried to enter the value in the hostname property and save but nothing was saved.
    I've unlocked domain configuration lock and I see the <lock & edit> button is disabled and <release configuration> button is enabled in the change center. So why can I modify the property value?
    WebLogic 10.3.6
    SOA 11.1.1.6
    BAM
    All are installed in the same server and SOA is installed with development mode. I didn't bounce the admin server after unlocking the domain configuration, is this required?

    Thanks, Arik. I just figured it out and was banging my head against the wall when you posted the message. :-) Thanks for the reply!

  • Outbound Connection Pool Entry Missing for DBAdapter in Clustered Weblogic Congfiguration

    Hi ,
    When I created an outbound connection pool entry in DBAdapter through weblogic console in a clustered environment ( 1-Admin server and 2-managed servers) and updated DB adapter, I indentified that connection entry is updated in only in plan.xml of one managed server and for other managed server it is not updated. Due to this we are unable to access Datasources for some requests from application.
    As a work around if we update plan.xml file of other managed server manually with required connection entry and update DB Adapter we are able to find the connection entry for both the managed servers.
    Apart from work around is there any other solution for this issue so that I can add a DB adapter connection entry through console which will update both plan.xml files.
    Thanks & Regards,
    Venkat

    I can suggest you to keep the Plan.xml file in shared drive that is accessible from all the server nodes,this will reduce the manual work.
    Regards
    Albin I
    http://www.albinsblog.com/

  • Couldn't create jco client connection for logical system

    Dear Experts,
    we are facing a strange issue in our custom webdynpro java application, few of our portal users are getting the "couldn't create jco client connection for logical system" for Model Data JCO Destination. below are details
    1. portal version 7.02 SP14 (we have recently updated to SP14 from SP02-- is this is causing the issue ?)
         1.1. updated the NWDI track with SP14 SCA files as well as added latest WD Runtime SCA file deployed the applications to Production also.
    2. above said exception is inconsistent and happening for only few users
    3. ping and test of jco destinations are successfull in content administration as well as in SLD, destinations were added in the SLD system.
    4. cleared the JCO ARFC meta data cache in webdynpro console
    5. jco destinations are configured using uid/pwd, configured user is not locked active and tested in the backend by logging in with the same user.
    6. restarted the portal server
    even though, we are getting the above said exception for few of portal users randomly.
    Please help me on this ASAP, as i am not getting any further help on this.
    Thanks,
    Ram.

    Hello Ram,
    Check the JCo Pool Configuration settings of your JCO Destination. This message normally comes when the maximum connections has been reached. Increase the "Maximum Connections" to some number depending on the usage. A good habit is to disconnect the jco connection after executing the same in your webdynpro code if you don't want it to be synchronous.
    <ModelName>.modelInstance().disconnectIfAlive()
    Hope this helps.
    Regards
    Vijay

  • Dozens of outbound connections to Russia and other...

    I was monitoring my network traffic today and saw that Skype has literally over 100 outbound connections from my computer. They range from the United States to Russia and more. I reached out to support chat today about this and was not given an answer about why this is happening. All they told me was "I guarantee your privacy is in tact". Attached is a screenshot of one of the outgoing connections.
    All I want is an answer. Is this due to some kind of peer-to-peer networking? If so, why does my computer need to contact Russia? What data is being sent?
    Thanks

    I have the same issue except that Skype is trying to connect to a trojan sight called "akamaitechnologies.com", whick is a known trojan site. I use TCPVCON.exe to monitor my IP connections. Im about ready to get rid of Skype, if I cant find a way to stop this.
    thanks ron

  • Failed to create new JCO client connection WD_FLIGHTLIST_RFC_METADATA_DEST:

    I tried the demo in SDN, but failed .
    Why?

    Sorry I forget posting the msg:
    for WD_FLIGHTLIST_MODELDATA_DEST:
    nnection for 'WD_FLIGHTLIST_MODELDATA_DEST' was sucessfully tested with user 'ZZHZHU'
    But :
    for WD_FLIGHTLIST_RFC_METADATA_DEST:
    Failed to create new JCO client connection WD_FLIGHTLIST_RFC_METADATA_DEST: com.sap.tc.webdynpro.services.sal.sl.api.WDSystemLandscapeException: Error while obtaining JCO connection. at com.sap.tc.webdynpro.serverimpl.wdc.sl.SystemLandscapeFactory.getJCOClientConnection(SystemLandscapeFactory.java:140) at com.sap.tc.webdynpro.serverimpl.wdc.sl.SystemLandscapeFactory.createJCOClientConnection(SystemLandscapeFactory.java:286) at com.sap.tc.webdynpro.services.sal.sl.api.WDSystemLandscape.createJCOClientConnection(WDSystemLandscape.java:107) at com.sap.tc.webdynpro.tools.sld.ButtonBar.onActionFinish(ButtonBar.java:224) at com.sap.tc.webdynpro.tools.sld.wdp.InternalButtonBar.wdInvokeEventHandler(InternalButtonBar.java:252) at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.invokeEventHandler(DelegatingView.java:87) at com.sap.tc.webdynpro.progmodel.controller.Action.fire(Action.java:67) at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.handleAction(WebDynproMainTask.java:100) at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.handleActionEvent(WebDynproMainTask.java:299) at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.execute(WebDynproMainTask.java:640) at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:59) at com.sap.tc.webdynpro.clientserver.cal.ClientManager.doProcessing(ClientManager.java:251) at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doWebDynproProcessing(DispatcherServlet.java:154) at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:116) at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:55) at javax.servlet.http.HttpServlet.service(HttpServlet.java:760) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:391) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:265) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:345) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:323) at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:865) at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:240) at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92) at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148) at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37) at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged1(Native Method) at java.security.AccessController.doPrivileged(AccessController.java:321) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162) Caused by: com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Failed to resolve connection parameter for WD_FLIGHTLIST_RFC_METADATA_DEST at com.sap.tc.webdynpro.serverimpl.wdc.sl.JCOClientConnection.resolveConnectionParameter4MsgServerJCODestinaton(JCOClientConnection.java:664) at com.sap.tc.webdynpro.serverimpl.wdc.sl.JCOClientConnection.resolveConnectionParameter(JCOClientConnection.java:508) at com.sap.tc.webdynpro.serverimpl.core.sl.AbstractJCOClientConnection.init(AbstractJCOClientConnection.java:247) at com.sap.tc.webdynpro.serverimpl.core.sl.AbstractJCOClientConnection.<init>(AbstractJCOClientConnection.java:221) at com.sap.tc.webdynpro.serverimpl.wdc.sl.JCOClientConnection.<init>(JCOClientConnection.java:101) at com.sap.tc.webdynpro.serverimpl.wdc.sl.SystemLandscapeFactory.getJCOClientConnection(SystemLandscapeFactory.java:138) ... 31 more Caused by: java.lang.NullPointerException at java.util.Hashtable.put(Hashtable.java:474) at com.sap.tc.webdynpro.serverimpl.wdc.sl.JCOClientConnection.resolveConnectionParameter4MsgServerJCODestinaton(JCOClientConnection.java:558) ... 36 more

  • How to access a domain server which is targeted by Group Policy set to block Inbound and Outbound connections

    Hi,
    I have a practice lab with two physical servers 2012 R2, one of them is Hyper-V host and one of VMs is a domain controller. I was doeing some exercises with firewall rule deployment through Group Policy, so I created an outbound rule to block port 80 which
    was targeted to Domain Computers. Now my other physical server has inbound and outbound connections set to block and domain controller cannot be contacted to update policy ( with rule removed ). At least that is my understanding. Maybe I messed up something
    with the profiles too, because port 80 would not have block all outband traffic, or?
    I am new to IT so my understanding is still poor.
    Best
    Robert

    Hi Robert,
    If we block inbound connections, all connections that do not have firewall rules that explicitly allow the connection will be blocked.
    If we block outbound connections, all connections that do not have firewall rules that explicitly allow the connection will be blocked.
    If we block outbound TCP port 80, it will mean all websites will be unreachable, for TCP port 80 is for HTTP.
    Regarding Windows firewall security settings, the following article can be referred to for more information.
    Windows Firewall with Advanced Security Properties Page
    http://technet.microsoft.com/en-us/library/cc753002.aspx
    Best regards,
    Frank Shen

  • SOA 11g FTP Adapter creating outbound connections every minute

    FTP Adapter SOA 11.1.1.4 build.
    ####<Feb 17, 2011 1:30:49 PM EST> <Info> <Common> <usadanassoad1> <soa_server1> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@374c159d> <Jing> <> <f1996a6c9a644552:-510fae37:12e30729d3f:-8000-0000000000008b36> <1297967449047> <BEA-000628> <Created "1" resources for pool "eis/Ftp/DynmManageFtp", out of which "1" are available and "0" are unavailable.>
    ####<Feb 17, 2011 1:31:48 PM EST> <Info> <Common> <usadanassoad1> <soa_server1> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@374c159d> <Jing> <> <f1996a6c9a644552:-510fae37:12e30729d3f:-8000-0000000000008b36> <1297967508533> <BEA-000628> <Created "1" resources for pool "eis/Ftp/DynmManageFtp", out of which "1" are available and "0" are unavailable.>
    ####<Feb 17, 2011 1:32:49 PM EST> <Info> <Common> <usadanassoad1> <soa_server1> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@374c159d> <Jing> <> <f1996a6c9a644552:-510fae37:12e30729d3f:-8000-0000000000008b36> <1297967569034> <BEA-000628> <Created "1" resources for pool "eis/Ftp/DynmManageFtp", out of which "1" are available and "0" are unavailable.>
    And the total connections are now over --1200-- currently.
    Outbound Connection Pool      Server           State      Current Connections      Created Connections
    eis/Ftp/DynmManageFtp          soa_server1     Running          1               1244
    Any ideas to why connections are being created would be helpful.
    Edited by: 827647 on Feb 25, 2011 12:41 PM

    This was due to polling attempts to "put" within the apps code

  • JCo client connection Failed to create new JCO client connection

    hi All
    I am trying to create a new JCO destination ion CE7.1 webdynpro content Admin. but I am getting following error.
    Exception while creating JCo client connection Failed to create new JCO client connection weter: com.sap.lcr.api.cimclient.LcrException: CIM_ERR_ACCESS_DENIED: User is not in role LcrInstanceWriterLD at com.sap.lcr.api.cimclient.SimpleResponseAnalyser.raiseExceptionOnError(SimpleResponseAnalyser.java:120) at com.sap.lcr.api.cimclient.SimpleResponseAnalyser.getIResult(SimpleResponseAnalyser.java:53) at com.sap.lcr.api.cimclient.CIMOMClient.sendImpl(CIMOMClient.java:220) at com.sap.lcr.api.cimclient.CIMOMClient.send(CIMOMClient.java:148) at com.sap.lcr.api.cimclient.CIMOMClient.createInstanceImpl(CIMOMClient.java:669) at ......
    SLD is Up and running
    CIM data is imported
    Solution tried :
    1) As no role wtih name LcrInstanceWriterLD was existing in the server ,hence created a new role with same name and assigned the LCR related action . Assigned the role to the user through which we are creating JCOs.
    But we still getting the same error.
    regards
    Poonam

    Hi Poonam!
    Got to dig in the past a bit, I remember Users being able to create SLD object have to have certain permissions set in the J2EE UME. Simple Admin rights do not suffer, if I recall right.
    Unfortunately I cannot go further in detail because this issue has been solved by a long gone collegue of mine.
    Good luck anyway!
    Jürgen

  • Exception while creating JCo client connection Failed to create

    Hello all -
       I am trying to create JCo metadata connections and I am getting the below error trace.
    Exception while creating JCo client connection Failed to create new JCO client connection SAP_R3_HumanResources_Metadata: com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Failed to change password for key SAP_R3_HumanResources_Metadata in secure storage at com.sap.tc.webdynpro.serverimpl.wdc.sl.SecureStorageWrapper.changePassword(SecureStorageWrapper.java:149) at com.sap.tc.webdynpro.serverimpl.wdc.sl.SystemLandscapeFactory.createJCOClientConnection(SystemLandscapeFactory.java:299) at com.sap.tc.webdynpro.services.sal.sl.api.WDSystemLandscape.createJCOClientConnection(WDSystemLandscape.java:107) at com.sap.tc.webdynpro.tools.sld.ButtonBar.onActionFinish(ButtonBar.java:265) at com.sap.tc.webdynpro.tools.sld.wdp.InternalButtonBar.wdInvokeEventHandler(InternalButtonBar.java:265) at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.invokeEventHandler(DelegatingView.java:87) at com.sap.tc.webdynpro.progmodel.controller.Action.fire(Action.java:67) at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doHandleActionEvent(WindowPhaseModel.java:420) at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:132) at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335) at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143) at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:321) at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:713) at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:666) at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250) at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149) at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62) at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53) at javax.servlet.http.HttpServlet.service(HttpServlet.java:760) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364) at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039) at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265) at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95) at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175) at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33) at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(Native Method) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176) Caused by: com.sap.security.core.server.securestorage.exception.ObjectStorageException at com.sap.security.core.server.securestorage.remote.RemoteSecureStorageClientContextImpl.storeObject(RemoteSecureStorageClientContextImpl.java:600) at com.sap.tc.webdynpro.serverimpl.wdc.sl.SecureStorageWrapper.changePassword(SecureStorageWrapper.java:137) ... 33 more
    Could anybody please suggest what is wrong with this creation?
    Thanks much!!

    Hi Maria,
    Please update the host and sevice file first then check the SLD test and SLD Data supplier in visual admin.
    Also check and verify the data using in the Jco destination creation.
    Hope it will helps
    Regards
    Arun Jaiswal

  • Any other option rather than JCO to Connect JAVA through SAP ? which wayhow

    Any other option rather than JCO to Connect JAVA through SAP ? which wayhow
    points will be awarded

    HI,
    For connectivity with SAP from Java, if you are looking at solutions based on the options SAP provides, then
    1. SAP JCo --> You know it...but this one is recommended if you want to connect from a standalone Java application.
    2. SAP JRA --> From applications inside JEE runtime environment.
    http://help.sap.com/saphelp_nw04/helpdata/en/6f/1bd5caa85b11d6b28500508b5d5211/content.htm
    Reward points if it helps,
    Regards,
    Omkar.

  • Multiple JCO client connections

    Hi guys!
    I need to configure more then one JCO client connection that points to different SAP/R3 instances. Is it possible? If yes, can I map and run RFCs from couple instances in the same WD application? PS: The RFCs have the same name....
    I realy don't think so.
    Suggestions??
    Tks
    Borges, Alexandre

    Hi guys....
    This topic solve my question....
    Re: JCO connection to multiple R/3 Back end system
    Tks
    Borges, Alexandre

Maybe you are looking for

  • Macbook Pro with retina 13-inch - should I have gone for the 15?

    Hi I recently bought a 13-inch Macbook pro with retina display. I am delighted with it. My main usage is 1.Word processing - this is what I basically use it for (translating, text editing, heavy email) 2. Examining photos to see if they are suitable

  • Passing values to dynamically created internal table

    Hi, I have the flat file data as f1,f2,f3........so on where f1 f2 and f3 are field names. I have a variable var which contains the data V1,0001,0002.........so on data: var type string. The value of field f1 is v1 The value of field f2 is 0001 The v

  • T40/Vista: Fn+F5 can't turn Wifi On/Of

    After upgrading to Vista on my T40 (2373-92G) I can't turn the wireless antenna on/of with the Fn-F5 keys. It only toggles the Blutooth on/off. How can I restore this function? /Jan

  • Are fact tables and cubes same in OWB?

    Dear all A simple question. How can I create a star schema (that is, with a fact table and dimensions) using OWB? OWB has options to create cubes, but as per my understanding a cube is not a fact table. Cube contains pre-computed data where as fact t

  • Import MultiPage PDF

    All: Is there a way to tell how many pages are in a multi-page PDF prior to or immediately after importing with the ProcessImportAndLoadPlaceGun? thanks, Liz