cancel
Showing results for 
Search instead for 
Did you mean: 

how to check trace log in sap

Former Member
0 Kudos

Dear all ,

in my company one of sap user change in item description in sap so please suggest me how can i cheack which user change the the following item descrition

kindlyy repaly as sson as possible

With warm regards

Pritpal Mehru

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

hello, friend.

were you referring to changes in material description in the sales order? if so, go to VA02 or VA03. then on the main menu go to ENVIRONMENT and click on CHANGES. you should be able to see who changed what and when.

if you are referring to the material master, go to MM02 or MM03, then do ENVIRONMENT and click on Display Changes.

regards.

Answers (4)

Answers (4)

Former Member
0 Kudos

correct ans of mm04

thankx with regards

Pritpal

Former Member
0 Kudos

hi

Former Member
0 Kudos

SQL Trace transaction ST05

SQL Trace transaction ST05: The trace list has many lines that are not related to the SELECT statement in the ABAP program. This is because the execution of any ABAP program requires additional administrative SQL calls. To restrict the list output, use the filter introducing the trace list.

The trace list contains different SQL statements simultaneously related to the one SELECT statement in the ABAP program. This is because the R/3 Database Interface - a sophisticated component of the R/3 Application Server - maps every Open SQL statement to one or a series of physical database calls and brings it to execution. This mapping, crucial to R/3s performance, depends on the particular call and database system. For example, the SELECT-ENDSELECT loop on a particular database table of the ABAP program would be mapped to a sequence PREPARE-OPEN-FETCH of physical calls in an Oracle environment.

The WHERE clause in the trace list's SQL statement is different from the WHERE clause in the ABAP statement. This is because in an R/3 system, a client is a self-contained unit with separate master records and its own set of table data (in commercial, organizational, and technical terms). With ABAP, every Open SQL statement automatically executes within the correct client environment. For this reason, a condition with the actual client code is added to every WHERE clause if a client field is a component of the searched table.

To see a statement's execution plan, just position the cursor on the PREPARE statement and choose Explain SQL. A detailed explanation of the execution plan depends on the database system in use.

Starting the Trace:

To analyze a trace file, do the following:

...

Choose the menu path Test  Performance Trace in the ABAP Workbench or go to Transaction ST05. The initial screen of the test tool appears. In the lower part of the screen, the status of the Performance Trace is displayed. This provides you with information as to whether any of the Performance Traces are switched on and the users for which they are enabled. It also tells you which user has switched the trace on.

Using the selection buttons provided, set which trace functions you wish to have switched on (SWL trace, enqueue trace, RFC trace, table buffer trace).

If you want to switch on the trace under your user name, choose Trace on. If you want to pass on values for one or several filter criteria, choose Trace with Filter. Typical filter criteria are: the name of the user, transaction name, process name, and program name.

Now run the program to be analyzed.

Stopping the Trace:

To deactivate the trace:

...

Choose Test Performance Trace in the ABAP Workbench. The initial screen of the test tool appears. It contains a status line displaying the traces that are active, the users for whom they are active, and the user who activated them.

Select the trace functions that you want to switch off.

Choose Deactivate Trace. If you started the trace yourself, you can now switch it off immediately. If the performance trace was started by a different user, a confirmation prompt appears before deactivation-

Analyzing a Sample trace data:

PREPARE: Prepares the OPEN statement for use and determines the access method.

OPEN: Opens the cursor and specifies the selection result by filling the selection fields with concrete values.

FETCH: Moves the cursor through the dataset created by the OPEN operation. The array size displayed beside the fetch data means that the system can transfer a maximum package size of 392 records at one time into the buffered area.

RFC Trace Analysis

Use

Using the RFC trace, you can track which remote calls of your application, or the SAP System are executed and on which instance these calls are executed. You can display and analyze the logged trace records in the trace file.

http://help.sap.com/saphelp_nw04/helpdata/en/5a/ace298ca0211d194b500a0c94260a5/content.htm

Reward if usefull

Former Member
0 Kudos

Hi,

Go to transaction ST05 and activate the trace.

Reward if helpful

Regards

Ravi