Application Development 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: 

List of Transactions accesed by a particular user in a month

Former Member
0 Kudos

Hi All,

I want to find the list of Transactions accesed by a particular user in a particular time period(say for last month).I tried in ST03N,Expert mode>Total>Month>Transaction Profile>Find

Then,I try to check for the particular user,it is throwing 'no value found' since there is no user id column.

Please help me on this.

Thanks & Regards,

Gopi L.

7 REPLIES 7

Former Member
0 Kudos

> ST03N,Expert mode>Total>Month>Transaction Profile>Find

ST03N,Expert mode>Total>Month>User and Settlement Statistics>User Profile--> Find....

Cheers,

Julius

0 Kudos

Hi,

I tried in that way also,but when i put user id in the find,it is giving some data like number of steps,

T response time etc,but not the transaction code.

Thanks & Regards,

Gopi L.

0 Kudos

The system aggregates the data because it contains personal data about the users, and in some countries there are legal requirements to protect this if it is not anonymous...

You have to pass the security check to be able to display the non-aggregated data...

  IF summary_only IS INITIAL.
* Authority check and anonymizer
    AUTHORITY-CHECK OBJECT 'S_TOOLS_EX'                     "#EC NOTEXT
                    ID 'AUTH' FIELD 'S_TOOLS_EX_A'.         "#EC NOTEXT

    IF sy-subrc <> 0.
* Anonymizer......................................................................
      CALL FUNCTION 'SWNC_AGGREGATES_ANONYMIZER'
        TABLES
          dbprocs          = dbprocs
          extsystem        = extsystem
          tcdet            = tcdet
          memory           = memory
          tablerec         = tablerec
          usertcode        = usertcode
          userworkload     = userworkload
          rfcclnt          = rfcclnt
          rfcclntdest      = rfcclntdest
          rfcsrvr          = rfcsrvr
          rfcsrvrdest      = rfcsrvrdest
          hitlist_database = hitlist_database
          hitlist_resptime = hitlist_resptime
          astat            = astat
          ashitl_database  = ashitl_database
          ashitl_resptime  = ashitl_resptime
          orgunit          = org_units
          webc             = webc
          webcd            = webcd
          webs             = webs
          websd            = websd.
    ENDIF.

  ENDIF.

Cheers,

Julius

0 Kudos

Hi,

Is there any possibility to link with SAP version,like for SAP 4.6 C and ECC 6.0 because when i checked in SAP 4.6 C, i did not get the desired output.But when i checked in ECC 6.0(ST03N > Expert mode>Total>Month>User profile),am getting a new column (ABAP Instance name)which includes transactions.Please help me on this.

Thanks & Regards,

Gopi L.

0 Kudos

Hi,

Is there any report through which we can find the list of activity/reports/transactions exceuted by a user in a period of say 1 month or 3 months

please let me know

Regards

SM

0 Kudos

>

> Hi,

>

> Is there any possibility to link with SAP version,like for SAP 4.6 C and ECC 6.0 because when i checked in SAP 4.6 C, i did not get the desired output.But when i checked in ECC 6.0(ST03N > Expert mode>Total>Month>User profile),am getting a new column (ABAP Instance name)which includes transactions.Please help me on this.

>

>

> Thanks & Regards,

> Gopi L.

This should work. Check and change your layout, make sure "User in ABAP System" column name is included.

0 Kudos

Yes, it looks like a Rubic Cube...