Error in CAF NW 7.2 that don't occurs in CAf NW 7.1

Hi Experts
I had a problem to develop a CAF app in NW 7.2.
I has an SC with CAF DC developed in NW 7.1 and works fine. I got this one and imported to NW 7.2.
This CAF DC have the follow structure:
One BO Node: StatusBO.
One AS: ExecutorService
One AS: ParamConfiguratorService
ExecutorService have dependency with StatusBO
ParamConfiguratorService have dependency with ExecutorService
In EexecutorService i have a method that create or update the StatusBO. In this method i call readByCustomKey. This works fine when i call this method directly from ExecutorService.
In ParamConfiguratorService i call the same method in ExecutorService. And this errors occurrs:
Caused by: com.sap.engine.services.dbpool.exceptions.BaseSQLException: ResourceException occurred in method ConnectionFactoryImpl.getConnection():
com.sap.engine.services.connector.exceptions.BaseResourceException: The resource "SAPEC1DB" does not support two-phase commit and cannot be enlisted in the current
transaction, because another non supporting two-phase commit resource is already enlisted for
component "ejbContexts/xxxxxxxx.com.br/xxxxxxxxxx~caf~ear/xxxxxxx.xxx.xx~xxxxxxxxxx~caf~ejbmodule.jar/xx.xxx.xxxxxxx.xxxxxxxxxx.caf.modeled.bonode.statusbo.statusbo.
SatusBO" in application "xxxxxxx.xxx.xx/xxxxxxxxx~caf~ear". Only one of the enlisted resources is allowed to be non two-phase commit compliant.
This error occurs when execute the readByCustomKey method. Just when i call From ParamConfiguratorService.
Can someone help me in this issue?
Regards
Marcos Brandao

not anwsered.

Similar Messages

  • All sorts of problems with yui based overlays that don't occur in FF3, Chrome and IE. I *hope* that css support is truly "beta"

    Sine this is public and our site isn't yet, can't provide a url. But I can share screenshots and I can supply a private access to a developer if wanted. Basically, I'm seeing alignment issues and overlays that should be hidden being visible. I also see overlays occur behind other divs they shouldn't. Doesn't occur in FF3,Chrome,IE7,8,9
    This could be a yui 3.3.0 related issue

    Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The helpers over there are more knowledgeable about web page development issues with Firefox. <br />
    http://forums.mozillazine.org/viewforum.php?f=25 <br />
    You'll need to register and login to be able to post in that forum.

  • "Error code 0xc000035a Attempting to load a 64-bit application, however this cpu is not compatible with 64-bit mode"  when I load Windows 7 [64bit] on an older iMac(with Parallels 6)? Any solutions that don't mean buying a new iMac?

    "Error code 0xc000035a Attempting to load a 64-bit application, however this cpu is not compatible with 64-bit mode" 
    when I load Windows 7 [64bit] on an older iMac(with Parallels 6)? Any solutions that don't mean buying a new iMac?

    You should probably post your question on the Parallels forums:  http://forums.parallels.com

  • Location tempInit (what is it?) Syntax errors 1084 & 1086 in lines that don't exist.

    I am getting the following errors:
    tempInit, Line 280
    1084: Syntax error: expecting identifier before true.
    tempInit, Line 280
    1086: Syntax error: expecting semicolon before dot.
    tempInit, Line 376
    1084: Syntax error: expecting identifier before false.
    tempInit, Line 376
    1086: Syntax error: expecting semicolon before dot.
    I don't know where tempInit is in the location and I especially don't know where lines 280 or 376 are because I only have 111 lines of actionscript!  I don't know where to start.
    Any help would be appreciated.

    Pardon my intrusion.  I thought I'd throw this in since oddly enough it just showed up in the General forum today about an hour before you posted... it might have some info to help (or not).
    http://forums.adobe.com/thread/1083272?tstart=0

  • Tutorial: Virtual Numpad on laptops that don't have one built-in

    Hi all! After getting so much good help from the people on Arch forums, I thought it was time to give back.
    You remember how on older laptops, you would hit numLock and a portion of your keyboard would become a numpad? (specifically, the 789uiojklm keys) Well, recently I got a new Lenovo Y40 and I never knew how much I loved having a numpad until I found that my new laptop didn't have one. Unfortunately, the Y40 does not come with this feature out of the box, but luckily, Arch Linux is on our side. I am going to tell you how I set up my own virtual numpad using tools that come built-in with X.
    Before we start, I should point out that everything I learned in order to do this was found here:
    https://wiki.archlinux.org/index.php/X_ … _Modifiers
    From the warnings section:
    It is possible (and, in fact, easy) to end up disabling some keys on your keyboard for the current X session while working with XKB. This includes modifiers, cursor arrows and Enter key, as well as C-A-Backspace and C-A-Fx combinations. Make sure you have some way to terminate the session without using your keyboard.
    While it is rare, changing XKB configuration can sometimes hang or crash X server. Make sure you can handle it. Having some way to killall X or reboot the host remotely may be a good idea.
    Stop xxkb, or any other layout switching applications. xxkb actively changes XKB state. Debugging both at the same time is not a good idea.
    And finally, be warned: it is very easy to get used to custom layout.
    If you want to learn more, that wiki article is the best available xkbcomp documentation for people who aren't X developers (lit. me). And with that, let's get started!
    Getting Set Up + xkb Background Info
    The first thing we will do is run the command
    xkbcomp $DISPLAY outfile.xkb
    This will spit out the code that represents the current keyboard layout. Our end goal will be to code in what we need into this file, and upload it back to the X server. I recommend editing this file in an editor with C/C++-style syntax highlighting, since it might prevent you from making syntactical errors.
    There are many sections to the .xkb file, but we will only concern ourselves with xkb_types, xkb_compatibility, and xkb_symbols.
    xkb_types lets you define types for each of the keys on your keyboard. For example, if you use Canadian Multilingual Standard (like I do) most of your keys are given the type "EIGHT_LEVEL_SEMIALPHABETIC". When a "special key" like ctrl, alt, caps lock, etc is pressed, in xkb_types, we map these modifiers to "LevelN", and different combinations will mean different things for different types. For 8-level-semialphabetic, no special keys pressed is "Level1", Shift is "Level2", etc.
    If we jump forward to xkb_symbols, and look at the keys, we see that each key is assigned a type, and an array. The first element in the array is what symbol the key represents for Level1, the second is the symbol for Level2, etc.
    Finally, xkb_compatibility allows us to set which keys turn on which modifiers (as well as other things).
    So with that, let's get started
    Editing the layout
    We will begin by editing the xkb_types section. First, we will pick an unused type from xkb_types (you could create your own, but it will be more work). It doesn't matter which type you picked, so long as none of your keys use it. Take down the name. Now delete the unused type, and in its place, copy paste the type that your keys used already. Finally, change the name of the copy to the type you deleted. For example, I deleted EIGHT_LEVEL_ALPHABETIC, copied and pasted EIGHT_LEVEL_SEMIALPHABETIC, and changed the name on the copy back to EIGHT_LEVEL_ALPHABETIC. Next, change the modifiers variable to accept NumLock. This is done by concatenating '+NumLock' before the semicolon. Lastly, we will bind it to a level. You can create a level, or simply pick one that you were not using, and add the line (where N is the desired Level)
    map[NumLock]= LevelN;
    Next, we will turn our attention to xkb_compatibility. Simply copy paste this code into the xkb_compatibility section, taking care to replace Scroll_Lock with the key you wish to use to toggle the numpad:
    interpret Scroll_Lock {
    virtualModifier= NumLock;
    action= LockMods(modifiers=NumLock);
    Now comes the more tedious part of editing the layout. For every key that is part of your virtual numpad, change the type to the copy we made earlier. (In my example, I would change EIGHT_LEVEL_SEMIALPHABETIC to EIGHT_LEVEL_ALPHABETIC). Finally, locate the Nth element in the array (indexing from 1) where N is the level you bound the NumLock modifier to in xkb_types. Replace this with the desired nunmpad key. For your convenience, here is a list of the numpad keys I used:
    KP_0
    KP_1
    KP_2
    KP_9
    KP_Add
    KP_Subtract
    KP_Divide
    KP_Multiply
    KP_Decimal
    For example, here is the entry for my 'u' key (note the KP_4):
    key <AD07> {
    type= "EIGHT_LEVEL_ALPHABETIC",
    symbols[Group1]= [ u, U, NoSymbol, NoSymbol, downarrow, uparrow, NoSymbol, KP_4 ]
    If you are wondering what to do if you want to bind numpad keys to your Fx keys, I added a note at the end of the post.
    Uploading the layout to the X Server
    And now the moment of truth. First, run
    xkbcomp myNewLayout.xkb
    This will NOT upload to the X Server yet; it will only compile the file and check its syntax. One cryptic error I got was because I used C-style /*block quotes*/. xkbcomp doesn't like these, but it doesn't mind //this kind of comment. If we have no errors, we can now upload with
    xkbcomp myNewLayout.xkb $DISPLAY
    Well, go ahead and try it out, there will almost surely be some really neat tweaks you can do.
    Extra Stuff/Notes
    When you hit Scroll_Lock (or whichever key it was you chose) it locks the new type we made to LevelN. This is why we went to the trouble of making a new type, so that the rest of the keyboard would not be locked in LevelN mode. For example, on my setup, I first tried this without creating a new type, and found that the rest of my keyboard was not behaving normally, since it was also bound to Level8 (my desired numpad level). So, I created a new type for my numpad keys so that the rest of the keyboard would still act in its usual manner even when I had the numpad on.
    If you're wondering, I bound KP_Multiply and KP_Divide to my F8 and F9 keys. However, I didn't need to change the type, since the level I chose (Level4) also caused the Fx keys to act normally (except if I rebound them). That is, before I changed anything, all the Fx had the corresponding Fx key bound to Level4. I simply changed the Level4 keybinds for F8 and F9. This meant that when I activated the virtual numpad, F8 and F9 were KP_multiply and KP_Divide, and the rest of the function keys were what they were usually.
    Hopefully, this tutorial won't only help you to make a virtual numpad, but maybe help some other newbies like me to further customize their system. And the Arch Wiki author is right, you really do get used to the new layout and it becomes frustrating to use other computers!
    Happy trails.
    - Marco
    Last edited by mahkoe (2014-11-02 12:17:49)

    Ikester wrote:
    Re: My laptops that don't have a linksys card, but built in wireless can stay connected to WEP
    OK since your security is set to WPA why do you want to go to WEP? DS? If everything is configured correctly you should not have to change anything. If you are connecting another device and forgot what your WPA setting were just go into the router and take a look see.
    1. I set up everything, its all fine and ok
    2. The DS can't connect to WPA, only WEP or Open
    3. I know what my WPA settings are and the codes to both settings

  • Error message when starting Firefox 8 that says: TypeError: Components.classes[TvtPwmComponent_CID] is undefined

    error message when starting Firefox 8 that says:
    TypeError: Components.classes[TvtPwmComponent_CID] is undefined
    I am using Window 7 64 bit

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    *Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • How to stop iphoto from recovering photos that don't exist?

    I just bought my iMac and transferred all my photos from my backup drive to the iphoto library. In organizing my photos I must have deleted photos or had some corrupted photos in the transfer. Now, every time I open iphoto is says it has recovered 75 or so photos, creates a folder for them, but it's empty. How do I stop it from trying to recovery photos that don't exist? I've searched and have found nothing. The folder generated by iphoto as a recovered folder is empty...

    Welcome to the Apple Discussions.
    Can you give me an idea of why this type of error occurred
    Because of a minor glitch when iPhoto failed to clean up after an import.
    why has this now corrected the error?
    iPhoto should remove that Importing Folder at the end of the importing session. When you launched iPhoto again it saw the folder and (incorrectly) assumed there was an import in progress. Removing the folder means that iPhoto won't make that assumption.
    There is no reason to assume that the problem wil recur.
    Regards
    TD

  • Ask small questions that don't deserve their own thread. [HUH?]

    I'm sure there are a lot of tiny questions that don't deserve their very own thread. Ask these here and somebody that hopefully knows what they're talking about will answer them!
    Here are mine:
    Restarting X (ctrl+alt+backspace) doesn't work with openbox. When I try to, on the vc I see the xorg log reporting an error about openbox already running. When I go to vc7 there's nothing there, so openbox did exit. How do I fix this?
    pm-util's resume from suspend doesn't work. It goes into suspend mode correctly, but when I resume the motherboard beeps 4 times and crashes. Diagnosing this is very difficult, given that I see no resume entries on the pm-util log, just the suspend entires. Where should I start?
    Last edited by verve (2008-09-09 00:08:55)

    verve wrote:Restarting X (ctrl+alt+backspace) doesn't work with openbox. When I try to, on the vc I see the xorg log reporting an error about openbox already running. When I go to vc7 there's nothing there, so openbox did exit. How do I fix this?
    Restarting x is handled by the session manager (KDM , GDM etc.)  without one, ctl-alt-backspace just stops X
    by the way.. isn't this what IRC is for?

  • HT201210 Can anyone tell me exactly what Error 23 is?! WHY does Apple assign an error # but then NOT explain what that is?! I'm trying to restore an iPhone 3G. Please help! Thx.

    I CANNOT restore my iPhone, so now I'm stuck with a useless iPhone because I can't complete Restore - because Error 23 keeps coming up! Ugh...it bugs the heck out of me, that Apple assigns an error number without explaining (a) what that IS, (b) taking or redirecting to a SPECIFIC troubleshoot page for THAT error. I've wasted lots of time doing all the stuff already suggested but Error 23 persists! Please help or I've just lost my lovely old-design 3G, which I really am loathe to give up for one of those ugly new boxy too-long slim things... (Which cost $200, 2 boot!)

    Thx BUT =as-said, I've tried ALL the suggestions - including reading through the link you just suggested/posted (but just for good measure, i've just re-read thru it again!). I noticed from this list the first time i read thru it, that Error 23 didn't appear anywhere on this list of various (numerous!) error numbers. So/ergo, i still don't know (a) what exactly this error IS, (b) how to fix/get past/resolve it.
    I don't have an Apple store anywhere near me. Even if I did, I wonder whether they would (a) be willing to (b) able to fix it @ the so-called Genius bar? Any thoughts on this? (Obviously, if there were an Apple store nearby, I'd go there & try; as-is, it would entail an extra trip & an expense costing as much as buying a new iPhone!)

  • I work with a Mac & I had to restore my computer for my time machine back-up.  When I attempt to open/edit a photo with either camera raw or photoshop I get the following error message: Error 150:30 , it also sys that licensing for the product has stopped

    I work with a Mac & I had to restore my computer for my time machine back-up.  When I attempt to open/edit a photo with either camera raw or photoshop I get the following error message: Error 150:30 , it also sys that licensing for the product has stopped working?

    Unfortunately when Adobe products are restored from backup, especial CS4 and especially Mac, it breaks licensing.
    There is a python script included in the license recovery kit that should work if you are familiar with Terminal.
    If not, you must reinstall your CS4 suite.  You don't need to delete your preferences, so it should be the same as before.
    Error "Licensing has stopped working" | Mac OS
    Gene

  • I have received the "licensing has stopped working" Error code 150:30. I have done all 8 suggested fixes and have had no luck fixing this mess. Anyone able to help.

    I have received the "licensing has stopped working" Error code 150:30. I have done all 8 suggested fixes and have had no luck fixing this mess. Anyone able to help.

    Great!
    Now in Terminal at the $ prompt type   sudo python <leave a space after that>  Do not press enter or return yet.
    Drag and drop "license recover.py" into the Terminal window, then press enter or return.
    You should see this result:    Confirm that you do.

  • I've purchased numerous books through itunes and now I'm unable to open ibooks; I get a "book format error, delete and redownload" which I've done numerous times with negative results.

    I've purchased numerous books through the itunes store in which I was able to read.  Now I'm unable to open some of the ibooks that I've purchased, I get an error message...book formate error, delete and redownload, which I've done numerous times with negative results.  What are my options?

    within the receipt that Apple sent to you via email is a Report a Problem link. use that link to report your issue.
    also you could try a basic reset and see if that resolves your issue. hold down the Lock button & Home button at the same time for ~15 seconds, the iPad should then perform a reset.

  • Error-RG23 Part-2 posting not yet done in MIRO

    Hi Expert,
    While doing MIRO, i am getting Error-RG23 Part 2 posting not yet done.
    While analysis, i came to know that, user did 101 and then 102 and then J1IEX in 2014.
    After that did new MIGO-101 in 2015 with same Excise Number-00917.
    When i go to J1IEX and enter Vendor Excise Invoice-00917, it shows 2 Lines 2013-In Process and 2014-Posted.
    So whether Error in MIRO is due to Excise Invoice for 2013
    If yes what activity can be done for Excise Invoice for 2013

    What ever the case, If the Material document is canceled through MIGO then Excise invoice has to be Posted and Canceled in J1IEX provided Part 1 and Part2 were captured earlier for the Excise invoice.
    Now in your case, Could you tell us whether you had posted Part 1 and Part 2 for the 101 Material document posted earlier in year 2013.
    If you had posted Part 1 and Part 2 then you have to Post the Excise invoice and Cancel the same in J1IEX. If not, the status would be In process always.If you do not want to cancel the Excise invoice, you only have the following options.
    1) Configure the message as a Warning Message for Certain user and ask the user to Post MIRO.
    2) change the status of the excise invoice in J_1IEXCHDR, J_1IEXCDTL, J_1IGRXREF.

  • I'm trying to add my airport express to my network. The airport utility shows a message that its gathering info about my network then suddenly an unexpected error message appears. Why is that?

    i'm trying to add my airport express to my network. The airport utility shows a message that its gathering info about my network then suddenly an unexpected error message appears. Why is that?

    Until Bob Timmons gets back to you, first decide what you would like the Express to do. I understand you want it for AirPlay remote speakers, which you can certainly do.
    I am assuming that you are not using an Apple AirPort router; if that's not the case stop here and let me know.
    If your existing router is not an Apple AirPort Base Station, the Express:
    can "join" an existing wireless network as a client, for the sole purpose of streaming music. If that's what you want to do, do not connect it to your router with an Ethernet cable.
    can "extend" an existing wired network to serve as an additional wireless access point, which can also stream music. If that's what you want to do, connect its WAN port to an available LAN port on your router using an Ethernet cable.
    Then, "hard reset" the Express according to the instructions below, and configure it. The prompts should be self-explanatory. If you run into trouble, describe which of the above two configurations you decided upon, and the point at which you're getting the "unexpected problem".
    To "hard reset" an AirPort Base Station: make sure it's powered up, then gently press and hold its tiny reset button. Don't apply any more force than required to feel a tactile click.  Keep it depressed for five to ten seconds, long enough for its LED to flash amber rapidly. Release the reset button. Then, the LED will glow amber steadily for about a minute. Then, it will flash amber, slowly, about once every second or two, waiting for you to configure it with AirPort Utility.

  • Floating Panels that don't go away on Minimize!?

    I've been painting away and pulled out the Layers and History Panels; so they're floating, so to speack. I then Minimised PS, using the Yellow Button. The window minimized, but the Layers and History Panels stayed on screen!!?
    So what caused that. is it an error, bug, or just something I've done?
    Regards
    Richard

    Hi and thanks for prompt reply!
    I have to use Hide.
    I didn't think the Panels would be treated as windows, quite strange!
    If you Minimize the Panels they are just reduced in size... so this Minimize related to PS.
    No major problem!
    thanks again!
    Richard

Maybe you are looking for

  • Bullets & Lists disabled

    Does anyone know how to enable Bullets & Lists in Numbers 3.1? When I go to the "Inspector", i.e., Format --> Text, all the control components within the Bullets and Lists section are disabled (i.e., grayed-out).  Does anyone know a way to enable the

  • How do I get the status bar for the link preview on the right side of the browser permanently?

    I'm specifically referring to [http://support.mozilla.com/en-US/kb/what-happened-status-bar#w_what-do-link-previews-look-like this]. Since the link preview pops up on the bottom left-hand side, it is hard to read when I have my bookmarks open. So I'm

  • Hyper V 2012 Backup - best practice

    I'm setting up a new Hyper-V server 2012 and I'm trying to understand how to best configure it for backups and restores using Windows Server Backup. I´ve 5 VMs running, everyone has their one iScsi drive. I would like to backup the VMs on a external

  • Thumbnail size images are not loading

    On some sites such as Myspace or Facebook or even the Images search on Yahoo, the thumbnail size do not load up at all. The browser will take longer than usual to load the page but when it finishes loading the images show up as a box with a question

  • How can I force the Disk Cache on with Apple Raid Card?

    I have an apple raid card in my mac pro that has now had it's battery fail twice. I don't really want to keep putting money into this and would rather just force the disk cache on and hope my UPS works, I don't use this box for real work anymore anyw