Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Devaccess Table new entry update notification

former_member204204
Active Participant
0 Likes
2,813

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..

1 ACCEPTED SOLUTION
Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,661

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

4 REPLIES 4
Read only

Former Member
0 Likes
1,661

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...

Read only

0 Likes
1,661

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.

Read only

0 Likes
1,661

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...

Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,662

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