‎2013 Aug 27 1:12 PM
Hi All,
We got a requirement where we need to provide the list of new entries for Devaccess key assigned to the users in sap so that the Abapper can create a report for us for daily monitoring..
‎2013 Aug 28 7:18 AM
There is no tool in your SAP system for that, this table is maintained in SAP in a handful of program (perform a where-used lookup) which perform some modify/update/insert statement.
So either add some code in implicit enhancement points (in an appended structure ?) or if Table Change Logs is active in your system (check system parameter rec/client in RZ11) change technical attributes of DEVACCESSKEY in SE13, and read information from DBTABLOG.
But usually this information can be read at http://service.sap.com/sscr, look in "My Company's Registrations", tab "Developers" and filter on column "Registration Date".
Regards,
Raymond
‎2013 Aug 28 1:22 AM
You can do this by event with a table maintenance generator...
Go to SE11 > DEVACCESS table > Table Maintenance Generator and create one.
So after screen and function group generation go to Enviroment > Modification > Events
Then click new entries, add a row of event type 05(new entry) and fill a form like ZNOTIFY...
So you can do anything do you want like call send mail function, trigger event etc.
I hope it helps...
‎2013 Aug 28 3:34 AM
Devaccess table entry is not created through table maintenance.
Entry is created there when developer tries to create/change a workbench object, system asks for access key for developer registration.
When entry is created through that popup, I don't think TMG events would be triggered.
‎2013 Aug 28 3:44 AM
Oh yeah... You're right.
I became confused and made a mistake.
Events of TMG are only triggered from TMG.
Sorry for that.
So I think you should look for a enhancement way...
‎2013 Aug 28 7:18 AM
There is no tool in your SAP system for that, this table is maintained in SAP in a handful of program (perform a where-used lookup) which perform some modify/update/insert statement.
So either add some code in implicit enhancement points (in an appended structure ?) or if Table Change Logs is active in your system (check system parameter rec/client in RZ11) change technical attributes of DEVACCESSKEY in SE13, and read information from DBTABLOG.
But usually this information can be read at http://service.sap.com/sscr, look in "My Company's Registrations", tab "Developers" and filter on column "Registration Date".
Regards,
Raymond