URGENT : RFC Lookup came in from which service pack of PI7.0

Hi Experts ,
                        This is a very urgent requirement .I wish to know RFC Lookup feature in Message Mapping came into existence from which service Pack in PI 7.0.Was it in SP18/19?? please reply .
  Please revert as early as possible .
Regards,
Arnab.

i think the lookup API are part of SP13 onwards. ( i.e. prior to 7.1), reference: http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/2219
from 7.1 onwards, few lookups like RFC Lookup are provided as standard functions in message mapping.

Similar Messages

  • (268625273) Q LAB01 Which service pack should we install?

    Q<LAB01>: Which service pack should we install?
    A<LAB01>: You should use the default installation of WebLogic server 6.1 without
    any service packs that comes on you student CD. While web services support is
    available on WLS6.1sp* the exercise set was design to use WLS6.1 without a service
    pack and instructor feedback will be based on this assumption.
    Adam

    Hi,
    Yes RTM version of SQL Server 2012 is not supported. You have to apply SQL Server 2012 SP2 below link will help you in doing it
    http://social.technet.microsoft.com/wiki/contents/articles/25632.how-to-install-sql-server-2012-sp2-on-standalone-sql-server-instance.aspx
    Above link also has link to download SQL Server 2012 SP2
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Wiki Article
    MVP

  • Which service packs are the eqivalent as the Windows 7 version for W2003?

    Thank you for your response to "Crystal Reports XI Release 2 .Net 2005 Server Compatability":
    Crystal Reports XI Release 2 .Net 2005 Server Compatability
    I did try the Service Pack update for Windows 7 and it worked and resolved the error -- Thank you!
    Several Service Pack links and instructions were provided for Windows Server 2008 R2 64-Bit.
    I have not as yet tried them, but I did leave out a question:
    The best practice to to use the same version of any software on all platforms:  development, test and production.
    Since it will be requried to use the Service Pack version for Windows 7 and we are currently on Windows Server 2003 32-Bit  for development and production, which service packs are the eqivalent as the Windows 7 version for Windows Server 2003 32 Bit?
    We currently use NO service pack version of Crystal Reports XI Release 2 .Net 2005 Server on these Windows 2003 Server 32-Bit web servers -- what is the equivalent version which matches the Windows 7 version? -- so that all platforms are using the same version of Crystal Reports XI Release 2 .Net 2005 Server?
    Appreciate all of your help.....Dave

    If I understand the question then the best way to approach this is to ensure that any and all versions of what ever OS you deploy to have the latest runtime:
    https://smpdl.sap-ag.de/~sapidp/012002523100000634042010E/crxir2sp6_net_mm.zip
    https://smpdl.sap-ag.de/~sapidp/012002523100000633302010E/crxir2sp6_net_si.zip
    These will work on WIN2003, Win2008, Win7, XP, etc., etc.
    - Ludek

  • IPlanet 4.1 - Which Service Pack Version?

    Hi,
    we have IPlanet 4.1installed and wanted to upgrade to the actual service pack.
    Can sb tell me how i can determine which service pack is installed now? And .. which service pack is the most recent (SP9 or SP12)?
    Thanx in advance .. Markus

    First line of your instance 'errors' log file should mention the exact version.
    Latest pack is SP 14. See release notes: http://docs.sun.com/source/817-5171-10/index.html
    -Alexis

  • How to identify which service pack is installed in BO XI R2

    Hi,
    I am currently workng in BO XI R2. Can any one please let me know how to find which service pack is installed ?
    Below is the version number mentioned in metrics under Central management server in CMC.
    Version: 11.5.10.1263
    Thanks
    Anand

    Hi,
    take this Version Number and post it into the "Help & Support" are of the SAP Service Marketplace.
    If all of your Servers have Version 11.5.10.1263 you are running on SP4.
    For more Information check SAP Note -  1318289.
    Regards
    -Seb.

  • Which service pack is needed?

    Hi ...
        Can anyone please tell which service pack is needed to integrate ERP system to TM system using PI 7.1?
    Can anyone have the knowledge on TM system? Could you please explain in detail.
    Thanks & Regards,
    Leela

    Hi,
    Integration of Master Data can be done by using the CIF. For more information about the PI interface take a look at: Support Portal, Software Download, Support Packages and Patches.
    Search for "TM", and you'll find XI CONTENT SCMTM.
    I hope this will help.
    Regards,
    Nico.

  • Urgent: RFC Lookup for BAPI in XI

    Hi,
    I am trying to call a BAPI that exists in XI system,in the Message Mapping in same XI system.
    If I run the BAPI,it is working fine.
    But if I call this in XI Message Mapping using RFC lookup,it returns garbage.
    I am not getting any RFC error.
    Can anyone please tell me what could be the reason for this.
    Thanks.
    Best Regards,
    Shweta

    Hi Shwetha,
    Please refer the below weblog:
    • RFC lookup using JCO (without communication channel)
    /people/sravya.talanki2/blog/2005/12/21/use-this-crazy-piece-for-any-rfc-mapping-lookups
    • RFC lookup with communication channel.
    /people/alessandro.guarneri/blog/2006/03/27/sap-xi-lookup-api-the-killer
    Sample code:
    public void createAlert(String InterfaceID, String AlertCategory, String errorString,String RFCReceiverCommunicationChannel,String BusinessService)
    try{
    final String SAPRFCNS = "urn:sap-com:document:sap:rfc:functions",
    FUNCTION_MODULE= "Z_FI_RAISE_ALERT";
    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
    DocumentBuilder builder = null;
    factory.setNamespaceAware(false);
    factory.setValidating(false);
    try {
    builder = factory.newDocumentBuilder();
    } catch (Exception e) {
    Document docReq =null;
    try {
    docReq = builder.newDocument();
    Node root = docReq.appendChild(docReq.createElementNS(SAPRFCNS, FUNCTION_MODULE));
    // Creates XML structure which is passed to ABAP function module
    root.appendChild(docReq.createElement("I_INTERFACE_ID")).appendChild(docReq.createTextNode(InterfaceID));
    root.appendChild(docReq.createElement("I_ERROR")).appendChild(docReq.createTextNode(errorString));
    root.appendChild(docReq.createElement("I_ALERTCAT")).appendChild(docReq.createTextNode(AlertCategory));
    } catch (Exception e) {
    // XML Payload
    Payload result1 = null;
    try {
    Channel channel = LookupService.getChannel(BusinessService, RFCReceiverCommunicationChannel);
    RfcAccessor accessor = LookupService.getRfcAccessor(channel);
    InputStream is = new ByteArrayInputStream(docReq.toString().getBytes());
    XmlPayload payload = LookupService.getXmlPayload(is);
    result1 = accessor.call(payload);
    } catch (LookupException e) {
    // trace.addWarning("Error during lookup - " + e);
    // System.out.println(e.toString());
    catch(Exception e)
    // System.out.println(e.toString());
    Thnx
    Chirag

  • How can I determine which service packs have been applied?

    Our installed version of business objects enterprise R2 is indicted as 11.5.3.4175 in the support information selected from the Add/Remove Programs listing of Business objects Enterprise R2......
    How / or what information can I refer to in order to compare the version # to in order to determine which SP#'s and / or fix patches have been installed?

    To verify that you have SP2 or SP3
    installed (Windows)
    1. Go to Start > Settings > Control Panel.
    2. Double-click Add or Remove Programs.
    The "Add or Remove Programs" dialog box opens.
    3. Check the list for BusinessObjects XI Release 2 Service Pack 2 or
    BusinessObjects XI Release 2 Service Pack 3.

  • Windows xp , which service pack is best ?

    hi, can anyone help please ? my PC uses windows xp service pack 2, i have automatic updates enabled but i have not been prompted to update it to service pack 3. i have tried to look for a download to update to service pack 3, as i presume it is better than service pack 2. is this correct ? is it better ?
    also, when i have found a link offering to allow me to get service pack 3, it is accompanied by dire warnings about setting up system restore points, suggestions that only programmers and experts should be doing it and advice about losing files, data and damaging the computer  !! is it worth the (apparent) risk to get service pack 3, how risky is it?
    thanks for all advice.

    this forum is for problems with products supplied by BT retail.  I suggest you try here which is more appropriate  http://social.technet.microsoft.com/Forums/en-US/itproxpsp/threads
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Which Fix Pack is included in which Service Pack?

    I found no exhaustive documentation on that.
    E.g. Fix Pack 2.6 is out now but I noticed that is also a new Fix Pack for Service Pack 1, namely Fix Pack 1.11 .
    If I am a User of Crystal Reports 2008 and have Service Pack 2 applied, which Fix Pack do I have to apply to get the fixes of FP 1.11 ? Do I have to wait for Fix Pack 2.7 then? Or did Fix Pack 2.6 also include Fix Pack 1.11?
    This is so confusing. I found no answers to these questions in the release notes.

    Hello,
    Previous versions of CR did not always follow the same versioning rules. We are now matching major and minor versions with Fix Packs to Service Packs.
    With Cr 2008 the major number of the Fix pack is the major number of the Service Pack. In your case if you are on SP 2 then Fix Pack 2.x can be applied. You cannot apply FP 1.11, that is for people still on SP 1.
    Fix Pack 2.7 is now available: https://smpdl.sap-ag.de/~sapidp/012002523100005755702010E/cr2008fp27.exe
    Thnak you
    Don

  • Dynamic End Point Lookup in BPEL from Oracle Service Registry

    Hi,
    I have configured the OSR as mentioned in the configuration document,
    http://download-east.oracle.com/docs/cd/B31017_01/integrate.1013/b28982/service_config.htm#BABBHJAF
    I am able to connect to the OSR using JDeveloper in BPEL Project, but when I try to invoke a service using Partner Link (set registryServiceKey). I get a fault in the response as,
    Your test request was processed synchronously. It took 45.344seconds to finish and generated the following output:
    <Faulthttp://schemas.xmlsoap.org/soap/envelope/>
    <faultcode>env:Server</faultcode>
    <faultstring>com.oracle.bpel.client.delivery.ReceiveTimeOutException: Waiting for response has timed out. The conversation id is f2c8c0960e14b654:-52ab9331:11198eb85f2:-7f2b. Please check the process instance for detail.</faultstring>
    </Fault>
    In the Audit Instance, it displays
    InvokeWS_printHelloWorld_InputVariable>
    - <part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="parameters">
    - <printHelloWorldElement xmlns="http://webservicesamples/types/">
    - <fault>
    - <bindingFault xmlns="http://schemas.oracle.com/bpel/extension">
    - <part name="code">
    <code>
    GenericError
    </code>
    </part>
    - <part name="summary">
    <summary>
    Exception not handled by the Collaxa Cube system.
    An unhandled exception has been thrown in the Collaxa Cube system. The exception reported is: "com.oracle.bpel.services.registry.util.SRSecurityException: Unable to read server response. Server returned status code: 401 (Unauthorized) Incoming message is not SOAP 1.1 nor SOAP 1.2
         at com.oracle.bpel.services.registry.WSDLSRResolver.<init>(WSDLSRResolver.java:240)
         at com.oracle.bpel.services.registry.WSDLSRResolver.<init>(WSDLSRResolver.java:289)
         at com.collaxa.cube.ws.WSInvocationManager.invoke2(WSInvocationManager.java:291)
         at com.collaxa.cube.ws.WSInvocationManager.invoke(WSInvocationManager.java:222)
         at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__invoke(BPELInvokeWMP.java:736)
         at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__executeStatements(BPELInvokeWMP.java:371)
         at com.collaxa.cube.engine.ext.wmp.BPELActivityWMP.perform(BPELActivityWMP.java:195)
         at com.collaxa.cube.engine.CubeEngine.performActivity(CubeEngine.java:3271)
         at com.collaxa.cube.engine.CubeEngine.handleWorkItem(CubeEngine.java:1697)
         at com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal(PerformMessageHandler.java:75)
         at com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage(DispatchHelper.java:184)
         at com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory(DispatchHelper.java:269)
         at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:5244)
         at com.collaxa.cube.engine.CubeEngine.createAndInvoke(CubeEngine.java:1083)
         at com.collaxa.cube.engine.ejb.impl.CubeEngineBean.createAndInvoke(CubeEngineBean.java:132)
         at com.collaxa.cube.engine.ejb.impl.CubeEngineBean.syncCreateAndInvoke(CubeEngineBean.java:161)
         at sun.reflect.GeneratedMethodAccessor176.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
         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.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:31)
         at com.evermind.server.ThreadState.runAs(ThreadState.java:620)
         at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:34)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.TxRequiresNewInterceptor.invoke(TxRequiresNewInterceptor.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 CubeEngineBean_LocalProxy_4bin6i8.syncCreateAndInvoke(Unknown Source)
         at com.collaxa.cube.engine.delivery.DeliveryHandler.initialRequestAnyType(DeliveryHandler.java:499)
         at com.collaxa.cube.engine.delivery.DeliveryHandler.initialRequest(DeliveryHandler.java:451)
         at com.collaxa.cube.engine.delivery.DeliveryHandler.request(DeliveryHandler.java:125)
         at com.collaxa.cube.ejb.impl.DeliveryBean.request(DeliveryBean.java:95)
         at sun.reflect.GeneratedMethodAccessor175.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
         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.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:31)
         at com.evermind.server.ThreadState.runAs(ThreadState.java:620)
         at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:34)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)
         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 DeliveryBean_RemoteProxy_4bin6i8.request(Unknown Source)
         at com.collaxa.cube.ws.soap.oc4j.SOAPRequestProvider.processNormalOperation(SOAPRequestProvider.java:455)
         at com.collaxa.cube.ws.soap.oc4j.SOAPRequestProvider.processBPELMessage(SOAPRequestProvider.java:278)
         at com.collaxa.cube.ws.soap.oc4j.SOAPRequestProvider.processMessage(SOAPRequestProvider.java:129)
         at oracle.j2ee.ws.server.provider.ProviderProcessor.doEndpointProcessing(ProviderProcessor.java:869)
         at oracle.j2ee.ws.server.WebServiceProcessor.invokeEndpointImplementation(WebServiceProcessor.java:349)
         at oracle.j2ee.ws.server.provider.ProviderProcessor.doRequestProcessing(ProviderProcessor.java:460)
         at oracle.j2ee.ws.server.WebServiceProcessor.processRequest(WebServiceProcessor.java:114)
         at oracle.j2ee.ws.server.WebServiceProcessor.doService(WebServiceProcessor.java:96)
         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.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:396)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:410)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         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)
    Exception: com.oracle.bpel.services.registry.util.SRSecurityException: Unable to read server response. Server returned status code: 401 (Unauthorized) Incoming message is not SOAP 1.1 nor SOAP 1.2
    Handled As: com.collaxa.cube.CubeException
    </summary>
    Can you please help me with it?
    Regards,
    Neeraj

    Not sure if this answers your question, but:
    You won't get the endpoint as a variable in your process, if this is what you mean. By specifying the registryServiceKey, the BPEL runtime will divert the call to the OSR which then will divert to the endpoint specified in the binding.
    Note that you still have to keep the hardcoded WSDL location in the partner link when you add the registryServiceKey property. This is the way JDeveloper gets the WSDL (it doesn't seem to use the OSR).

  • Which service pack should I install if I have SQL Server 2012 RTM version 11.0.2100.60

    I read the recommendation "SQL Server 2012 RTM is no longer in mainstream support. If you wish to continue getting fixes, you should absolutely plan on migrating to the SP2 branch;" from
    http://blogs.sqlsentry.com/team-posts/latest-builds-sql-server-2012/. I am not quite sure how I can migrate from RTM to SP2. Thank you in advance.
    cy

    Hi,
    Yes RTM version of SQL Server 2012 is not supported. You have to apply SQL Server 2012 SP2 below link will help you in doing it
    http://social.technet.microsoft.com/wiki/contents/articles/25632.how-to-install-sql-server-2012-sp2-on-standalone-sql-server-instance.aspx
    Above link also has link to download SQL Server 2012 SP2
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Wiki Article
    MVP

  • Airport extreme with windows service pack 2

    I have just recently bought a macbook pro laptop, & have been corresponding with a forum member about a wireless setup.
    I want to have a wireless set up with a PC desktop with windows xp home service pack 2 that is stationed in the kitchen. This was recommended to me in this forum. Right now the PC has an Ethernet black box, with at&t DSL service. It has one yellow Ethernet cable coming from the black box to the PC & one grey DSL cord coming out of the black box & connects to a phone in the kitchen. I bought the laptop for my online classes so steady reliable internet service is crucial. Upon reading the specs of the airport extreme however got me a little concerned about which service pack I can use.
    Here is my question & comment from another member on this forum;
    I just noticed a PC has to have windows service pack 3, I have service pack 2, will it work with service pack 2? I am reluctant to update to service pack 3, my story behind my reluctance; the last time I did it, my PC completely crashed, the hard drive died. It had to be replaced, & ever since I get a little yellow alert to update to service pack 3, but I have not done it out of fear of another meltdown. Right now it is the only computer in our house, & I need it for my online classes. Last summer when I tried the service pack 3 update, & subsequent PC meltdown, I had to go to a public computer lab to finish off an online class, so I do not want to go through this again.
    And this is what they said;
    +That will give you wired internet access at the PC. Of course, the MacBook Pro will be wireless. I am not sure about the technical specifications required for the Airport. My initial reaction is that you should be fine to use the Airport as just a router with the PC with Service Pack 2. I think SP3 is just required for administration of the Airport using the Airport Utility for Windows. But, you could administer the Airport with your MBP. You may want to confirm this in the Airport forum unless somebody else here knows for sure! Sorry!+

    Which would be more powerful & reliable? the newest airport extreme or the aiport with the 500GB time capsule?
    Again, it will depend on what your networking requirements are. If we are talking about support for Time Machine backups, then only the Time Capsule (of the two options you listed) would work. Apple doesn't currently support these backups to drives attached to the AirPort Extreme Base Station.
    Would I be better off with something that is just for wireless internet? or a combo unit time capsule & airport?
    If you don't have any networking gear now, then it may make better sense to go with a combination unit.

  • Deadline + latest service packs = meh

    I have an approval step for travel expenses with a 5-day modeled deadline that escalates the approval to the supervisor.  This has worked for a few months in production but since we migrated to the latest service pack release, the modeled outcome takes over but the original workitem doesn't get completed.  It stays active in the users inbox.
    I have no idea why and running the deadline job again doesn't do anything.
    It's going to the next step, just not completing the previous which is counter-intuitive to the whole workflow process.
    The agent determination for the next step is getting an error but it worked before even when it did and for it to get to the next step to even check the agent determination it had to complete the previous...well you get the idea.
    ECC 6.0
    SAP_ABA        701       0005 SAPKA70105     Cross-Application Component

    Hello,
    Sounds like a bug, assuming nothing else has changed. Did/does it happen in the Test system as well?
    "The agent determination for the next step is getting an error"
    What sort of agent determination, what sort of error?
    Also - which service pack?!
    regards
    Rick Bakker
    Hanabi Technology

  • Crystal Reports Server XI Service Pack Info

    Hi
    I seem to be taking over the admin role of a Crystal Reports Server we have
    I have checked the version numbers and I think it is out of date?
    Crystal Reports Server XI Version 11.0.0.12825
    Crystal Reports XI Version 11.0.0.128227
    The users are having some issues when scheduling reports to run and I was advised to get latest service packs for Crytsal applied
    Which Service Packs am I looking for?
    Thanks in advance
    Gary.

    Hello Lisha,
    I have not heard a release date for SP1 (.NET SDK) for CR Server 2008. A release date has not been announced.
    Sincerely,
    Dan Kelleher

Maybe you are looking for

  • Creating a bootable backup - instructions?

    I am looking to create a bootable back-up of my MBP so I can expirament with going from 10.4.6 to 10.4.10. (I am wary due to the processor whine issue.) I would like to be able to go back to 4.6 if I can't quiet the whine under 4.10. Can anyone guide

  • Slow motion hvx 200

    hi have been out testing with the hvx 200 trying to get a slow dreamy effect in camare. whats the right way to go about it. we chage the frame rate to 32 37 50 what the hvx 200 would let us do and the thing is all of the above came out as 50fps in fc

  • WUO-712 : Webutil Error while downloading into Excel

    Hello Everyone, I have installed oracle Application server 10g (10.1.2.0.2) with webutill. But while downloading data into Excel sheet it's through an error WUO-712 randomly due to which some of the data is missed out. We have installed webutil 10.5

  • Jquery Drag and drop in cfdiv bind url

    Hi guys,             is it possible to use jquery drag and drop in templete that I bind in cfdiv tag? If you could let me know how can we do it.

  • Assignment operator error

    Error is insert "AssignmentOperator Expression" to complete Expression      code snippet is     public String readVisualTag(Object obj, String s)         throws VisualTagException, IOException         Image image;         if(obj == null)