Can ABAP program and a Java apps access the same DB table?

If an ABAP program and a Java apps access the same DB table, how does the Enqueue services from ABAP and Java communicate with each other to ensure locking consistency (if they even communicate with each otehr at all)?
Or there wont be such situation because there are separate schema for ABAP stack and Java stack?
Your help is greatly appreciated.

Hello!
A while ago I was a subject to criticism too for not granting points to helpfull answers. I appeared to be ungratefull, but I'm actually not (I guess the same goes for Vincent). I absolutely agree that good people who provide helpfull answers deserve (at least) points, but I didn't quite get the whole idea with points untill I was explicitly warned. I took some time to correct this and I granted points for all my past questions, generously, with "interest rates" for waiting.
My point is:
The pointing system is good, but unintuitive and not documented. I suggested this at that time, and I see that nothing has changed since. I see also that I'm not the only one who has experienced missunderstandings.
I repeat the message to SDN people: Please provide some info on pointing system! A few sentences behind a "What's this?" link would do. It's not such a hard work.
Thanks!
Kind regards,
Igor Barbaric

Similar Messages

  • Seperate Java Apps accessing the same table

    I have 2 Java applications running independently that will be modifying the same table simultaneously. I am trying prevent the programs from "stepping on each others toes" for lack of a better term. I only want one program to be able to work on this table at a time.
    I thought I could somehow use the sql LOCK TABLE command but I wouldn't know how to check to see if a table is locked and prevent one program from proceeding
    ie:
    While (TABLE IS LOCKED)
    //wait
    doupdates();
    Is there some other mechanism I can use to accomplish this. As I said before, these programs are running independently, the only thing they share is the table they are updating.

    Once you execute LOCK TABLE then the table is locked untill you unlock it.
    If there was another program which has the lock on the table by the time you invoke LOCK TABLE then the LOCK TABLE call will block until the other program release the lock.
    There is no need to check.

  • I am new to ios & using 5C. I want to know where is all the media (Images, videos, Audio etc) received through Whatsapp are saved after downloading in Iphone. And also how to access the same.

    I am new to ios & using 5C. I want to know where is all the media (Images, videos, Audio etc) received through Whatsapp are saved after downloading  in Iphone. And also how to access the same.

    These are user to user forums.  You ARE NOT addressing Apple by posting here.
    Also, why are you YELLING at us??  Stop using ALL CAPS.
    What steps have you done to try and fix the problem?

  • HT1947 can the remote app access the same iTunes library while paired from 2 different iPhones

    my husband and I want to use the remote app on each of our respective iPhones to access the same iTunes library via AppleTV.  is this possible?

    how do i do that?  it's already working on mine, and he just loaded the remote app on his iphone and set up home sharing with my apple ID.  However, when he tries to add my iTunes library, it gives him a code but I can't see his iphone device name so we can't pair his iphone. 

  • Can i listen to i tunes and use another app at the same time on ipad 4 ?

    I've been trying to figure out how to listen i tunes, or listen to music on a web music site, and play a game at the same time, is that possible to do on an iPad 4 ?

    I can listen to Tunein Radio and play Coin Dozer and Burst Bubble at the same time.
    I can also play music on iTune an play Coin Doser and Bubble Burst at the same Time.

  • Can Logic Pro and Logic Express coexist on the same computer?

    Hi all,
    I'm a fairly new user to logic. I started with Logic Express to test the water with it before committing to the Logic Pro. I decided I like it enough and have since purchased the Logic Pro upgrade.
    My machine is a MacBook. This machine travels with me, so I am rather concerned about having to maintain a dongle when I am on the move.
    Ideally, I would like to have both Logic Express and Logic Pro coexist on the same machine. That way, when I can reserve the use of Logic Pro for when I am in a stable environment but still be able to use Logic Express when moving around. Granted this would be with reduced functionality, but the peace of mind is worth that to me.
    So does anyone here know if this is possible and can direct me to some instructions on how to accomplish this?
    Thanks!!
    Darth Vanva

    I'd LOVE to be able to enable two simultaneous instances of Logic to accomplish what I want, but AFAIK that's an impossibility (unless a guru-whiz-type like Justin has some ideas on this...).
    OK, here's the deal...
    I have 6 gigs of RAM now. While using Logic I can access up to 3G for samples. If I could somehow run another copy of Logic on the same computer (acting solely as a host for additional plugs, not for sequencing) then I'd gladly buy 2 more gigs of RAM so that the second instance of Logic could address 3G more. I'd still have 2G left for system headroom.
    And there would be an additional (if not hypothetical) benefit to doing this...
    Right now I can run stand-alone instruments outside of Logic (accessed via IAC) in an effort to overcome the 3G limit. But take GPO for example: I can only run 1 instance of it. And, there is no provision for saving any edits or custom made instrument sets in the stand-alone version. So not only would I be limited to 8 individual instrument slots in the lone GPO player, I wouldn't be able to save any custom programming. So much for recall... And of course, EXS is not a stand-alone plug so there's no way I could use it outside of Logic.
    BUT... if I had this second instance of Logic running and treating it as a plug-in host, I'd be able to run multiple copies of plugs (just like I'm used to) and never have to deal with any stand-alone players. And of course by saving its song file I thus save all of my custom programming.
    So yeah, it would be fantastic if I could run a second instance of Logic on the same computer. Theoretically.
    Message was edited by: iSchwartz

  • Obiee 11g and custom j2ee app using the same cookie name

    Hi,
    I wrote a same j2ee web application. i'am using authentification through a realm configured in the web.xml.
    This web app is deployed in the same weblogic than obiee 11g. What i want to do is to embed my application in a dashboard using an iframe tag, and use the same login from analytics to my custom web app.
    In this article http://docs.oracle.com/cd/E11035_01/wls100/security/thin_client.html#wp1039551, it is said that by default, all web apps in the sames weblogic server are using the same cookie name so that they share authentification between them. However, i have read in the web that analytics in obiee 11g is using a cookie with the name "ORA_BIPS_NQID".
    In the weblogic.xml of my custom application, i set the cookie-name parameter to ORA_BIPS_NQID. However, in the dashbord, it still prompt for authentification to my custom web app.
    How can we share authentification between analytics and a custom web app in the same weblogic ?
    NB : I dont want to pass the username et password through the url.
    Thanks.

    By default, if you don't specify a cookie-name in the weblogic.xml configuration file, the weblogic server create a cookie named JSESSIONID for your application. For exemple, if two applications use the default configuration, both of them will use the same cookie name which is JSESSIONID. In this case, when you log in the first application, your are automaticaly logged in the second application with the same credentials. I have already test this kind of integration and it works perfectly. You only need that the two applications are deployed in the same weblogic server.
    Now, i want to have the same behaviour between obiee 11g and my custom application deployed in the same weblogic server. I read somewhere in the web that obiee 11g presentation service (analytics) is configured with a cookie-name value = "ORA_BIPS_NQID". So in the weblogic.xml configuration file of my web app, i specify a cookie-name value = "ORA_BIPS_NQID" to have the same cookie-name between the two application. But, it still not work. It prompt for authentification in the dashboards.
    I now, that such an integration is possible, because the other bi applications (mapviewer, bipublisher,...) are actually other web applications. However when using, for exemple, maps in dashbords, the mapviwer application automaticaly user the credentials of the user connected in analytics.

  • Portal 7.x and 8.x app in the same domain

    Here's the deal.
    I am developing a brand new Portal 8.1 app. At the same time, I am upgrading a
    Portal 7.x app. The requirement is that they both run on the same domain, and
    preferably as two desktops. How do I do this? Can they share the same webapp within
    an application, or do they need to be separate webapps? Any dB issues that I need
    to worry about?
    Thanks
    Kunal

    Yes, it saves a lot of grief, providing all servers are equally secure of
    course...
    On Mon, 8 Dec 2003 18:43:29 -0800, "Carl" <[email protected]> wrote:
    Very cool. How does it work under the covers? The two WLS domain talk with
    each other? So, the following would work:
    o We have a WLS 7 domain
    o The domain uses RDBMSRealm
    o We created a new WLS 8 domain
    o We set-up the trust
    o Now, we login in to app on 8 domain, and it checks the 7's realm?Not quite - 8 still needs its own realm. The subjects (users and groups)
    have to exist in both realms - 8 will just be taking 7's word for it that
    "fred" has been authenticated but will still need to check fred's group
    and/or role mappings.
    The same realm data needs to exist for both systems. In LDAP it would be
    easy enough to point them both at the same directory but.for a database
    there is less control over the mappings - any differences between RDBMSRealm
    and 8's RDBMSAuthenticator (unless you want to run compatibility security)
    schemas might cause problems. I believe running the latter on both should
    work but in principle the schema could change in a later version of the
    product.
    >
    "Alex Thomas" <[email protected]> wrote in message
    news:[email protected]..
    See "Enabling Trust Between WebLogic Server Domains" section in
    http://e-docs.bea.com/wls/docs81/secmanage/domain.html#1140940
    This works between 7 and 8 (and, using the system account, on 6.1).
    cheers
    Alex
    On Fri, 5 Dec 2003 10:22:29 -0800, "Carl" <[email protected]> wrote:
    You can make the 7 domain trust the 8 domain so users don't have to log
    in
    twice, but you can't run the two versions in the same domain (not agreat
    deal of benefit in doing so, once trust is sorted).How we do make 7 domain trust the 8 domain?

  • Can a vodcast and a photocast run at the same time ?.

    Hi,
    I would like have a video podcast play and a photocast run at the same time is this feasible?
    Geoff

    Since they're different apps and there's no way to sync something like that: no. Sounds like you could just do a video slideshow to me. That's supported by all major video creation apps.
    -S

  • Can I save and open an attachemnt at the same time?

    I want to be able to open an email with an attachement or attachments and click on the save button for the attachment(s), designate the location (folder) where they are to be saved - but also tell Mail to save the attachments then open them up on the desktop. Two operations in one. If you understand my request you understand what you have to do now - two separate steps. Save. Then find the saved files and open them.
    OR
    Open the attachment from the email which then downloads the file to your designated "all-purpose" location (not the ultimate location you'd want to save it). Then once you've seen it, you do the save thing with the original mail attachment and then have to go back and delete the file from the designated all-purpose download location.
    This latter problem of having to delete unedited downloads manually could be solved with an option in Mail preferences to automatically delete unedited downloads in the "all-purpose" location after that same attachment had been downloaded to another specific location on your hard drive. This option for deleting unedited downloads does not exist, however.
    But even if this step-saver option existed in the preferences, you still would not be able to tell your Mac to save a particular Mail email attachment to a particular folder AND open that attachment at the same time in one command.
    That's what I want.
    Maybe I want both. Save and open together plus the ability to automatically delete unedited attachment downloads in the "all-purpose" download file after the same attachment has been downloaded to another specific location on your hard drive.

    with IOS 6 yes you will be able to do that

  • Access two EAS with different Essbase versions and different java versions from the same p.c.

    Hi,
    I need to regularly access Essbase 11.1.2.2. and Essbase 11.1.2.3 EAS from the same client machine.
    They are on, and must be on, different versions of java, is there a way to have both versions of java installed but each using the correct version and without the two java versions causing any kind of problems?
    thanks,
    Robert.

    Hi Robert...  I assume this is web-launched?
    I spent a day or so trying understand the intricacies of the JNLP protocol and create shortcuts that will invoke web-launched EAS with the appropriate version of Java.  I can get one version of EAS to use the 1.6 Java Web Launcher, and the other version of EAS to use the 1.7 Java Web Launcher - but both Web Launchers eventually invoke the same version of Java!  There are switches in the JNLP syntax that seem like they should allow you choose the actual Java version that gets invoked, but I just could not make it work.
    You can use the Java Control Panel (in Control Panel) to enable and disable the relevant versions before launching EAS.
    If you find otherwise I would love to know (or if you find out how to control which versions are enabled or disabled via command-line script).

  • Can i use both the ibook and kindle ebook apps on the same ipod?

    I have the ibook ebook app on my ipod touch at the moment which i love and use a lot but one of my favourite authors has started releasing her ebooks only for kindle devices. Can i install the kindle ebook app on my ipod as well as the ibook app without the two interfering with each other?

    as well as Barnes & Noble's Nook app, Sony's ereader, Kobo, and a dozen or more additional ereaders.
    If reading PDFs, I like "GoodReader" as it has the ability to re-render the text to a larger font size that is earier to read on an iPod Touch.

  • How can my wife and I add photo to the same photo stream with different apple ID's?

    My Wife and I are having  baby and we would like to both be able to add photos to her shared "baby" photostream.  We have different apple ID's.  Is this possible and how can we do it?
    Thanks!

    No, you would have to share the same apple id.  FAQ photostream http://support.apple.com/kb/HT4486
    You could do this have your wife import the pics to the computer http://support.apple.com/kb/HT4083 , then you can sync those pics to your phone using itunes.
    Or use dropbox, there should be an app.

  • Can 7.1 and 8 be installed on the same computer without conflict?

    I wrote a program in Labview 8.0 and want to run it on a computer that already has 7.1 (this computer has a lot of programs that we don't want to have to upgrade).  Saving as a previous edition created 5 pages worth of compatability errors.  Is it possible to simply install 8.0 in addition to 7.1 on the same computer without either program interfering with the other?  We use a DAQ card and GPIB.

    As Blair said, yes you can have multiple versions installed.
    You simply have to remember 2 important things:
    1.  Keep backups of the appropriate versions of vi's.
    2.  Remember to right-click on the vi and select Open With > select appropriate LV version.
    Instead of 2 (above), you can always start LV first and open the vi's from within it.
    RayR

  • Can you transfer music from one app to the same app on a different device?

    I have an app called HCO playlist and it lets you download the current playlist and as the playlist changes you cant redownload the previous playlist but you keep the songs you downloaded and on my iPod 4th gen. I was wodering if there was anyway if i could transfer the songs from the app on my iPod to the same app on my iPad mini.

    Only if that app allows that option. There is nothing natively on the iPod to do that.

Maybe you are looking for

  • 1st Generation iPod Updating to 2.2 (Speakers)

    One question before i upgrade. Will I get the speaker feature that the second generation has??

  • Has anyone had issues with texting between your iPhone and your iPad 2?

    If I send a text message from my iPad 2 and my iPhone 4 to someone it sometimes creates two different text feeds in my friend's phone.  So it shows two different text "groups" in their iPhone.  If they reply on one of them I don't get the messages. 

  • Unable to use Client

    Hi, I am using J2EE server. I have deployed an application on th server, now I want it to bused over the network. How can I do this. Please help me. My application is running properly on the same machine but I am unable to use it on the network. How

  • Why can't I drag and drop music files into itunes logo anymore??

    I used to be able to drag and drop files into itunes logo and it would show p! now i cant? Big stop sign logo! I have to go to file and import from file! why???

  • Updating Time from NIST to Pacific Daylight Time

    I'm a newbie to Java and I'm trying to finish my final project in my Java class. Our project consists of setting up an ODBC and downloading data from a website and saving it to a text file that includes the current time from NIST. The specs ask for: