‎2010 Jun 17 8:13 AM
Hi,
Can we execute any SAP transaction using JCO? Iam using JCo3 .
I require to log all details while using JCo to interact with SAP system. does JCo support any logging .If yes,How can we perform / enable logging in JCo?
‎2010 Jun 17 12:00 PM
Hello friend,
"Can we execute any SAP transaction using JCO?"?
Technically speaking - yes. You can write a remote function module in ABAP backend wrapping your logic to call SAP transaction, such as "CALL TRANSACTION XXX". And call this FM in JCO.
" does JCo support any logging
Yes, too. You can do actual logging work in ABAP backend system. Use SLG0 and SLG1 to create and maintain application log object. You can find lots of "SBAL_DEMO_XX" in your system about how to use this object. Write your own remote function module in ABAP backend to do logging and call them in JCO.
Hope it helps.
Best Regards,
Jerry
‎2010 Jun 17 12:21 PM
Hi Jerry,
Can you please share give some code snippet to perform / enable logging. I am new to JCO and cannot find links for same.