Web service runtime Config - SRT_ADMIN_CHECK not correct

Hello to all,
I have config the web service runtime as it is shown in note 1043195 or in help.sap.com:
http://help.sap.com/erp2005_ehp_04/helpdata/EN/44/2bd53ecb69060be10000000a155369/frameset.htm
Now I check the configuration with the Report SRT_ADMIN_CHECK.
The table shows following entries:
Prüfung der systemübergreifenden Einstellungen
Die bgRFC Destination  ist nicht betriebsbereit!
Die bgRFC Supervisor Destination ist registriert
WSRM Event Handler ist aktiv
Task Überwacher ist aktiv
Datenkollektor für Monitoring ist nicht aktiviert!
ICF Knoten ist aktiv. /sap/bc/srt/
ICF Knoten ist aktiv. /sap/bc/srt/wsil
ICF Knoten ist aktiv. /sap/bc/srt/wsdl
ICF Knoten ist aktiv. /sap/bc/srt/esf_in
ICF Knoten ist aktiv. /sap/bc/srt/xip
ICF Knoten ist aktiv. /sap/bc/srt/rfc
ICF Knoten existiert nicht. /sap/bc/srt/pm
SRT ICF Knoten sind z.T. nicht aktiv oder nicht vo
Ende der Prüfung der systemübergreifenden Einstellungen
Prüfungen der mandantenabhängigen Einstellungen
Service Destination in Mandant 001 ist nicht konfiguriert
Service Destination in Mandant 066 ist nicht konfiguriert
Ende der Prüfungen der mandantenabhängigen Einstellungen
Mandantenabhängige Verbindungsprüfungen (Destinationen)
Verbindungstest in Mandant 000 gelungen
Service Destination in Mandant 001 nicht registriert
Service Destination in Mandant 066 nicht registriert
Verbindungstest in Mandant 100 gelungen
Ende der mandantenabhängigen Verbindungsprüfungen(Destinationen)
Now my questions:
1. How could I resolved the problem with the bgRFC destination is not operational?
2. How could I activate the Data collector for monitoring?
3. Why do not exists the ICF node /sap/bc/srt/pm and how to resolve this error?
Thanks and regards
Martin

Hi Martin,
From what I can understand ,It seems like the node /sap/bc is not active in sicf.
Do the following:
1) Logon to the ABAP Server
2) Goto transaction "sicf"
3) It takes you to the maintain services screen, click "execute" button
4) On the next screen, under "default host", you can see sap-->bc
5) Right click node "bc" and select "activate". Activate the entire subtree.
This should hopefully solve your problem.
Regards,
Sangeetha

Similar Messages

  • Errors configuring the Web Service Runtime

    Hi All, I'm trying to configure the Web Service Runtime using SRT_ADMIN on SAP Netweaver Trial 7.02.
    I have almost everything working, except three things. I ran SRT_ADMIN_CHECK and i got the following messages:
    Checking cross-system settings
    bgRFC destination is operational
    bgRFC supervisor destination is registered
    WSRM event handler is active
    Task watcher is active
    Data collector for monitoring is not activated
    ICF node is active. /sap/bc/srt/
    ICF node is active. /sap/bc/srt/wsil
    ICF node is active. /sap/bc/srt/wsdl
    ICF node is active. /sap/bc/srt/esf_in
    ICF node is active. /sap/bc/srt/xip
    ICF node is active. /sap/bc/srt/rfc
    ICF node does not exist. /sap/bc/srt/pm
    ICF node is active. /sap/bc/srt/xip/sap
    ICF node does not exist. /sap/bc/srt/scs
    Some of the SRT ICF nodes are inactive or do not exist
    Ending check of cross-system settings
    I checked in SICF and these two services does not exist in the tree. These two unexsting services are a limitation of the trial version?. If not, then how can I create them, if so, what are the parameters? Can I download a note or a manual regarding these two services?. Also how can I activate the data collector?

    Hi Mauro,
    Please check SAP Note 1501709 for the missing nodes issue.
    Regarding the Data Collector, I've never seen this activated anywhere before - without any repercussions. You could maybe try doing some research on a background job called SAP_SRT_COLLECTOR_FOR_MONITORING though.
    Regards, Trevor

  • Setting Web service runtime

    Hi
    How can i change the Web Service runtime in the IDE studio from "Apache Axis" to "Sap NetWeaver"?
    Regards
    Raja

    Hi Raja,
    Are you really using the <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/downloads?rid=/library/uuid/da699d27-0b01-0010-99b0-f11458f31ef2">java EE 5 version</a> from SDN? Because it works as described in there.
    -Vladimir

  • Exchange web services: why is ItemId not constant? [continued]

    As some others have discuss this problem before (e.g.,
    Exchange web services: why is ItemId not constant?), I want to talk about the solution, I have done what people have suggested by stamping the Guid as an extended property, For me this solution is kind of nice (although I do not know how to make it work
    with the occurrences)  but only as long as the application works, once the application restarts the extended properties of the items disappear, so my problem now, is “How to stamp the extended property on the EWS item and make it constantly there?” 
    This is the code of updating the calendar items (appointments)
    public void SetGuidForAppointement(Appointment appointment)
    appointment.SetExtendedProperty((ExtendedPropertyDefinition)_appointementIdPropertyDefinition, Guid.NewGuid().ToString());
    appointment.Update(ConflictResolutionMode.AlwaysOverwrite, SendInvitationsOrCancellationsMode.SendToNone);
    And these are the properties definition needed above. 
    _appointementIdPropertyDefinition = new ExtendedPropertyDefinition(DefaultExtendedPropertySet.Appointment, "AppointmentID", MapiPropertyType.String);
    _propertyDefinitionBases = new PropertyDefinitionBase[] { _appointementIdPropertyDefinition, ItemSchema.ParentFolderId, AppointmentSchema.Start, AppointmentSchema.End,
    AppointmentSchema.LegacyFreeBusyStatus, AppointmentSchema.Organizer };
    PropertySet = new PropertySet(BasePropertySet.FirstClassProperties, _propertyDefinitionBases);
    So if anyone has done this before could he/she provide me with an example that keeps the extended property stamped on the item even if the application exited. 
    Thanks 
     

    hello, thanks for the reply ... but it did not work .. when I re-run the application and use the following code it returns nothing , as the extended property is not saved in the exchange element. Eventhough I have replaced the "DefaultExtendedPropertySet.Appointment"
    with "DefaultExtendedPropertySet.PublicStrings" and another time with my own Guid. 
    public string GetGuidForAppointement(Appointment appointment)
    var result = "";
    var item = (Item)appointment;
    foreach (var extendedProperty in item.ExtendedProperties)
    if (extendedProperty.PropertyDefinition.Name == "AppointmentID")
    result = extendedProperty.Value.ToString();
    return result;
    Can you please send me a small code example ? 
    Thanks for your time. 

  • Problem constructing a web service request wich does not include namespace

    Hi!
    I'm evaluating Flex 3 for a web development.
    I'm having problems with a web service invocation.
    This is the soap request made with Soap UI:
    <soapenv:Envelope xmlns:soapenv="
    http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:open="
    http://www.openuri.org/">
    <soapenv:Header/>
    <soapenv:Body>
    <open:querySoftware>
    <open:imei></open:imei>
    <open:groupId></open:groupId>
    </open:querySoftware>
    </soapenv:Body>
    </soapenv:Envelope
    <mx:WebService id="giService" wsdl="
    http://..." result="onResult(event)">
    <mx:operation name="querySoftware">
    <imei>1<imei>
    </mx:request>
    </mx:operation>
    </mx:WebService>
    When invoking operation I get this error:
    [RPC Fault faultString="HTTP request error"
    faultCode="Server.Error.Request" faultDetail="Error: [IOErrorEvent
    type="ioError" bubbles=false cancelable=false eventPhase=2
    text="Error #2032: Error de secuencia. URL: ]
    at mx.rpc::AbstractInvoker/
    http://www.adobe.com/2006/flex/mx/internal::faultHandler()[E:\dev\3.0.x\frameworks\project s\rpc\src\mx\rpc\AbstractInvoker.as:216
    at
    mx.rpc::Responder/fault()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\Responder.as:49 ]
    at
    mx.rpc::AsyncRequest/fault()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\AsyncRequest .as:103]
    at
    DirectHTTPMessageResponder/errorHandler()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\mes saging\channels\DirectHTTPChannel.as:343]
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/redirectEvent()
    I see that Flex is making the request like the following
    wichi is not correct according to Soap UI request:
    <querySoftware>
    <imei></imei>
    <groupId></groupId>
    <querySoftware>
    How could I construct the request to include the open:
    namespace?
    Thanks a lot.

    I actually worked through this problem yesterday. This thread
    should help you:
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=60&catid=585&threadid =1377262&enterthread=y

  • Web Service Runtime error

    Hello everyone
    In our newly built AP0 ( dev, qa & prod ) systems there are many errors of web service and now the systems are being used by Users.
    Error --> 000 SAPSYS WS 4 Error in techincal configuration Error during the retrieval of the  logon data store,
    checked the below link .
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/46/4420e292b75e3fe10000000a11466f/frameset.htm
    Followed the help and  ran the report SRT_ADMIN_CHECK
    I see that the RFC is not defined and BG job (SAP_SOAP_RUNTIME_MANAGEMENT) is configured.
    The above BG job is not in the standard job list.
    Can someone help me to know more about the need of the web service and Can we stop this error by following sapnote 1163844.
    Thanks in advance
    Medha
    Edited by: MedhaD on Sep 2, 2010 8:52 PM

    Can someone help me plsss !!!!

  • Embedded OC4J  - Web Service works... not OC4J!

    I have a very interesting issue here.. when I run my EJB 3.0 - Web service in Jdeveloper using the embedded OC4J, I am able to successfully test my services.
    But, When I deploy the Web service to an OC4J server, I get the folowing error when I try to run one the exact same service:
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns0="http://model.sofia.dryden.nasa.com/"><env:Body><env:Fault><faultcode>env:Server</faultcode><faultstring>Internal Server Error (Caught exception while handling request: javax.ejb.EJBException: java.lang.StackOverflowError; nested exception is:
         java.lang.StackOverflowError; nested exception is: oracle.oc4j.rmi.OracleRemoteException: java.lang.StackOverflowError; nested exception is:
         java.lang.StackOverflowError)</faultstring></env:Fault></env:Body></env:Envelope>
    Note: This has been happening since I am working on migrating from an mySQL database to Oracle.....
    It may be something in the table structure on the oracle db.... due to the conversion process... but what is puzzling is how the embedded OC4J is very forgiving!
    -Thanks for any input...

    The version of OC4J: 10.1.3.1.0
    I am thinking it has to do with the UNIQUEID.... because the same code works fine on mySQL and SQL2005 db's....
    Perhaps it is something in the Oracle table.... (tdc)
    from the log:
    More of the stack:
    <MODULE_ID>ejb.transaction</MODULE_ID>
    <THREAD_ID>14</THREAD_ID>
    <USER_ID>mritchso</USER_ID>
    <SUPPL_ATTRS>
    <ATTR NAME="J2EE_MODULE.name">oraTdcWebservice</ATTR>
    <ATTR NAME="J2EE_APP.name">oraTdcWebservice</ATTR>
    <ATTR NAME="WEBSERVICE_PORT.name">oracleTdcSessionEJB</ATTR>
    <ATTR NAME="WEBSERVICE.name">oracleTdcSessionEJBBeanService</ATTR>
    </SUPPL_ATTRS>
    </HEADER>
    <CORRELATION_DATA>
    <EXEC_CONTEXT_ID><UNIQUE_ID>IPAddress:62846:1221082977722:2164</UNIQUE_ID><SEQ>0</SEQ></EXEC_CONTEXT_ID>
    </CORRELATION_DATA>
    <PAYLOAD>
    <MSG_TEXT>[oracleTdcSessionEJB:public java.lang.String com.nasa.dryden.sofia.model.oracleTdcSessionEJBBean.getTdc(int)] exception occurred during method invocation: oracle.oc4j.rmi.OracleRemoteException: java.lang.StackOverflowError; nested exception is:
         java.lang.StackOverflowError</MSG_TEXT>
    <SUPPL_DETAIL><![CDATA[oracle.oc4j.rmi.OracleRemoteException: java.lang.StackOverflowError
         at com.evermind.server.ejb.EJBUtils.getUserException(EJBUtils.java:346)
         at com.evermind.server.ejb.interceptor.system.AbstractTxInterceptor.convertAndHandleMethodException(AbstractTxInterceptor.java:69)
         at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
         at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)
         at oracleTdcSessionEJB_RemoteProxy_2ce1bo.getTdc(Unknown Source)
         at com.nasa.dryden.sofia.model.runtime.OracleTdcSessionEJBBeanSoapHttp_Tie.invoke_getTdc(OracleTdcSessionEJBBeanSoapHttp_Tie.java:411)
         at com.nasa.dryden.sofia.model.runtime.OracleTdcSessionEJBBeanSoapHttp_Tie.processingHook(OracleTdcSessionEJBBeanSoapHttp_Tie.java:1265)
         at oracle.j2ee.ws.server.StreamingHandler.handle(StreamingHandler.java:297)
         at oracle.j2ee.ws.server.JAXRPCProcessor.doEndpointProcessing(JAXRPCProcessor.java:413)
         at oracle.j2ee.ws.server.WebServiceProcessor.invokeEndpointImplementation(WebServiceProcessor.java:349)
         at oracle.j2ee.ws.server.JAXRPCProcessor.doRequestProcessing(JAXRPCProcessor.java:277)
         at oracle.j2ee.ws.server.WebServiceProcessor.processRequest(WebServiceProcessor.java:114)
         at oracle.j2ee.ws.server.JAXRPCProcessor.doService(JAXRPCProcessor.java:134)
         at oracle.j2ee.ws.server.WebServiceServlet.doPost(WebServiceServlet.java:177)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:711)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
         Nested exception is:
    java.lang.StackOverflowError
         at com.nasa.dryden.sofia.model.oracleTdcSessionEJBBean.<init>(oracleTdcSessionEJBBean.java:20)
         at com.nasa.dryden.sofia.model.oracleTdcSessionEJBBean.getTdc(oracleTdcSessionEJBBean.java:83)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Web Services in CF10, components not found - Java vendor problem?

    Is anyone having problems invoking web services in CF10, IIS 7, Java Oracle?  We recently upgraded, and the web services are now returning the following error that the component can't be found:
    The web service operation caused an invocation exception.
    The root cause was that: coldfusion.runtime.CfJspPage$NoSuchTemplateException: Could not find the ColdFusion component or interface
    Should the web service be created in cfadmin?  It won't let me.  I was understanding the calling the webservice from cfinvoke would create the webservice, but it isn't.
    Any information outside of the Adobe documentation which I've read would be helpful.
    We have this identical file running on four different servers.  It works on two of the four.  The only difference I see in the server settings besides the version of CF and the operating system, is the vendor/version of Java.
    1.  CF10, Java Sun, IIS 7.5.7600.16385 - working
    2.  CF8, Java Sun - working
    3.  CF10, Java Oracle - not working
    4.  CF10, Java Oracle, IIS 7.5.7600.16385 - not working
    Thank you.

    It turns out that it was a directory nomenclature issue.  The directory had a period in it (e.g., domain.org).  Once the period was removed from the directory name, it worked.  For whatever reason, it worked fine in CF8 but not CF10.  I hope this helps someone else.

  • Unable to Migrate web services with Config Migration Admin

    Hi,
    I have created some web services in Soap Wsdls. In Config Migration Admin I don't see my web services, then I selected the SoapPublicWsdls and WsdlMerger componente, but when I import the file in the target, the wsdl is not imported.
    How can I migrate the wsdl defined by me to other instance?
    Thanks

    You have to "build" the component before the component can be seen by the CMU process. The component's manifest file is read to populate the CMU list, and the manifest isn't created until the build occurs.
    Using CMU is a terrible way to migrate a component, (and can be problematic unless the component is dirt simple.) Since you have to build the component anyway, just take the component zip file you just built and upload it via Component Manager instead. Restart the server and you are done. (Uploading via CMU still requires the restart of the server.)

  • Web Service Client(Console App) not working on Windows Server 2008 R2 Standard Edition

    I am trying to consume an ASMX Web Service in a console app, its working fine in Windows 7,Windows Server 2012 Standard,Windows Server 2008 R2 DataCenter,Windows Server 2008 R2 Enterprise, But its not working in Windows Server 2008 R2 Standard Edition which
    is the deployment server.
    I tried consuming the ASMX web service using Web Reference and Service Reference as well but its not helping. Its throwing up the following error,
    Message:There is an error in XML document (1, 331491).
    Inner Exception : System.Xml.XmlException: '.', hexadecimal value 0x00, is an invalid character. Line 1, position 331491.
    The scenario is that i call the web service and it returns me an XML i am not able to receive the XML on Windows Server 2008 R2 Standard Edition.
    Please provide suggestions on this I need to resolve this ASAP.

    Hi,
    This question is better asked here:
    http://social.msdn.microsoft.com/Forums/en-US/home?forum=asmxandxml
    Experts here are more familiar about it and they can give you more efficient suggestion.
    Thank you.

  • Web service in Xcelsius is not working

    Hi Experts,
    I am new to Xcelsius. I have created Web service through WSCONFIG Tcode in SAP BI.
    This Web service (WSDL) is working fine in portal. I have tried to connect it in Xcelsius through
    DATA MANAGER -> Web service connection.
    WSDL is imported here in Xcelsius and I have provided the credentials as well as infoprovider & query details in data manager screen.
    I am not able to view the result here in Xcelsius (Version 2008) in excel spreadsheet or canvas .
    Can someone explain what extra need to be done?
    Thanks in advance.
    Shamkant

    Hi,
    Can you please let us know how you resolved the same?
    Regards,
    Gourav

  • Word template with web service - style and font not considered

    Hi experts.
    I'm using a word template with a web services.
    So i've added my xml tags in the template and i've tried to change the font and style but when i launch the document, what i have defined is never considered. For example if i set in a table that a line should be in Italic, when i edit the document no text is in italic ?
    Did you ever faced this kind of issue ?
    How did you manage to set you style to the xml tags ?
    Thanks in advance for your help.

    I also had similar problems but I didn't work on word template for quite a long time. But at that time I solved the problem with formating the word and not the xml tag directly.
    For example: I wrote the word lastname and formated it to for exampe, bold and italic like lastname. After thet I selected the word and applied the xml tag to that word and this worked just fine.
    Regards.

  • Web service AddTerms for TaxonomyClientService not working.

    Hello,
    We are trying to get AddTerms method to work in TaxonomyClientService using a web service call (not using the SP client obj model) but the request always returns 500 error. I have compared the headers and body of my request with the Fiddler trace of another
    software which uses the client obj model and they are word-for-word the same.
    A sample one looks like this...
    <?xml version="1.0" encoding="utf-8"?>
    <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns="http://schemas.microsoft.com/sharepoint/taxonomy/soap/">
    <soap:Body><AddTerms xmlns="http://schemas.microsoft.com/sharepoint/taxonomy/soap/">
    <sharedServiceId>c6ea8a52-de1b-4957-814d-69bf312c40f2</sharedServiceId>
    <termSetId>8ef9d5d1-f804-410c-b276-9c6251a74abe</termSetId>
    <lcid>1033</lcid>
    <newTerms>
    <newTerm label="someTerm" clientId="1" parentTermId="1ff4cd4f-6996-409f-8e97-d877079f2449">
    </newTerm>
    </newTerms>
    </AddTerms></soap:Body></soap:Envelope>
    I have made sure that the term set is indeed open and able to add terms. But I can never get past the 500 error. Searching around online it seems
    a great amount of people are having same problems. More people are having success working directly with the client obj model. There seems to be something wrong with the XML schema for direct web service calls?
    Thank you,
    Michael

    Hi Jacob,
    Thanks for the reply.
    I have tried taking the snapshot of data but I am getting blank excel spreadsheet.
    I am using Xcelsius 2008 (or 5.0) version. In components I am using REFRESH button under web connectivity folder.
    Somewhere on internet I have seen Web service button (under Web connetivity folder) in Xcelsius 4.5 version which is used to connect  Xcelsius & SAP system.
    My question is :
    I am not able to find similar button in 2008 version. Is this REFRESH button is doing same work or different.
    Please advice.
    Shamkant

  • Cosuming web service using consumer proxy - not getting the output

    Hello All,
    I am not getting the consumer proxy output structue filled though the web service is successfully executed. I did the following steps.
    1. Created a webservice form RFC BAPISDORDER_GETDETAILEDLIST
    2. Created a consumer proxy for the above created WSDL document.
    3. Tested the service by executing the proxy directly by feeding the input in the XML (sales document and partner view). it is working fine
    4. Created a program to access the consumer proxy by passing the input(same input as per XML). I am not getting the output in the proxy output structure ( but I can see the RFC is successfully executed and having the right values in the debugging mode).
    Is this the issue is due to the date fields (XML cannot consider a blank date )?
    Please note: the partner output table parameter in the bapi (output I am looking for ) is not having any date fields.
    Please help me to sort out this issue.
    Thanks,
    Gopi

    Hi Gopi,
    From your description, I assume you used the SE37 transaction's menu option Utilities -> More Utilities -> Create Web Service -> From the Function Module, to expose the BAPI concerned as a Web Service.
    If this is the case, then it is possible that you are falling foul of your SAP User ID not having the necessary Remote Function Call authorization to execute the BAPI.
    A prerequisite for successfully calling an RFC-enabled Function Module (which is what a BAPI is) is that the User ID used to call the function module must have the required RFC authorization (Authorization Object S_RFC).  For example, when calling function module BAPI_CUSTOMER_GET_ROOT, if the User ID lacks the requisite authorization in the target system, the following error message will be received by the Consuming application:
        User <User ID> has no RFC authorization for function group V02HBAPI.
    Notice, as you can see from the above message, RFC execution authorization is implemented at the Function Group level, not at the Function Module level.  In othere words, granting a user the authorization to a function group (authorization object S_RFC) enables the user to execute all RFC-enabled function modules contained within that function group.
    I am guessing the BAPI works for you in debug mode because you are not calling the BAPI remotely.
    Let me know if this helps.
    Best Regards,
    Andy.

  • Calling Web Service using utl_http; Parameters not being recognized by ws

    Hi All,
    I have set-up appropriate function & packages based on this article:
    Calling Web Services from PL/SQL in the Oracle9i Database -
    http://www.oracle.com/technology/tech/webservices/htdocs/samples/dbwebservice/DBWebServices_PLSQL.html
    I am able to consume my sample web service using the above, but my web service doesn't see any parameters that I'm passing.
    Any ideas? I'm using Oracle 10g calling a .Net 1.1 web service
    Thanks,
    Robert

    Hello,
    I am not able to access the link you posted about calling a web service. Could please share your code again ?
    Thanks in advance for your help...
    Lionel

Maybe you are looking for

  • Can we view events in separate windows?

    In previous versions of iPhoto, we could open an event and make it a separate window, then go back to our Library of events and open a second event.  Is this possible in iPhoto 11? We liked the option of having two windows open with separate scroll b

  • Java Web Services Developer Pack 1.3 and JDK 1.3.1

    Does anyone know if I can use Java Web Services Developer Pack 1.3 with JDK 1.3.1? The installation instructions only mention JDK 1.4. Thanks, Jerry

  • Why do I see numbers appended to my Certs after renewal?

    Hi, When I built my Offline Root CA and created its Cert the first time, it was named Server_RootCert   Was easy to understand and I brought Server_RootCert over to the Issuing CAs, etc. When I renew my Offline Root CA Cert, what I see is numbers cre

  • Printing on A7 Envelopes

    Does anyone know how to add printer settings to the print options.  I am trying to print an A7 Envelope..which is 5.25 x 7.25.  This option is not available and nothing in the list is close to it.

  • Custom portal service ??

    hi, does a custom portal service get listed under sys admin ->sys config -> service config -> applications... I can not seem to find it under that. Pls help Thanks