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.
Hi Vincent,
> If an ABAP program and a Java apps access the same DB
> table,
short answer: they don't. It's forbidden. Completely. No sharing of tables.
> Or there wont be such situation because there are
> separate schema for ABAP stack and Java stack?
Correct. Every stack has it's own schema. If you want to access ABAP data you got to use BAPI/RFC.
Regards,
Benny
Add a comment