Question:
When we read this performance data we can see that there are different "transaction types" 01 is a dialog transaction, 02 is a transaction performed in an update task, 04 is a background task and FE is RFC.
But what is 08?
This may be more of a basis question but I think that security and controls people look at this a lot so perhaps you can help.
Answer:
Meanings of code
WHEN '01'.
item-text = '01 - Dialog'.
WHEN '02'.
item-text = '02 - V1 Update'.
WHEN '03'.
item-text = '03 - Spool'.
WHEN '05'.
item-text = '05 - Enqueue'.
WHEN '06'.
item-text = '06 - Buffer Sync'.
WHEN '07'.
item-text = '07 - Cyclic Background ABAP'.
WHEN '08'.
item-text = '08 - V2 Update'.
WHEN 'FD'.
item-text = 'FD - ALE'.
WHEN 'FE'.
item-text = 'FE - RFC Call'.
WHEN '04'.
item-text = '04 - Batch Process'.
WHEN '99'.
item-text = 'Calls to Other Systems'.
WHEN OTHERS.
item-text = 'Other'.
Answer:
Thanks