Problem with Business Logic Services Logic Editor

Hi,
I am trying to go to Logic Editor under Business Logic Services. I'm getting error that "Unable to launch xMII"
Is there any java related problem in my machine?
Regards,
Amalesh

Amalesh,
What version of xMII are you using 12.0 by chance.  If so goto the Java Web Start -> File -> Preferences -> and set your proxy to "None".  I would not recommend reinstalling Java as this will not solve your problem and if you are on xMII 12.0, the recommended version is 1.4.2_13 as a minimum.
Regards,
Erik

Similar Messages

  • Problem with Business Connector (Service to read body in http)

    Hi all,
    I have the following scenario:
    BC1 --> BC2 --> SAP
    BC1 send a file using http. This file hasn´t XML structure because the file is encrypted. The content of the file is sent into the body of the http message, not into the header.
    BC2 has a service prepared for receiving the file from the header of the http message (param "invoice"), not from the body. The call is: 
    http://?invoice=
    I need to include a new service before the previous one,in order to read the content of the file from the body of the message, mapping the content to variable "invoice" and the continuing with the treatment.
    Thanks in advance for your help.
    Pilar.

    Can you post what your expected XML result looks like ? The values structure is an internal structure of how BC represents that information. What types are you passing back as output variables in your service ? A recordlist ? Is it possible that you forgot to call a service step which converts document to string (so that you get the desired XML) ?
    CSY

  • URGENT :   EP 7.0 /ECC 5.0  -   Problem with Business Package : ESS/MSS

    Dear Portal Gurus,
    We are facing a problem with business package for ESS/MSS
    Our system Info is as under :
    Portal:- NW 2004s
    ERP2004: - (R3 ECC 5.0)
    ESS:- BP for Employee Self-Service (mySAP ERP 2004) 60.2
    MSS:- BP for Manager Self-Service (mySAP ERP 2004) 60.1.1
    SAP XSS  à (SAP ESS 100, SAP MSS 100 and SAP PCUI_GP 100 , all upto SP 12)
    After the Business Packages were installed,found that some  ess apps where not deployed...so manually deployed it.
    The JCO connections are OK.
    Do we need to set up the backend Homepage Framework for the same......even for preview.....was thinking not.
    Also, here is the error and exception that we get when we preview any ESS iview.
    A critical error has occured. Processing of the service had to be terminated. Unsaved data has been lost.
    Please contact your system administrator.
    You dont have the authorization to start service sap.com/pcui_gp~xssutils/XssMenuArea.
    com.sap.pcuigp.xssfpm.java.FPMRuntimeException: You dont have the authorization to start service sap.com/pcui_gp~xssutils/XssMenuArea.
    at com.sap.pcuigp.xssfpm.java.MessageManager.raiseException(MessageManager.java:111)
    at com.sap.pcuigp.xssfpm.java.MessageManager.raiseException(MessageManager.java:121)
    at com.sap.pcuigp.xssfpm.wd.BackendConnections.initBackend(BackendConnections.java:234)
    at com.sap.pcuigp.xssfpm.wd.BackendConnections.connectModel(BackendConnections.java:159)
    at com.sap.pcuigp.xssfpm.wd.wdp.InternalBackendConnections.connectModel(InternalBackendConnections.java:183)
    Thanks.
    Message was edited by: Ashutosh Rana

    I got the same problem :/
    not the authorization, but the fields in working time is displaying wrong.. (too big)
    Any solution to this?
    Best Regards
    Kristoffer Engh

  • Problem with reversal of Service entry Sheet

    Hi All,
    I am facing a problem with reversal of service entry sheet. The user has posted the document in dec 2009 and now the user wants to reverse the doc. I told the process how to reverse it. But when she is trying to revoke the acceptance, she is getting error log.I told her to reset the posting date to present date.Now she tried to change the doc date but she is getting error as "604 item 010 WBS element ****** budget exceeded year 2009". So i advised her further to increase the budget in the year 2009. Even that solution is not working.
    Please help in this regard
    Thanks & Regards
    Nisha Prasad

    Hi,
    The user is not authorised to change the budget. The person resposible for this is telling that increasing the budget wont help. can you tell me how to view whether the budget is available for the system in the period or not? Can you please help me in this regard?
    Thanks
    Nisha

  • Hi ! I need to send an e.mail reporting a problem with de Authorized Service Provider in Brasil. I contact Apple Brasil, but didn't solve. Someone know an Apple's USA e.mail i can use ? Thanks.

    Hi ! I need to send an e.mail reporting a problem with de Authorized Service Provider in Brasil. I contact Apple Brasil, but didn't solve. Someone know an Apple's USA e.mail i can use ? Thanks.

    There is a link at the bottom of this page. http://www.apple.com/contact/

  • Good morning. I need to send an e.mail reporting a problem with de Authorized Service Provider in Brasil. I contact Apple Brasil, but didn't solve. Someone know an e.mail i can use in Apple USA? Thanks.

    Good morning. I need to send an e.mail reporting a problem with de Authorized Service Provider in Brasil. I contact Apple Brasil, but didn't solve. Someone know an Apple's USA e.mail i can use ? Thanks.

    There is a link at the bottom of this page. http://www.apple.com/contact/

  • Problem with RESTful web service

    I am running into a problem with Flex Web Services (REST) in trying to get the proper format returned. I can see that the HTTP header is set to
    Accept: */*;
    rather than
    Accept: application/xml
    when sending the request. The web service was generated via the web services HTTP data services wizard. I edited it to set the resultFormat to xml
        // Constructor
        public function _Super_UsersService()
            // initialize service control
            _serviceControl = new mx.rpc.http.HTTPMultiService();
             var operations:Array = new Array();
             var operation:mx.rpc.http.Operation;
             var argsArray:Array;
             operation = new mx.rpc.http.Operation(null, "getUsers");
             operation.url = "http://localhost:8888/users";
             operation.contentType = "";
             operation.method = "GET";
             operation.resultFormat = "xml";
             //operation.serializationFilter = serializer0;
             operation.properties = new Object();
             operation.properties["xPath"] = "/";
             operation.resultType = valueObjects.Users;
             operations.push(operation);
             _serviceControl.operationList = operations; 
             model_internal::initialize();
    How does one configure the accept header?

    Hi,
    I have posted a simple application with the RESTful reference:
    http://apex.oracle.com/pls/apex/f?p=13758
    I can give you full privileges on this so you can look at the WEB service reference. Shall I send to you separately for login user?
    It is using the RESTful service: http://apex.oracle.com/pls/apex/nd_pat_miller/demo/employee/{deptno}
    This RESTful service tests fine when I test from within the RESTful web service module of the Workspace.
    I based this on the Video demo tutorial for RESTful web service that Oracle published for 4.2 release. The video seemed to exclude the {deptno} in the URL but when I try that, it doesn't work either.
    This is the error I am getting when I run this on my Apex environment: (it, of course, will not run the web service in the apex.oracle.com environment)
    class="statusMessage">Bad Request</span>                                         
    </h3>                                         
    </div>                                         
    </div>                                         
    <div id="xWhiteContentContainer" class="xContentWide">                                         
    <div class="xWhiteContent">                                         
    <div class="errorPage">                                         
    <p>                                         
    <ul class="reasons"><li class="badRequestReason"><span class="target" style="display:none;">uri</span><span class="reason">Request path contains unbound parameters: deptno</span></li>                                    
    </ul>Thanks,
    Pat
    Edited by: patfmnd on May 8, 2013 3:33 AM

  • I have a problem with the apple service team after making a payment. Where do I take the issue up?, I have a problem with the apple service team after making a payment. Where do I take the issue up?

    I have a problem with the apple service team after making a payment. Where do I take the issue up?, I have a problem with the apple service team after making a payment. Where do I take the issue up?

    If you are dissatisfied with the Service you have received and wish to Contact Apple...
    India
    Start your support request online and we'll connect you to an expert.
    (91) 1800 4250 744
    www.apple.com/in/support/
    From the above Link...
    To Contact Apple World Wide for Support and Service
    http://support.apple.com/kb/HE57

  • HT6114 i have a problem with notification of service battery since i installed mavericks. My macbook air is 2012 version.

    i have a problem with notification of service battery since i installed mavericks. My macbook air is 2012 version. Any solution?

    This from the crash log
    Dyld Error Message:
      Library not loaded: /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
      Referenced from: /System/Library/StagedFrameworks/Safari/Safari.framework/Safari
    indicates there is a missing library on your system. What problems were you having before that caused you to delete Safari? How did you delete it?
    You're best bet in this case is to re-install the OS. While doing a re-install will not normally harm your user data having a good working backup in cases like this is essential.

  • After upgrading to firefox 3.6 I have problem with hotmail email service

    after upgrading to firefox 3.6.4 I have problem with hotmail email service, however I can login in hotmail, I can't open mails or delet or do anything else with them.
    == URL of affected sites ==
    http://hotmail.msn.com

    Thank you, but I already have "always show tabs bar" set.
    Also, I have two computers and the other is running the exact same version of Firefox, and the exact same theme, but it does not have this problem.
    To make sure I'm being clear: there is an "x" on each tab that allows me to close it when I have multiple tabs open. When I have only one tab open, there is no "x"; so in order to close the webpage I have to open another empty tab, and then close the first. My other computer has the "x" to close the tab visible even when there is only one tab so that I can close the page and have an empty (marked "(untitled)" tab). Please help!

  • Problems with Presonus Firestudio and Logic

    I am having problems with compatability with my brand new Presonus Firestudio recording interface and Logic pro 8. I am new to logic but not to home recording, and i cant understand what might be the problem. When i use the firestudio with garageband it works easily. In the garageband sound preferences there are input AND output channels that the user can define. (i.e. you can set your input channels to come from the firestudio while the output channels go to the computer speakers or headphone jacks or whatever you define it as).
    From what i have seen in logic, there is only one option for your audio settings. when in preferences and under audio, there is a "device" setting in which you can define your audio device. Wheather this is input AND output for the program, i do not know. but the problem i am experiencing is that whenever i choose the firepod as the input device, no sound from logic will play from the speakers whatsoever. My first thought was that maybe ouput was going straight to the firestudio, but after plugging headphones into it this also did not work. Has anyone had success getting their firestudio to work in logic? if so let me know what settings you had to use, and how you got to moniter your input from from the firestudio via your computer.
    p.s.
    another WIERD problem i have run into, is that if i shut off the firestudio while logic is open, alot of times it will shut down my whole computer. i have never heard of this happening. what am i doing wrong?
    thanks!

    SydSeale wrote:
    The new beta drivers are now here...
    http://www.presonus.com/forums/showthread.php?t=3957
    ah, I was hoping to find my solution here, but alas the thread is gone...
    I recently bought a Macbook running Leopard, and am having difficulties with my PreSonus Firestudio Project thru Logic and Mainstage. I can get audio input and output just fine, but there's a ton of distortion/crackle. Kickstarting the sample rate seems to clear it up for a minute or two, but then the crackle comes back. The recorded tracks sound clean if I unplug the Firestudio, so apparently it's only in the monitoring stage?
    On the PreSonus board, they're claiming it's Apple who needs to update drivers for Leopard; PreSonus says the "Firestudio Project is Leopard compatible."
    still searching for some answers...

  • Problem with advanced sidechaining in logic x

    probably best i explain what i'm trying to do first!
    I'm bussing 4 different audio tracks to  bus 1 (for example) which has eq / compressor etc and outputs to the master and also to bus 2
    bus 2 has a drastic high cut on it but has no output, it is intended to be used as a silent sidechain effector
    bus 3 has a compressor set to sidechain to bus 2, but instead of sidechaining to the high cut signal, it uses the dry one.
    i used to route the same thing the same way on logic 8 and 9 but on 10 i have encountered this problem, is there a setting i need to change or is it a problem with the softwar that i'll have to add extra busses to route around?
    thanks!

    When you send (or change the output) of a channel to a bus, an Aux is created automatically in the mixer for you.  You can create more Auxes manually and set their inputs to the same bus # if you need to.  For example you could create a submix of 4 gtrs by setting the output to bus 1.  In the mixer you will now have an Aux with bus 1 as its input.  You could create 2 more Auxes with bus 1 as their input.  So you have 3 channels all with the exact same submix of gtrs.  Now you could do some parallel processing:  1 Aux has distortion, 1 Aux is clean, etc.  Say you wanted to filter the crap out of the gtr submix and use it for a sidechain on something else, you take your third Aux and put your crazy filter on it, and change its output to Bus 2.  A new Aux is created, but you can either delete it or change its output to none.  Whatever you want to listen to the crazy filter in its sidechain listens to bus 2, where that filter has been sent (from the 3rd aux above).
    I'm bussing 4 different audio tracks to  bus 1 (for example) which has eq / compressor etc and outputs to the master and also to bus 2
    Does the AUX output to Master & send to Bus 2?  or is it bad grammar (not criticizing) and you mean the 4 audio tracks also go to Bus 2?
    bus 2 (You mean an AUX with bus 2 as its input) has a drastic high cut on it but has no output, it is intended to be used as a silent sidechain effector
    OK so far
    bus 3 has a compressor set to sidechain to bus 2, but instead of sidechaining to the high cut signal, it uses the dry one.
    I think what you want is to set the output of the AUX with the high cut to an open bus, and use that as the sidechain for whatever is on what "bus 3" is.
    Maybe think of it like this:  busses are pathways, they can even be potential pathways.  If you send something to a bus it's like you plugged in a cord to a jack.  The other end of that cord might not be plugged into anything.  Or it might be plugged into the sidechain of a compressor, or an AUX channel.  In Logic's virtual world, that cord is like a Y jack with, like, 250 ends on it.  If you plug one of those ends into a filter, and one into an AUX channel, and one into a sidechain, the sidechain isn't going to hear what came from the filter.   You need another cord (bus) to come out of the filter and then into the sidechain.
    If you want to be 'clean and conservative' with your busses (and who doesn't in this economy?), you could skip the intermediate bus/channel.  Unless the compression is critical to the silent sidechain signal, you could skip sending the compressed signal to bus 2.  Change the input of the drastic high cut channel to Bus 1, and set its output to Bus 2,  Make sure no AUXes are there with Bus 2 as their input.

  • Problem with business rule

    Hi all,
    I have a problem with a business rule (BR) deployed as a standalone Descision service.
    the BR consists on a simple decision table wich compare an input (bigInteger) with 50. It returns two facts (as output).
    the two conditions are confugured (i.e. <50 and >=50).
    the Decision service (stateless) is called in a simple BPEL process. in some cases the the assign activity in the bpel process rise this exception :
    <bpelFault><faultType>0</faultType><selectionFailure xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/"><part name="summary"><summary>empty variable/expression result. The XPath variable or expression /ns5:callFunctionStatelessDecision/ns5:resultList/ns6:processResponse/ns6:CodeRetour is empty at line 440. An attempt to read or copy data referenced or computed by the XPath expression either had invalid data, according to the XML schema, or did not contain certain optional data. Ensure that the variable or expression result named in the error message is not empty. Enable XML schema validation of related variables to ensure the run-time data is valid. </summary></part></selectionFailure></bpelFault>
    it seems like an output of the business rule used by the assign after the invoke activity is empty.
    But in the input payload for the decision service all elements are not empty. I can't inderstand how the OBR return an empty variable?
    Any help please?

    In the taskflow you should be capable to trace step by step what happens in the execution. Does this give any clue, e.g. why sometimes the assert does not work?
    cu
    Andreas

  • Facing Problem with Adaptive Web Service Model

    Hi All,
    I am consuming adaptive web servcie model.  It is created from a lcoal web service i.e deployes on a web service. When i run from WS navigator it works fine.
    When i consume WDJ it is erroring out. The method is written an array of bean methods.
    The error i am getting is -- java.lang.IllegalArgumentException: Target role name 'Response' not defined for model class 'SearchInvoiceByNumberResponse'
    Please help me, have a very tight delivery....
    Thanks
    Supriya

    Hi All,
    I did re-imported my model but no help. There are 5 business methods in my EJB. three methods returns integer value and other two methods are selecting the data which returns bean type. One is bean type and another is of bean array type.....
    I have problem with only these two...........................these two methods errors out when try to consume through adaptive web servcie model....are there any pre-requsisties i should take care offf.....
    Help me out................
    Thanks
    Supriya.

  • Intermittent Problem with Business Event.

    Hi,
    I have a problem with a BES Event. My suspicions are that the event is intermittently nor firing. It's custom code subscribed to '*.apps.ar.hz.PersonProfileExtAttr.Update' (an EBS Person Profile Extensible Attribute Update).
    In the first lines of the custom code an audit is written to a table. For some one the updates to the Extensible Attribute no audit is written.
    The table HZ_PARAM_TAB is cleared for the item
    Q: Is there a way to prove that the BES Event did/did not fire?
    Thanks in Advance,
    Kieran.

    Kieran,
    Never experienced any performance issues when setting this profile option. However, you may review the following documents.
    Note: 280849.1 - How To Purge/Delete The Information From HZ_PARAM_TAB Table ?
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=280849.1
    Note: 187275.1 - TCA API Callouts/Workflow 2.6 Business Event System: Performance Issue
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=187275.1
    Note: 171703.1 - 11.5.x: Implementing Oracle Workflow Directory Service Synchronization
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=171703.1
    Regards,
    Hussein

Maybe you are looking for

  • Can connect to wireless network run off dell router, but not internet!

    I have a iBookG4 and have moved to a new apt with a wireless network run off a dell router/ comcast. My roommates have both Macs and PCs and can connect with no problems. I found the network on my airport and put in the password, joined network no pr

  • MAIL Sender adapter going in to error

    Hello Experts , We have configured one mail sender adpater with a custom module to read the attachements in the email message. This was working fine before. We recently had a restart of the PI servers. After that the channel is going in to error. The

  • Login can't be remembered on yahoo sign in

    ever since upgrading to 24.0, before this, never a problem, i have gone through the list of cookies, and my settings, according to the articles written are in compliance. I would have responded to another person who wrote the same issue, but this ent

  • Tranferring photos from iphoto to external hard drive

    Hi there, I'm a bit of a luddite, and am trying to back up all my photos on an external hard drive. I've dragged the library over, but none of the individual photos appear when you click on the folders (the ones I've created and named). You can acces

  • Maximum number of NI-CAN Objects

    Hello Folks, What is the maximum number of Ni-CAN objects supported by Ni - CAN boards ? What is the maximum size of the write queue buffer supported by the boards ? It seems there is a problem. I am not able to open more than 32 CAN objects, with a