on ‎2020 Mar 10 11:32 AM
Hi
I want to know equivalent transaction code for AUT10 in SAP S/4 Hana. Can anybody throw light on this,please?
With Regards,
Request clarification before answering.
AUT10 is available in S/4HANA.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It should be clear when you just read the long text of AUT135 message:
Short Text
New audit trail function active, old audit trail not performed
Diagnosis
Your system already uses the new audit trail function.
System Response
The functions of the old audit trail can no longer be executed.
Procedure
Use the new functions, especially the following transactions:
The message and the new audit trail log is not related to S/4HANA as such but more to Netweaver version and the audit trail version activated. It looks like your system is already running new audit trail functionality.
Best regards
Dominik Tylczynski
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is where the message AUT-a135 is raised. So check the table AUT_C_TABLOG
SELECT COUNT(*) FROM aut_c_tablog
INTO lv_db_entries. "#EC CI_NOWHERE
IF lv_db_entries > 0.
* New audit trail fuctionality active, old audit trail
* functionality can't be executed
ev_new_audit_trail_in_use = abap_true.
MESSAGE a135(aut).
RETURN.
ENDIF.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
When give AUt10,I am getting below message
New audit trail function active, old not performed
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 46 | |
| 27 | |
| 17 | |
| 6 | |
| 3 | |
| 3 | |
| 2 | |
| 1 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.