Oracle 10g Performance Case Studies

Size: px
Start display at page:

Download "Oracle 10g Performance Case Studies"

Transcription

1 Oracle 10g Performance Case Studies Martin Frauendorfer Technical Support Consultant, SAP AG 1

2 Table of Contents. Overview Enqueue Analysis Runtime Analysis I/O Analysis Comparison Analysis Summary SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 2 2

3 1. Overview Intension Oracle 10g provides plenty of new features and possibilities in the area of performance analysis, e.g.: Active Session History Automatic Workload Repository Advisors Improvements in the wait event area Improvements in the SQL optimization area This presentation intends to show some real-life examples of how Oracle 10g features can effectively support the analysis and resolution of performance problems. With Oracle <= 9i DBAs often had to say: Sorry, this problem happened before but not any longer there s no way I can analyze it now. With Oracle 10g DBAs can often determine the root cause even if the error situation no longer exists. SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 3 3

4 1. Overview The following case studies are part of this presentation: Enqueue Analysis: Shows how to determine details for a past enqueue wait situation Runtime Analysis: Shows how to determine details for a past long running transaction I/O Analysis: Shows how to determine detect bottleneck situations in the I/O area Comparison Analysis: Shows how to compare different time frames in terms of Oracle performance SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 4 4

5 2. Enqueue Analysis (1) A check for the distribution of relevant Oracle server time revealed: SELECT EVENT, TOTAL_WAITS, TIME_WAITED, AVG_MS, ROUND(RATIO_TO_REPORT(TIME_WAITED) OVER () * 100) PERCENT FROM ( SELECT SUBSTR(EVENT, 1, 30) EVENT, TOTAL_WAITS, TIME_WAITED, ROUND(TIME_WAITED_MICRO / TOTAL_WAITS / 1000, 2) AVG_MS FROM V$SYSTEM_EVENT WHERE WAIT_CLASS!= 'Idle' AND EVENT NOT IN ('db file parallel write', 'log file parallel write', 'log file sequential read', 'control file parallel write', 'control file sequential read', 'Log archive I/O') UNION SELECT 'CPU' EVENT, NULL, VALUE, NULL FROM V$SYSSTAT WHERE STATISTIC# = 12 ORDER BY 3 DESC) WHERE ROWNUM <= 10; 16 % of the time spent waiting for TX enqueues! EVENT TOTAL_WAITS TIME_WAITED AVG_MS PERCENT db file sequential read , , enq: TX - row lock contention , , CPU 0, ,00 9 log file sync , , db file scattered read , , read by other session , , Datapump dump file I/O , , direct path write temp , , direct path read temp , , SQL*Net message to client , , SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 5 This check is a very useful step to get a first impression what happens inside a database in terms of performance. The EVENT NOT IN condition is necessary because some events are additional idle events from an SAP perspective. The new Oracle 10g categorization WAIT_CLASS = Idle was used in order to make sure that uncritical idle wait events are not considered. The results indicate that, since database startup, 16 % of the relevant Oracle server time was caused by TX enqueues. This is much more than we usually want to see and can have significant impact on the database performance for specific transactions or during specific time frames. 5

6 2. Enqueue Analysis (2) In the following we check when there was an enqueue peak time: SELECT TO_CHAR(END_INTERVAL_TIME, 'YYYY-MM-DD HH24:MI:SS') END_INTERVAL_TIME, TOTAL_WAITS, TIME_WAITED_MICRO, ROUND(DECODE(TOTAL_WAITS, 0, 0, TIME_WAITED_MICRO / TOTAL_WAITS / 1000), 2) AVG_WAIT_MS FROM ( SELECT HSS.END_INTERVAL_TIME, HSE.EVENT_NAME, HSE.TOTAL_WAITS - LAG(HSE.TOTAL_WAITS, 1) OVER (ORDER BY HSS.SNAP_ID) TOTAL_WAITS, HSE.TIME_WAITED_MICRO - LAG(HSE.TIME_WAITED_MICRO, 1) OVER (ORDER BY HSS.SNAP_ID) TIME_WAITED_MICRO FROM DBA_HIST_SYSTEM_EVENT HSE, DBA_HIST_SNAPSHOT HSS WHERE HSE.SNAP_ID = HSS.SNAP_ID AND HSE.EVENT_NAME = 'enq: TX - row lock contention ORDER BY HSS.SNAP_ID DESC ) WHERE TOTAL_WAITS >= 0; END_INTERVAL_TIME Peak on 9th of May in the afternoon! TOTAL_WAITS TIME_WAITED_MICRO AVG_WAIT_MS :00: :00: :00: :00: :00: :00: :00: :00: :00: :00: :00: :00: :00: :00: :00: :01: :01: SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 6 DBA_HIST_SYSTEM_EVENT can show you (per default) on an hourly basis which wait events were active, to what extent, and with which average wait time. Between 3 and 5 p.m. on 9th of May there is an obvious peak in total and average wait time for TX enqueues. So we should now focus on this time frame. 6

7 2. Enqueue Analysis (3) Now let s see which enqueue waits happened during the peak time: SELECT TO_CHAR(ASH.SAMPLE_TIME, 'YYYY-MM-DD HH24:MI:SS') SAMPLE_TIME, ASH.SESSION_ID, ASH.BLOCKING_SESSION, O.OBJECT_NAME, S.SQL_TEXT FROM DBA_HIST_ACTIVE_SESS_HISTORY ASH, DBA_HIST_SQLTEXT S, DBA_OBJECTS O WHERE ASH.SQL_ID = S.SQL_ID (+) AND ASH.CURRENT_OBJ# = O.OBJECT_ID (+) AND ASH.EVENT like 'enq: TX - row lock contention' AND ASH.SAMPLE_TIME BETWEEN TO_TIMESTAMP(' :30:00', 'dd.mm.yyyy hh24:mi:ss') AND TO_TIMESTAMP(' :30:00', 'dd.mm.yyyy hh24:mi:ss') AND ASH.SESSION_STATE = 'WAITING' ORDER BY SAMPLE_TIME DESC; SAMPLE_TIME Many waits for REPOSRC, Some waits for DDFTX and one wait for a LOB Blocking sessions are 1110 and 1022 SESSION_ID BLOCKING_SESSION OBJECT_NAME :56: , ,00 REPOSRC :56: , ,00 REPOSRC :56: , ,00 REPOSRC :56: , ,00 SYS_LOB :56: , ,00 DDFTX~ :56: , ,00 DDFTX~ :56: , ,00 REPOSRC :56: , ,00 REPOSRC :56: , ,00 REPOSRC :56: , ,00 REPOSRC :56: , ,00 REPOSRC :56: , ,00 REPOSRC :56: , ,00 REPOSRC :56: , ,00 REPOSRC :56: , ,00 REPOSRC... SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 7 DBA_HIST_ACTIVE_SESS_HISTORY contains information about active sessions on a 10 seconds basis for the last 7 days. It is a history view for V$ACTIVE_SESSION_HISTORY where information about active sessions is stored on a 1 second basis for the last few hours. 7

8 2. Enqueue Analysis (4) What s the big picture of the Oracle enqueue wait situation? Session 1110 Holds lock on DDFTX Session 1022 Waits for DDFTX lock Holds lock on REPOSRC Other blocked sessions Is this a static situation? What is session 1110 doing? Other blocked sessions SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 8 8

9 2. Enqueue Analysis (5) Let s check the lock holders in the relevant time frame: SELECT TO_CHAR(ASW.SAMPLE_TIME, 'YYYY-MM-DD HH24:MI:SS') SAMPLE_TIME, ASW.BLOCKING_SESSION SESSION_ID, COUNT(*) "#WAITERS", ASH.BLOCKING_SESSION, ASH.TIME_WAITED, DECODE(ASH.SESSION_STATE, NULL, 'INACTIVE', 'WAITING', ASH.EVENT, 'CPU') ACTION, TO_CHAR(SUBSTR(HST.SQL_TEXT, 1, 4000)) SQL_TEXT FROM DBA_HIST_ACTIVE_SESS_HISTORY ASH, DBA_HIST_ACTIVE_SESS_HISTORY ASW, DBA_HIST_SQLTEXT HST WHERE ASH.SQL_ID = HST.SQL_ID (+) AND ASH.SAMPLE_TIME (+) = ASW.SAMPLE_TIME AND ASH.SESSION_ID (+) = ASW.BLOCKING_SESSION AND ASW.EVENT = 'enq: TX - row lock contention' AND ASW.SESSION_STATE = 'WAITING' GROUP BY TO_CHAR(ASW.SAMPLE_TIME, 'YYYY-MM-DD HH24:MI:SS'), ASW.BLOCKING_SESSION, ASH.BLOCKING_SESSION, ASH.TIME_WAITED, DECODE(ASH.SESSION_STATE, NULL, 'INACTIVE', 'WAITING', ASH.EVENT, 'CPU'), TO_CHAR(SUBSTR(HST.SQL_TEXT, 1, 4000)) ORDER BY TO_CHAR(ASW.SAMPLE_TIME, 'YYYY-MM-DD HH24:MI:SS') DESC; Lock situation is static, session 1110 is INACTIVE, so it must be active on SAP side SAMPLE_TIME SESSION_ID #WAITERS BLOCKING_SESSION TIME_WAITED ACTION :52: , ,00 0,00 enq: TX - row lock contention :52: ,00 6 0,00 0,00 INACTIVE :51: , , ,00 enq: TX - row lock contention :51: ,00 6 0,00 0,00 INACTIVE :51: , ,00 0,00 enq: TX - row lock contention :51: ,00 6 0,00 0,00 INACTIVE :51: , ,00 0,00 enq: TX - row lock contention :51: ,00 6 0,00 0,00 INACTIVE :51: , , ,00 enq: TX - row lock contention :51: ,00 6 0,00 0,00 INACTIVE :51: , ,00 0,00 enq: TX - row lock contention :51: ,00 6 0,00 0,00 INACTIVE... SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 9 9

10 2. Enqueue Analysis (6) What do we know now? We have a lot of information about the Oracle side lock dependencies. But we don t know what happened on the SAP side at this point, because there is no Active Session History available for the SAP work processes. So we can t say what the lock holding session 1110 was doing all the time. This is a limiting factor for our analysis. In this particular case we re in luck because one SM66 snapshot was taken on the SAP side showing the work process activities (see next page). Via V$SESSION we were able to map Oracle session 1110 to client process (column PROCESS). Unfortunately Oracle doesn t store the PROCESS column in V$ACTIVE_SESSION_HISTORY, so that a mapping work process <-> Oracle session is difficult if work processes were restarted since the problem happened. SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 10 10

11 2. Enqueue Analysis (7) SM66 snapshot showing SAP work process activities: Server Name No. Type PID Status Reason Sem Start Error CPU Time User Report Action Table sr3p022_fsp_00 0 DIA running Yes 3102 SAPSYS <rpc(gen Direct read REPOSRC sr3p022_fsp_00 3 DIA running Yes 3102 SAPSYS <rpc(gen Direct read REPOSRC sr3p022_fsp_00 4 DIA running Yes 93 IN3137 CL_FINB_ Sequential read /1ACC/43D_ sr3p022_fsp_00 5 DIA running Yes 3103 SAPSYS <rpc(gen Direct read REPOSRC sr3p022_fsp_00 6 DIA running Yes 3103 SAPSYS <rpc(gen Direct read REPOSRC sr3p022_fsp_00 7 DIA running Yes 3103 SAPSYS <rpc(gen Direct read REPOSRC sr3p022_fsp_00 8 DIA running Yes 3061 SAPSYS <rpc(gen Direct read REPOSRC sr3p022_fsp_00 17 DIA running Yes 3103 SAPSYS <rpc(gen Direct read REPOSRC sr3p022_fsp_00 22 DIA running Yes 3059 SAPSYS <rpc(gen Direct read REPOSRC sr3p022_fsp_00 23 DIA running Yes 1202 X CL_FINB_ Sequential read /1ACC/43D_ sr3p022_fsp_00 24 DIA running Yes 877 SAPSYS <rpc(gen Direct read REPOSRC... sr3p072_fsp_00 25 BTC running Yes 3130 BATCH_CRA SAPLSDIF Insert DDFTX sr3p072_fsp_00 26 BTC stopped Yes 3130 BATCH_CRA /BA1/CL_ sr3p072_fsp_00 27 BTC stopped Yes 3129 BATCH_CRA /BA1/SAP sr3p072_fsp_00 28 BTC stopped SLEEP Yes 6 BATCH_CRA /BA1/R2_ sr3p072_fsp_00 29 BTC stopped Yes 3129 BATCH_CRA GP45PYIK sr3p072_fsp_00 30 BTC running Yes 3129 BATCH_CRA SAPLSDIF Insert DDFTX sr3p072_fsp_00 31 BTC stopped Yes 3128 BATCH_CRA GP45PYIK sr3p072_fsp_00 32 BTC stopped Yes 3128 BATCH_CRA /BA1/CL_ sr3p072_fsp_00 33 BTC stopped Yes 3128 BATCH_CRA /BA1/SAP sr3p072_fsp_00 34 BTC stopped Yes 3128 BATCH_CRA GP45PYIK sr3p072_fsp_00 35 BTC stopped Yes 3127 BATCH_CRA GP45PYIK sr3p072_fsp_00 36 BTC stopped Yes 3127 BATCH_CRA CL_ABAP_ sr3p072_fsp_00 37 BTC stopped Yes 3127 BATCH_CRA /BA1/SAP sr3p072_fsp_00 38 BTC stopped Yes 3126 BATCH_CRA GP45PYIK sr3p072_fsp_00 40 BTC stopped Yes 3125 BATCH_CRA GP45PYIK sr3p072_fsp_00 41 BTC running Yes 3124 BATCH_CRA SAPLSDIF Insert DDFTX sr3p072_fsp_00 42 BTC stopped Yes 3124 BATCH_CRA /BA1/CL_ sr3p072_fsp_00 45 BTC stopped SLEEP Yes 1 ALE_IMP ZIN_SCEN What does the status stopped for process mean? SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 11 11

12 2. Enqueue Analysis (8) Possible Explanation of the Stopped Status With recent kernel releases ABAP programs are not generated in the running LUW. Instead they are executed and committed in another dialog process. Reason: if the generation (which is nothing else then DML operations against tables like REPOSRC or REPOLOAD) happens in the normal LUW, it can potentially take a very long time until the change is committed and so other processes queue up for the enqueues. As long as the generation takes place in the other dialog process, the main process is in status Stopped. Knowing this we can now imagine what the root cause of this problem was: Session 1110 had to wait for its dialog process to finish the generation. The dialog process had to wait for a REPOSRC lock The REPOSRC lock was held by Oracle session 1022 that had to wait for the DDFTX lock So this is a deadlock situation! SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 12 12

13 2. Enqueue Analysis (9) What is the big picture of the overall enqueue wait situation? Session 1110 SAP Batch work process Holds lock on DDFTX Wait for Oracle enqueue on DDFTX Session 1022 Waits for DDFTX lock Holds lock on REPOSRC Other blocked sessions Wait for Oracle enqueue on REPOSRC Wait for SAP generation SAP Dialog work process Doing generation For batch work process Other blocked sessions SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 13 13

14 2. Enqueue Analysis (10) Final Results Although the external generation of ABAP programs should avoid enqueue situations, it has caused critical enqueue waits and even a deadlock situation in this particular case. The reason was bad timing of the generation and the activities of session 1022 that finally lead to a permanent Oracle<->SAP deadlock. Oracle was not able to detect and resolve this deadlock because it can t be aware of the dependency on the SAP side between batch job and its generation dialog process. After having terminated and restarted the job everything ran smoothly because the bad timing didn t repeat. Reason for the generation activity was a previous coding change in the report. SAP note exactly describes this kind of scenario. The described workaround to force a local generation using abap/pxa = gen_local is not a good idea, because other enqueue situations are possible then. We assume that this problem will no longer happen because this kind of bad timing is very unlikely. SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 14 14

15 3. Runtime Analysis (1) Problem Situation A customer stated that a certain batch job took more than 15 hours the day before, which is much longer compared to previous runs. Based on transaction SM37 the following details of the job could be determined: Start date: , 12:04:12 End date: , 03:39:34 Work process PID: Based on the Oracle session overview in ST04 (or V$SESSION) the related Oracle sessions were determined: SID Client PID Event Logical Reads Phys. Reads Block Changes SQL*Net message from client SQL*Net message from client Only SID 1134 has performed significant work, so we can focus on this session during the subsequent analysis. This is now a good basis for an analysis based on the Oracle active session history. SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 15 The work process obviously opened two different sessions to the same database (865 and 1134). This is quite a normal scenario. The SAP work process has not been restarted since the job ran. Otherwise the mapping of work process to Oracle sessions would no longer be correct. 15

16 3. Runtime Analysis (2) What were the top SQL statements of that session? SELECT COUNT(*) * 10 "ESTIMATED_SECONDS", ASH.SQL_ID, TO_CHAR(S.SQL_TEXT) SQL_TEXT FROM DBA_HIST_ACTIVE_SESS_HISTORY ASH, DBA_HIST_SQLTEXT S WHERE ASH.SQL_ID = S.SQL_ID (+) AND ASH.SESSION_ID = 1134 AND ASH.SAMPLE_TIME BETWEEN TO_TIMESTAMP(' :04:12', 'dd.mm.yyyy hh24:mi:ss') AND TO_TIMESTAMP(' :39:34', 'dd.mm.yyyy hh24:mi:ss') GROUP BY ASH.SQL_ID, TO_CHAR(S.SQL_TEXT) ORDER BY COUNT(*) DESC; ESTIMATED_SECONDS SQL_ID There are only 5 expensive SQL statements with a significant runtime SQL_TEXT bngmgmf5gy9bb SELECT "T00003"."/B20/S_C30POS" AS fuq9r589fwbns SELECT "T00003"."/B20/S_C30POS" AS bg38uqzwyvkwc SELECT "T00003"."/B20/S_C30POS" AS dkut6ufwafv SELECT "T00003"."/B20/S_C30POS" AS d5907v33zfd44 SELECT "T00003"."/B20/S_C30POS" AS kj5mtbnft6p 70 1wa6j3643uba6 50 8w782vt53mfg5 SELECT * FROM "BANK_PROCFL_PROC" WHERE c8kvcz1sgp1qs SELECT "T00003"."/B20/S_C30POS" AS... SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 16 DBA_HIST_ACTIVE_SESS_HISTORY provides a snapshot of active sessions every ten seconds up to 7 days in the past. By explicitly restricting the SELECT to the job time frame and Oracle session 1134 we get exactly the snapshots of our session. The ESTIMATED_SECONDS don t add up to the overall runtime of the job because the job was sometimes active outside the database. In fact some work was parallelized and only coordinated by the master process. Nevertheless we hope that analyzing and optimizing the master process will already provide significant benefit. The output of the selection contains the SQL_ID. The SQL_ID is one of the most useful pieces of information you can get, because it s the key for a lot of detail information for the related SQL statement. 16

17 3. Runtime Analysis (3) Now let s check the wait event and CPU distribution: SELECT COUNT(*) * 10 "ESTIMATED_SECONDS", DECODE(ASH.SESSION_STATE, 'WAITING', ASH.EVENT, 'CPU') ACTION FROM DBA_HIST_ACTIVE_SESS_HISTORY ASH, DBA_HIST_SQLTEXT S WHERE ASH.SQL_ID = S.SQL_ID (+) AND ASH.SESSION_ID = 1134 AND ASH.SAMPLE_TIME BETWEEN TO_TIMESTAMP(' :04:12', 'dd.mm.yyyy hh24:mi:ss') AND TO_TIMESTAMP(' :39:34', 'dd.mm.yyyy hh24:mi:ss') GROUP BY DECODE(ASH.SESSION_STATE, 'WAITING', ASH.EVENT, 'CPU') ORDER BY COUNT(*) DESC; CPU and db file sequential read are the main contributors ESTIMATED_SECONDS ACTION CPU 7410 db file sequential read 110 latch free 80 latch: cache buffers chains 70 log file sync 20 db file scattered read 10 SQL*Net more data to client SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 17 There were no strange wait events responsible for a significant delay. Just CPU and I/O reads, which is normal. The high CPU consumption can be caused, for example, by expensive SQL statements with a high number of buffer gets. 17

18 3. Runtime Analysis (4) How does the top SQL statement look? SELECT SUBSTR(SQL_TEXT, 1 + (i - 1) * 80, 80) SQL_TEXT FROM DBA_HIST_SQLTEXT HST, (SELECT ROWNUM I FROM DBA_HIST_SQLTEXT WHERE ROWNUM <= 60) WHERE HST.SQL_ID = 'bngmgmf5gy9bb'; SELECT "T00003"."/B20/S_C30POS" AS "ZIBI002 F00028","T00001"."/BIC/AO_STATUS" AS "ZIBI002 F00010","T00001"."/BIC/AO_VER_VF" AS "ZIBI002 F00003", "T00001"."/BIC/AO_VER_VT" AS "ZIBI002 F00006","T00001"."/BIC/AO_SYS_VF" AS "ZIBI002 F00004","T00001"."/BIC/AO_SYS_VT" AS "ZIBI002 F00007", "T00003"."/BIC/AO_STATUS" AS "ZIBI002 F00036","T00003"."/BIC/AO_VER_VF" AS "ZIBI002 F00029","T00003"."/BIC/AO_VER_VT" AS "ZIBI002 F00032", "T00003"."/BIC/AO_SYS_VF" AS "ZIBI002 F00030","T00003"."/BIC/AO_SYS_VT" AS "ZIBI002 F00033","T00004"."/BIC/AO_STATUS" AS "ZIBI002 F00047", "T00004"."/BIC/AO_VER_VF" AS "ZIBI002 F00040","T00004"."/BIC/AO_VER_VT" AS "ZIBI002 F00043","T00004"."/BIC/AO_SYS_VF" AS "ZIBI002 F00041", "T00004"."/BIC/AO_SYS_VT" AS "ZIBI002 F00044" FROM "/BIC/AZDDKX00100" "T00001" JOIN "/BIC/AZDBS10300" "T00003" ON "T00001". "/B20/S_C43CLACC" = "T00003". "/B20/S_C43CLACC" JOIN "/BIC/AZDFIX00100" "T00004" ON "T00003". "/B20/S_C41FINST" = "T00004". "/B20/S_C41FINST" WHERE "T00001"."SOURSYSTEM" = '00' AND "T00001"."/BIC/AO_SYS_VF" < ' ' AND "T00001"."/BIC/AO_VAL_VF" <= ' ' AND "T00001"."/BIC/AO_VER_VT" > ' ' AND "T00001"."/BIC/AO_SYS_VT" >= ' ' AND "T00001"."/BIC/AO_VAL_VT" > ' ' AND "T00001"."/B20/S_C55LGENT" = 'L0050' AND NOT ( "T00001"."/BIC/ZMANREL" = '011' OR "T00001"."/BIC/ZMANREL" = '010' OR "T00001"."/BIC/ZMANREL" = '001' OR "T00001"."/BIC/ZMANREL" = '000' ) AND "T00003"."SOURSYSTEM" = '00' AND "T00003"."/BIC/AO_SYS_VF" < ' ' AND "T00003"."/BIC/AO_VAL_VF" <= ' ' AND "T00003"."/BIC/AO_VER_VT" > ' ' AND "T00003"."/BIC/AO_SYS_VT" >= ' ' AND "T00003"."/BIC/AO_VAL_VT" > ' ' AND "T00003"."/BIC/AO_PACKNO" BETWEEN '000000' AND '049999' AND A typical SAP Bank Analyzer Multi-table Join "T00004"."SOURSYSTEM" = '00' AND "T00004"."/BIC/AO_SYS_VF" BETWEEN ' ' AND ' ' AND "T00004"."/BIC/AO_VAL_VF" <= ' ' AND "T00004"."/BIC/AO_VER_VT" > ' ' AND "T00004"."/BIC/AO_SYS_VT" >= ' ' AND "T00004"."/BIC/AO_VAL_VT" > ' ' AND NOT ( "T00004"."/BIC/ZMPRODA" = '0104' OR "T00004"."/BIC/ZMPRODA" = '0107' OR "T00004"."/BIC/ZMPRODA" = '0110' OR "T00004"."/BIC/ZMPRODA" = '0111' OR "T00004"."/BIC/ZMPRODA" = '0114' ) GROUP BY "T00003"."/B20/S_C30POS","T00001"."/BIC/AO_STATUS", "T00001"."/BIC/AO_VER_VF","T00001"."/BIC/AO_VER_VT", "T00001"."/BIC/AO_SYS_VF","T00001"."/BIC/AO_SYS_VT", "T00003"."/BIC/AO_STATUS","T00003"."/BIC/AO_VER_VF", "T00003"."/BIC/AO_VER_VT","T00003"."/BIC/AO_SYS_VF", "T00003"."/BIC/AO_SYS_VT","T00004"."/BIC/AO_STATUS", "T00004"."/BIC/AO_VER_VF","T00004"."/BIC/AO_VER_VT", "T00004"."/BIC/AO_SYS_VF","T00004"."/BIC/AO_SYS_VT"; SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 18 DBA_HIST_SQLTEXT contains the full SQL text of SQL statements in the SQL_TEXT column (of CLOB data type). The SUBSTR approach in the SELECT is necessary if you want to display the full SQL text in report RSORADJV. If you execute the command directly on Oracle side, you can choose a simpler variant. The output had to be manually reformatted in order to get a well readable format. 18

19 3. Runtime Analysis (5) What was the execution plan of this SQL statement? SELECT TO_CHAR(TIMESTAMP, 'YYYY-MM-DD HH24:MI:SS') TIMESTAMP, ID, LPAD(' ', DEPTH) OPERATION ' ' OPTIONS DECODE(OBJECT_NAME, NULL, NULL, ' (' OBJECT_NAME ')') ACTION, COST, CARDINALITY FROM DBA_HIST_SQL_PLAN WHERE SQL_ID = 'bngmgmf5gy9bb' ORDER BY 1 DESC, 2; Nested Loop Joins with Index Skip Scan on Leading Table TIMESTAMP ID ACTION COST CARDINALITY :36:42 0,00 SELECT STATEMENT 6.584,00 0, :36:42 1,00 HASH GROUP BY 6.583,00 74, :36:42 2,00 TABLE ACCESS BY INDEX ROWID (/BIC/AZDDKX00100) 3,00 6, :36:42 3,00 NESTED LOOPS 6.582,00 74, :36:42 4,00 NESTED LOOPS 6.549,00 12, :36:42 5,00 TABLE ACCESS BY INDEX ROWID (/BIC/AZDFIX00100) 4.379,00 2, :36:42 6,00 INDEX SKIP SCAN (/BIC/AZDFIX00100~0) 4.379,00 1, :36:42 7,00 TABLE ACCESS BY INDEX ROWID (/BIC/AZDBS10300) 1.085,00 7, :36:42 8,00 INDEX RANGE SCAN (/BIC/AZDBS10300~02) 1.036,00 479, :36:42 9,00 INDEX RANGE SCAN (/BIC/AZDDKX00100~0) 0,00 82,00 SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 19 DBA_HIST_SQL_PLAN contains historic execution plans of SQL statements. In this case due to the fact that literals rather than bind variables were used in the selection the statement was only executed once. Therefore, there s only one execution plan available. 19

20 3. Runtime Analysis (6) What were the load characteristics of the SQL statement? SELECT TO_CHAR(HSS.END_INTERVAL_TIME, 'YYYY-MM-DD HH24:MI:SS') END_INTERVAL_TIME, HSQ.EXECUTIONS_DELTA EXECUTIONS, HSQ.ROWS_PROCESSED_DELTA RECORDS, ROUND(DECODE(HSQ.EXECUTIONS_DELTA, 0, 0, HSQ.ROWS_PROCESSED_DELTA / HSQ.EXECUTIONS_DELTA), 2) RECORDS_PER_EXEC, HSQ.DISK_READS_DELTA DISK_READS, ROUND(DECODE(HSQ.EXECUTIONS_DELTA, 0, 0, HSQ.DISK_READS_DELTA / HSQ.EXECUTIONS_DELTA), 2) DISK_READS_PER_EXEC, HSQ.BUFFER_GETS_DELTA BUFFER_GETS, ROUND(DECODE(HSQ.EXECUTIONS_DELTA, 0, 0, HSQ.BUFFER_GETS_DELTA / HSQ.EXECUTIONS_DELTA), 2) BUFFER_GETS_PER_EXEC, ROUND(DECODE(HSQ.ROWS_PROCESSED_DELTA, 0, 0, HSQ.BUFFER_GETS_DELTA / HSQ.ROWS_PROCESSED_DELTA), 2) BUFFER_GETS_PER_RECORD, HSQ.ELAPSED_TIME_DELTA / 1000 ELAPSED_TIME_MS, ROUND(DECODE(HSQ.EXECUTIONS_DELTA, 0, 0, HSQ.ELAPSED_TIME_DELTA / HSQ.EXECUTIONS_DELTA / 1000), 3) ELAPSED_TIME_MS_PER_EXEC, HSQ.CPU_TIME_DELTA / 1000 CPU_TIME_MS, ROUND(DECODE(HSQ.EXECUTIONS_DELTA, 0, 0, HSQ.CPU_TIME_DELTA / HSQ.EXECUTIONS_DELTA / 1000), 3) CPU_TIME_MS_PER_EXEC FROM DBA_HIST_SQLSTAT HSQ, DBA_HIST_SNAPSHOT HSS WHERE HSQ.SNAP_ID = HSS.SNAP_ID AND HSQ.SQL_ID = 'bngmgmf5gy9bb' ORDER BY HSS.SNAP_ID DESC; Very high number of buffer gets for 0 records! END_INTERVAL_TIME EXECUTIONS RECORDS RECORDS_PER_EXEC DISK_READS DISK_READS_PER_EXEC BUFFER_GETS BUFFER_GETS_PER_EXEC :00:35 0,00 0,00 0 0, , :00:34 0,00 0,00 0 0, , :00:32 0,00 0,00 0 0, , :00:31 1,00 0,00 0 0, , BUFFER_GETS_PER_RECORD ELAPSED_TIME_MS ELAPSED_TIME_MS_PER_EXEC CPU_TIME_MS CPU_TIME_MS_PER_EXEC SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 20 DBA_HIST_SQLSTAT contains hourly snapshots of the Oracle shared cursor cache. In this case 4 hours are returned because the SQL statement spanned 4 hours. The times per execution values are not really correct in this special case because they only relate to the values in line 4 rather than summing up all lines. Normally this problem is not so significant because the SQL statements don t run so long. The high number of buffer gets is a typical reason for the high CPU consumption we have already seen. 20

21 3. Runtime Analysis (6) Now we just have to optimize that SQL statement... select table_name, column_name, num_distinct, num_buckets, to_char(last_analyzed, 'dd.mm.yyyy hh24:mi:ss') last_analyzed, histogram from dba_tab_columns where table_name in ('/BIC/AZDDKX00100', '/BIC/AZDBS10300', '/BIC/AZDFIX00100'); Histogram statistics, creation date 6 weeks In the past TABLE_NAME COLUMN_NAME NUM_DISTINCT NUM_BUCKETS LAST_ANALYZED HISTOGRAM /BIC/AZDBS10300 SOURSYSTEM 1,00 1, :01:45 FREQUENCY /BIC/AZDBS10300 /B20/S_C30POS 5.896,00 75, :01:45 HEIGHT BALANCED /BIC/AZDBS10300 /BIC/AO_VER_VF 609,00 75, :01:45 HEIGHT BALANCED /BIC/AZDBS10300 /BIC/AO_SYS_VF ,00 1, :01:45 NONE /BIC/AZDBS10300 /BIC/AO_VAL_VF 1,00 1, :01:45 FREQUENCY /BIC/AZDBS10300 /BIC/AO_VER_VT 610,00 75, :01:45 HEIGHT BALANCED /BIC/AZDBS10300 /BIC/AO_SYS_VT ,00 75, :01:45 HEIGHT BALANCED /BIC/AZDBS10300 /BIC/AO_VAL_VT 1,00 1, :01:45 FREQUENCY /BIC/AZDBS10300 /BIC/AO_PACKNO 5.882,00 75, :01:45 HEIGHT BALANCED /BIC/AZDBS10300 /BIC/AO_STATUS 2,00 2, :01:45 FREQUENCY /BIC/AZDBS10300 /B20/S_C43CLACC 5.536,00 75, :01:45 HEIGHT BALANCED /BIC/AZDBS10300 RECORDMODE 1,00 1, :01:45 FREQUENCY /BIC/AZDBS10300 /B20/S_C41FINST 1.992,00 75, :01:45 HEIGHT BALANCED /BIC/AZDDKX00100 /BIC/ZMBUCHAR 3,00 3, :02:49 FREQUENCY /BIC/AZDDKX00100 /BIC/ZMANREL 2,00 2, :02:49 FREQUENCY /BIC/AZDDKX00100 SOURSYSTEM 1,00 1, :02:49 FREQUENCY /BIC/AZDDKX00100 /B20/S_C43CLACC ,00 75, :02:49 HEIGHT BALANCED /BIC/AZDDKX00100 /BIC/AO_VER_VF 2.079,00 75, :02:49 HEIGHT BALANCED /BIC/AZDDKX00100 /BIC/AO_SYS_VF ,00 1, :02:49 NONE... SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 21 21

22 3. Runtime Analysis (7) Final Results Outdated column statistics (both with and without histograms) can be critical in case of date ranges, because existing dates are often a sliding range. Date columns are quite important for the expensive Bank Analyzer SQL statements in question. At the time of the statistics creation (beginning of May) no records with a date of June can have been there, whereas now a significant number exists. As a consequence the cardinality estimation of the CBO can be far away from the reality and wrong join orders are used. As a quick workaround we have created new statistics for the affected tables with BRCONNECT: brconnect u / -c f stats t <table_name> -f collect Afterwards the job runtime improved from 15 hours to 3.5 hours. In order to make sure that statistics for the critical tables are updated regularly, the following approaches are possible: Set ACTIV=U ( unconditioned statistics ) in DBSTATC (note ) Use a smaller STATS_CHANGE_THRESHOLD for statistics creation SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 22 By using a smaller STATS_CHANGE_THRESHOLD new statistics are created when a smaller amount of changes happened to a table. The disadvantage is a possible overhead during statistics creation if for too many tables new statistics are calculated. 22

23 4. I/O Analysis (1) Problem Situation A customer had average db file sequential read times of 8 ms. This is usually an acceptable average value for requesting one block from the operating system or from disk. Nevertheless it doesn t tell us if there are bottlenecks during certain times or for certain files or objects. With Oracle 10g it is now possible to also determine the distribution of wait event runtimes. So we are able to see not only the average value, but also the range of existing values and peak areas. Therefore a more detailed analysis of db file sequential read times was performed for that customer with interesting results. SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 23 23

24 4. I/O Analysis (2) What is the distribution of the db file sequential read times? SELECT EVENT, WAIT_TIME_MILLI UPPER_WAIT_TIME_MS, WAIT_COUNT, WAIT_TIME_MILLI * DECODE(WAIT_TIME_MILLI, 1, 0.5, 0.75) * WAIT_COUNT TIME_WAITED, ROUND(RATIO_TO_REPORT(WAIT_TIME_MILLI * DECODE(WAIT_TIME_MILLI, 1, 0.5, 0.75) * WAIT_COUNT) OVER () * 100) PERCENT FROM V$EVENT_HISTOGRAM WHERE EVENT = 'db file sequential read' ORDER BY WAIT_TIME_MILLI; Several thousand reads with a runtime of more than 0.5 seconds! EVENT UPPER_WAIT_TIME_MS WAIT_COUNT TIME_WAITED PERCENT db file sequential read db file sequential read db file sequential read db file sequential read db file sequential read db file sequential read db file sequential read db file sequential read db file sequential read db file sequential read db file sequential read db file sequential read db file sequential read db file sequential read db file sequential read db file sequential read db file sequential read SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 24 V$EVENT_HISTOGRAM contains histogram information for wait events. Two typical peaks can be seen in the output: There are 47 million accesses with a runtime of less than 1 ms. These blocks are typically buffered on lower levels (filesystem cache, I/O sub system cache,...) and no real disk access is necessary. There are more than 100 million accesses with runtimes between 4 and 16 ms. These accesses are normally typical disk accesses. Additionally we see an untypical number of accesses with a runtime of more than 1 second. It is hardly possible to imagine that reading one block from disk takes more than 1 second but here the output tells us that there were already 27 blocks that took longer than 65 seconds to be read from disk. Although the following slides will confirm that the high times are reality you should always take into account the possibility of Oracle statistical bugs if you see such high values. 24

25 4. I/O Analysis (3) When did the long accesses take place? SELECT TO_CHAR(ASH.SAMPLE_TIME, 'YYYY-MM-DD HH24:MI:SS') SAMPLE_TIME, ASH.SESSION_ID, ASH.TIME_WAITED, O.OBJECT_NAME FROM DBA_HIST_ACTIVE_SESS_HISTORY ASH, DBA_HIST_SQLTEXT S, DBA_OBJECTS O WHERE ASH.SQL_ID = S.SQL_ID (+) AND ASH.CURRENT_OBJ# = O.OBJECT_ID (+) AND ASH.EVENT like 'db file sequential read' AND ASH.SESSION_STATE = 'WAITING' and ash.time_waited > ORDER BY SAMPLE_TIME DESC; A lot of high I/O times between 7:55 and 8:00! SAMPLE_TIME SESSION_ID TIME_WAITED OBJECT_NAME (MICRO) :58: /1ACC/43D 1E00B :58: /1ACC/43D 1E00B :58: /BA1/B1_FPTOTALS :58: /BA1/F1_BAS~ :58: FICOT_CONDI~ :57: FICOT_CONDI :57: FICOT_CONDI :57: /1ACC/43D 1E00B :57: FICOT_CONDI :56: /1SGS/41D4F :56: /1SGS/41D4F :56: /BA1/R4_REC_BP :56: /BA1/R4_REC_BP :56: /1ACC/43D 1E00B :56: /1SGS/41D4F :55: /1ACC/43D 1E00B :55: /1SGS/ :55: /1ACC/43D 1E00C~ :55: /BA1/R2_CRE~ :55: FICOT_CONDI :55: /1BA/R4_5541D4F :55: FICOT_POS :55: /1ACC/43D 1E00B SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 25 Just another time the active session history can provide really useful information. In this case we can see that a lot of long running I/O reads happened during a few minutes. In fact the whole I/O was more or less blocked during that time. Some short time frames with similar peaks existed too. The rest of the time the I/O ran smoothly and there were no critical peaks. 25

26 4. I/O Analysis (4) Final Results After knowing the periods when increased I/O read times occurred, we tried to figure out what was special during those periods. Finally we recognized that during these periods a tablespace extension was always performed. During the ADD DATAFILE execution all other I/O was nearly stopped. Knowing this we were able to reproduce the bottleneck situation and address the issue in the areas of the operating system and the hardware partner. There the problem can be analyzed and the bottleneck situation can be optimized. SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 26 26

27 5. Comparison Analysis (1) Problem Situation Runtime tests were performed at a customer for a certain SAP functionality. The only difference between two test scenarios was the amount of parallelization on SAP side. It turned out that the summarized database load of the serial test was much lower compared to the database load of the parallelized test. At this point it was necessary to compare the database behavior during two tests with activated and deactivated parallelization. For that purpose we decided to create AWR reports for the two test time frames: Creation of AWR snapshots before and after each test: EXEC DBMS_WORKLOAD_REPOSITORY.CREATE_SNAPSHOT(); Creation of AWR reports using the awrrpt.sql script (note (3)) SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 27 The test system was only used for the tests, so no significant other load exists that could have an impact on the quality of the analysis results. 27

28 5. Comparison Analysis (2) Let s compare the top SQL statement in both reports: Parallel Test: Elapsed CPU Elap per % Total Time (s) Time (s) Executions Exec (s) DB Time SQL Id yztx06upqp9 Module: CA_OBL_BINREL=================CP INSERT INTO "SRBCSBREL" VALUES( :A0, :A1, :A2, :A3, :A4, :A5, :A6, :A7, :A8, :A9, :A10, :A11, :A12, :A13, :A14 ) Serial Test: Elapsed CPU Elap per % Total Time (s) Time (s) Executions Exec (s) DB Time SQL Id yztx06upqp9 Module: CA_OBL_BINREL=================CP INSERT INTO "SRBCSBREL" VALUES( :A0, :A1, :A2, :A3, :A4, :A5, :A6, :A7, :A8, :A9, :A10, :A11, :A12, :A13, :A14 ) Same number of executions, but 30 % higher elapsed time! SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 28 28

29 5. Comparison Analysis (3) What were the characteristics of this SQL statement? SELECT TO_CHAR(HSS.END_INTERVAL_TIME, 'YYYY-MM-DD HH24:MI:SS') END_INTERVAL_TIME, HSQ.EXECUTIONS_DELTA EXECUTIONS, HSQ.ROWS_PROCESSED_DELTA RECORDS, ROUND(DECODE(HSQ.EXECUTIONS_DELTA, 0, 0, HSQ.ROWS_PROCESSED_DELTA / HSQ.EXECUTIONS_DELTA), 2) RECORDS_PER_EXEC, HSQ.DISK_READS_DELTA DISK_READS, ROUND(DECODE(HSQ.EXECUTIONS_DELTA, 0, 0, HSQ.DISK_READS_DELTA / HSQ.EXECUTIONS_DELTA), 2) DISK_READS_PER_EXEC, HSQ.BUFFER_GETS_DELTA BUFFER_GETS, ROUND(DECODE(HSQ.EXECUTIONS_DELTA, 0, 0, HSQ.BUFFER_GETS_DELTA / HSQ.EXECUTIONS_DELTA), 2) BUFFER_GETS_PER_EXEC, ROUND(DECODE(HSQ.ROWS_PROCESSED_DELTA, 0, 0, HSQ.BUFFER_GETS_DELTA / HSQ.ROWS_PROCESSED_DELTA), 2) BUFFER_GETS_PER_RECORD, HSQ.ELAPSED_TIME_DELTA / 1000 ELAPSED_TIME_MS, ROUND(DECODE(HSQ.EXECUTIONS_DELTA, 0, 0, HSQ.ELAPSED_TIME_DELTA / HSQ.EXECUTIONS_DELTA / 1000), 3) ELAPSED_TIME_MS_PER_EXEC, HSQ.CPU_TIME_DELTA / 1000 CPU_TIME_MS, ROUND(DECODE(HSQ.EXECUTIONS_DELTA, 0, 0, HSQ.CPU_TIME_DELTA / HSQ.EXECUTIONS_DELTA / 1000), 3) CPU_TIME_MS_PER_EXEC, HSQ.IOWAIT_DELTA / 1000 USER_IO_TIME_MS, ROUND(DECODE(HSQ.EXECUTIONS_DELTA, 0, 0, HSQ.IOWAIT_DELTA / HSQ.EXECUTIONS_DELTA / 1000), 3) USER_IO_TIME_MS_PER_EXEC, ROUND(DECODE(HSQ.DISK_READS_DELTA, 0, 0, HSQ.IOWAIT_DELTA / HSQ.DISK_READS_DELTA / 1000), 3) TIME_PER_DISKREAD_MS FROM DBA_HIST_SQLSTAT HSQ, DBA_HIST_SNAPSHOT HSS WHERE HSQ.SNAP_ID = HSS.SNAP_ID AND HSQ.SQL_ID = '94yztx06upqp9' ORDER BY HSS.SNAP_ID DESC; Slower I/O reads during parallel execution! END_INTERVAL_TIME EXECUTIONS RECORDS RECORDS_PER_EXEC DISK_READS DISK_READS_PER_EXEC BUFFER_GETS BUFFER_GETS_PER_EXEC :30:04 107, , , , :00:09 214, , , , :00:00 104, , , , :10:03 425, , , , BUFFER_GETS_PER_RECORD ELAPSED_TIME_MS ELAPSED_TIME_MS_PER_EXEC CPU_TIME_MS CPU_TIME_MS_PER_EXEC USER_IO_TIME_MS TIME_PER_DISKREAD_MS SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 29 The first three lines (of 20th of June) are related to the serial execution. Due to the serialization the total runtime spanned three hours. The fourth line (of 19th of June) is related to the parallel test. The sum of executions in the first three lines is identical to the number of executions in the fourth line (425). Also the records are identical. Surprisingly the number of disk reads was smaller in the slower parallel test (buffering effects?), but the elapsed time was significantly higher. The main difference is the time spent per disk read (serial execution: around 5.7 ms, parallel execution: around 12.6 ms). 29

30 5. Comparison Analysis (4) Final Results The main runtime difference was the different time per disk read during the both tests. This was confirmed also with other SQL statements: 5.7 ms vs ms 7.6 ms vs ms 4.1 ms vs. 6.7 ms Also the overall db file sequential read comparison of the two AWR reports showed similar differences. So we were able to prove that the increased database request time is suffered from decreased read I/O performance. At this point the Oracle analysis is finished and it has to be checked on operating system and hardware level why the I/O read requests suffer significantly from parallelism (bottleneck due to higher parallel load)? SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 30 An AWR Diff report is also a useful approach in this scenario. In this case Oracle maps the related information of the two time frames directly and specifies an increase or decrease (absolutely and in percent). 30

31 5. Summary (1) Summary We have seen some varied real-life examples that were not possible with Oracle 9i and that take significant advantage of Oracle 10g performance monitoring features. In very many situations it is now possible to analyze performance problems even days after they happened. Oracle provides several reports and Advisors to assist during the performance analysis, but sometimes it is necessary to go beyond these features and perform flexible individual selections. SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 31 31

32 6. Summary (2) Any questions? SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 32 32

33 Copyright 2007 SAP AG. All Rights Reserved No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission of SAP AG. The information contained herein may be changed without prior notice. Some software products marketed by SAP AG and its distributors contain proprietary software components of other software vendors. Microsoft, WINDOWS, NT, EXCEL, Word, PowerPoint and SQL Server are registered trademarks of Microsoft Corporation. IBM, DB2, DB2 Universal Database, OS/2, Parallel Sysplex, MVS/ESA, AIX, S/390, AS/400, OS/390, OS/400, iseries, pseries, xseries, zseries, z/os, AFP, Intelligent Miner, WebSphere, Netfinity, Tivoli, Informix and Informix Dynamic ServerTM are trademarks of IBM Corporation in USA and/or other countries. ORACLE is a registered trademark of ORACLE Corporation. UNIX, X/Open, OSF/1, and Motif are registered trademarks of the Open Group. Citrix, the Citrix logo, ICA, Program Neighborhood, MetaFrame, WinFrame, VideoFrame, MultiWin and other Citrix product names referenced herein are trademarks of Citrix Systems, Inc. HTML, DHTML, XML, XHTML are trademarks or registered trademarks of W3C, World Wide Web Consortium, Massachusetts Institute of Technology. JAVA is a registered trademark of Sun Microsystems, Inc. JAVASCRIPT is a registered trademark of Sun Microsystems, Inc., used under license for technology invented and implemented by Netscape. MarketSet and Enterprise Buyer are jointly owned trademarks of SAP AG and Commerce One. SAP, SAP Logo, R/2, R/3, mysap, mysap.com and other SAP products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of SAP AG in Germany and in several other countries all over the world. All other product and service names mentioned are trademarks of their respective companies. SAP AG 2007, Oracle 10g Performance Case Studies, Martin Frauendorfer / 33 33

Sales Rush Sales Order Processing S01- Lean Baseline Package. SAP Lean Baseline Package Version: V1.500 Country: UK Language: EN Date: February 2006

Sales Rush Sales Order Processing S01- Lean Baseline Package. SAP Lean Baseline Package Version: V1.500 Country: UK Language: EN Date: February 2006 SAP Lean Baseline Package Version: V1.500 Country: UK Language: EN Date: February 2006 Sales Rush Sales Order Processing S01- Lean Baseline Package SAP AG Neurottstr. 16 69190 Walldorf Germany 1.1.1 Copyright

More information

Global Transport Label - General Motors -

Global Transport Label - General Motors - SAP Customer Success Story Automotive Consulting Solutions Print form for the Sales and Distribution process Global Transport Label - General Motors - Agenda GETRAG Corporate Group Description of the Function

More information

DATA ARCHIVING IN SAP R/3 ENTERPRISE. Georg Fischer PM Data Archiving SAP AG

DATA ARCHIVING IN SAP R/3 ENTERPRISE. Georg Fischer PM Data Archiving SAP AG DATA ARCHIVING IN SAP R/3 ENTERPRISE Georg Fischer PM Data Archiving SAP AG Agenda Introduction Data Archiving Basics Access to Archived Data Data Archiving Projects Information and Contacts SAP AG 2003,

More information

Implementing Outlook Integration for SAP Business One

Implementing Outlook Integration for SAP Business One Welcome to your RKT Live Expert Session Implementing Outlook Integration for SAP Business One Valerie Arguin Solution Manager Please note that we are recording this session! Your Presenter Please insert

More information

E-Recruiting Job Board Integration using XI

E-Recruiting Job Board Integration using XI E-Recruiting Job Board Integration using XI SAP AG 2005 SAP AG 1 Overview of Integration Scenario E-Recruiting System Configuration Delivered XI Components Basic XI-side Configuration Message Monitoring

More information

DBA Cockpit for Oracle

DBA Cockpit for Oracle DBA Cockpit for Oracle Ralf Hackmann, Matthias Lienert Database Platforms Group SAP AG Contents Introduction Pages 3-8 Selected New Performance Monitors Pages 9-17 Space Monitoring Pages 18-20 New DBA

More information

Service Level Reporting for Business Process Monitoring

Service Level Reporting for Business Process Monitoring Service Level Reporting in SAP Solution Manager Service Level Reporting for Business Process Monitoring with SAP Solution Manager 7.1 May 2013 SAP AG Dietmar-Hopp-Allee 16 69190 Walldorf Germany T +49/18

More information

SAP xapp Resource and Portfolio Management (SAP xrpm)

SAP xapp Resource and Portfolio Management (SAP xrpm) SAP xapp Resource and Management (SAP xrpm) Version 2.0 Kai Nylen Solution Adviser, SAP Finland Outline Challenges Facing Organizations SAP xrpm Product Overview SAP xrpm Architecture SAP xrpm Customer

More information

CREATING A PURCHASE ORDER STORE RECORD WEB SERVICE

CREATING A PURCHASE ORDER STORE RECORD WEB SERVICE SAP BEST PRACTICES AND SERVICE SOLUTION MANAGEMENT CREATING A PURCHASE ORDER STORE RECORD WEB SERVICE Exercise / Solution ITAI SADAN, SOLUTION OFFICE, SAP AMERICA SAP BEST PRACTICES AND SERVICE SOLUTION

More information

BC450 ABAP Performance: Analysis and Optimization

BC450 ABAP Performance: Analysis and Optimization ABAP Performance: Analysis and Optimization SAP NetWeaver Application Server - ABAP Course Version: 93 Course Duration: 5 Day(s) Publication Date: 18-10-2012 Publication Time: 1025 Copyright Copyright

More information

3 rd party Service Desk interface

3 rd party Service Desk interface SAP Solution Manager 3 rd party Service Desk interface Product Management SAP Solution Manager SAP AG Disclaimer This presentation is a preliminary version and not subject to your license agreement or

More information

SEM and Budget Preparation. David Reifschneider Sr. Consultant, SAP SI America

SEM and Budget Preparation. David Reifschneider Sr. Consultant, SAP SI America SEM and Budget Preparation David Reifschneider Sr. Consultant, SAP SI America Agenda: SAP s Higher Education Budgeting Solution 1 Introduction: Budget Requirements 2 BW Structure and Content 3 SEM-BPS

More information

R&D Logistics: Clinical Trial Supply Management for the Life Sciences Industry. SAP Online Conference October 7, 2003

R&D Logistics: Clinical Trial Supply Management for the Life Sciences Industry. SAP Online Conference October 7, 2003 R&D Logistics: Trial Supply for the Life Sciences Industry SAP Online Conference October, 00 Agenda Introduction & Challenges Meeting the Challenges with SAP Solution Demonstration Summary and Q & A SAP

More information

Download and Install Crystal Reports for Eclipse via the Eclipse Software Update Manager

Download and Install Crystal Reports for Eclipse via the Eclipse Software Update Manager Download and Install Crystal Reports for Eclipse via the Eclipse Software Update Manager Applies to: Crystal Reports for Eclipse version 2 Summary This document provides a step-by-step guide on how to

More information

BC407 Reporting: QuickViewer, InfoSet Query and SAP Query

BC407 Reporting: QuickViewer, InfoSet Query and SAP Query Reporting: QuickViewer, InfoSet Query and SAP Query SAP NetWeaver Course Version: 93 Course Duration: 2 Day(s) Publication Date: 12-04-2012 Publication Time: 1050 Copyright Copyright SAP AG. All rights

More information

Ronald Bueck SBO Product Definition

Ronald Bueck SBO Product Definition SAP Business One Welcomes you to the Weekly Partner Webinar Series Overview Microsoft Outlook Integration Add-on Ronald Bueck SBO Product Definition Please note that we are recording this session! Your

More information

SAP Service Tools for Performance Analysis

SAP Service Tools for Performance Analysis SAP Service Tools for Performance Analysis Kerstin Knebusch Active Global Support Month 05, 2013 Public Performance Analysis Wait event based Focus on statements causing high load and / or high wait time

More information

How To Configure MDM to Work with Oracle ASM-Based Products

How To Configure MDM to Work with Oracle ASM-Based Products SAP NetWeaver How-To Guide How To Configure MDM to Work with Oracle ASM-Based Products Applicable Releases: MDM 7.1 SP10 and later Version 1.0 June 2013 Copyright 2013 SAP AG. All rights reserved. No part

More information

Configuring Distribution List in Compliant User Provisioning

Configuring Distribution List in Compliant User Provisioning Configuring Distribution List in Compliant User Provisioning Applies To: GRC Access Control Suite for 5.3 Summary: Configuration of Distribution List in Compliant User Provisioning will allow a group of

More information

Budget Control by Cost Center

Budget Control by Cost Center SAP Business One Budget Control by Cost Center Ecosystem & Channels Readiness July 2011 Allows a precise follow up of costs booked using the cost accounting dimensions functionality as introduced in SAP

More information

Log Analysis Tool for SAP NetWeaver AS Java

Log Analysis Tool for SAP NetWeaver AS Java Log Analysis Tool for SAP NetWeaver AS Java Applies to: SAP NetWeaver 6.40, 7.0x, 7.1x, 7.20 and higher Summary Log Analysis is an SAP tool for analyzing list formatted logs and traces in Application Server

More information

Security Audit Log (BC-SEC)

Security Audit Log (BC-SEC) HELP.BCSECAUDLOG Release 4.6C SAP AG Copyright Copyright 2001 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express

More information

SAP GRC Access Control: Background jobs for risk analysis and remediation (formerly Virsa Compliance Calibrator)

SAP GRC Access Control: Background jobs for risk analysis and remediation (formerly Virsa Compliance Calibrator) SAP GRC Access Control: Background jobs for risk analysis and remediation (formerly Virsa Compliance Calibrator) Applies to: SAP GRC Access Control, version 5.2 Summary This document discusses the background

More information

How To Balance In Sap Bw

How To Balance In Sap Bw How-to Guide SAP NetWeaver 04 How To Load Balancing For Data Load Processing and Warehouse Management In BW Version 1.10 January 2005 Applicable Releases: SAP NetWeaver 04 For source system requirements

More information

Table of Contents. How to Find Database Index usage per ABAP Report and Creating an Index

Table of Contents. How to Find Database Index usage per ABAP Report and Creating an Index How to Find Database Index usage per ABAP Report and Creating an Index Applies to: SAP NETWEAVER WEB AS ABAP. For more information, visit the ABAP homepage Summary The aim of this article is to show how

More information

Understanding HR Schema and PCR with an Example

Understanding HR Schema and PCR with an Example Understanding HR Schema and PCR with an Example Applies to: SAP ECC 6.0 version, SAP HCM module. For more information, visit the Enterprise Resource Planning homepage. Summary This document will provide

More information

SAP Web 6.40. SAP Logging & Tracing API. Jeff Gebo SAP Labs, LLC.

SAP Web 6.40. SAP Logging & Tracing API. Jeff Gebo SAP Labs, LLC. SAP Web Application Server 6.40 SAP Logging & Tracing API Jeff Gebo SAP Labs, LLC. Agenda Logging and Tracing Overview Configuring your J2EE development system for logging and tracing. Log Configurator,

More information

Process Archiving using NetWeaver Business Process Management

Process Archiving using NetWeaver Business Process Management Process Archiving using NetWeaver Business Process Management Applies to: NetWeaver Composition Environment 7.2, 7.3. For more information, visit the Business Process Modeling homepage. Summary This document

More information

SAP Master Data Governance- Hiding fields in the change request User Interface

SAP Master Data Governance- Hiding fields in the change request User Interface SAP Master Data Governance- Hiding fields in the change request User Interface Applies to: ERP 6 Ehp 5 SAP Master Data Governance. For more information, visit the Master Data Management homepage. Summary

More information

Integration of SAP central user administration with Microsoft Active Directory

Integration of SAP central user administration with Microsoft Active Directory Collaboration Technology Support Center Microsoft - Collaboration Brief June 2005 Integration of SAP central user administration with Microsoft Active Directory Chris Kohlsdorf, Senior System Architect

More information

mysap PLM Lifecycle Collaboration: Transparente Produktentwicklung mit der cproject Suite Andreas Vetter Product Manager, SAP AG

mysap PLM Lifecycle Collaboration: Transparente Produktentwicklung mit der cproject Suite Andreas Vetter Product Manager, SAP AG mysap PLM Lifecycle Collaboration: Transparente Produktentwicklung mit der cproject Suite Andreas Vetter Product Manager, SAP AG Product Lifecycle Management (PLM), Edition 2003 PLM Solution Map, Edition

More information

Enterprise Software - Applications, Technologies and Programming

Enterprise Software - Applications, Technologies and Programming Enterprise Software - Applications, Technologies and Programming Dr. Uwe Kubach, Dr. Gregor Hackenbroich, Dr. Ralf Ackermann SAP Research 2010 SAP AG. All rights reserved. / Page 1 Abstract This lecture

More information

Backup & Restore with SAP BPC (MS SQL 2005)

Backup & Restore with SAP BPC (MS SQL 2005) How-to Guide SAP CPM How To Backup & Restore with SAP BPC (MS SQL 2005) Version 1.0 September 2007 Applicable Releases: SAP BPC 5.1 Copyright 2007 SAP AG. All rights reserved. No part of this publication

More information

Performance Best Practices Guide for SAP NetWeaver Portal 7.3

Performance Best Practices Guide for SAP NetWeaver Portal 7.3 SAP NetWeaver Best Practices Guide Performance Best Practices Guide for SAP NetWeaver Portal 7.3 Applicable Releases: SAP NetWeaver 7.3 Document Version 1.0 June 2012 Copyright 2012 SAP AG. All rights

More information

How to Create Web Dynpro-Based iviews. Based on SAP NetWeaver 04 Stack 09. Jochen Guertler

How to Create Web Dynpro-Based iviews. Based on SAP NetWeaver 04 Stack 09. Jochen Guertler How to Create Web Dynpro-Based iviews Based on SAP NetWeaver 04 Stack 09 Jochen Guertler Copyright Copyright 2004 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted

More information

Integration of SAP Netweaver User Management with LDAP

Integration of SAP Netweaver User Management with LDAP Integration of SAP Netweaver User Management with LDAP Applies to: SAP Netweaver 7.0/7.1 Microsoft Active Directory 2003 Summary The document describes the detailed steps of configuring the integration

More information

Problems with your Data Model in SAP NetWeaver MDM Do s and Don ts

Problems with your Data Model in SAP NetWeaver MDM Do s and Don ts How-to Guide SAP NetWeaver 7.0 (2004s) How to Avoid Problems with your Data Model in SAP NetWeaver MDM Do s and Don ts Version 1.00 May 2007 Applicable Releases: SAP NetWeaver 2004 SAP NetWeaver 7.0 (2004s)

More information

USDL XG WP3 SAP use case. Kay Kadner

USDL XG WP3 SAP use case. Kay Kadner XG WP3 SAP use case Kay Kadner Customer Marketplace Company B Runtime Company D Innovation & Community Community Company A Repository Company C Repository Provider Provider 2 Integrated Demonstrator -

More information

SAP CCMS Monitors Microsoft Windows Eventlog

SAP CCMS Monitors Microsoft Windows Eventlog MSCTSC Collaboration Brief November 2004 SAP CCMS Monitors Microsoft Windows Eventlog Christian Klink Member of CTSC Focus Group SAP Technology Consultant SAP Technology Consulting II SAP Deutschland AG

More information

How to Schedule Report Execution and Mailing

How to Schedule Report Execution and Mailing How To Guide SAP Business One Document Version: 1.0 2012-09-02 Applicable Releases: SAP Business One 8.81 PL10 and higher, SAP Business One 8.82 Typographic Conventions Type Style Example Description Words

More information

Business One in Action - How can we post bank fees and charges while posting Incoming or Outgoing Payment transactions?

Business One in Action - How can we post bank fees and charges while posting Incoming or Outgoing Payment transactions? Business One in Action - How can we post bank fees and charges while posting Incoming or Outgoing Payment transactions? Applies to: SAP Business One, Accounting, Banking and Reconciliation Summary: This

More information

BW370 BI Integrated Planning

BW370 BI Integrated Planning BI Integrated Planning SAP NetWeaver Course Version: 98 Course Duration: 5 Day(s) Publication Date: 2015 Publication Time: Copyright Copyright SAP SE. All rights reserved. No part of this publication may

More information

How to Set Up an Authorization for a Business Partner in Customer Relationship Management (CRM) Internet Sales: Sample Case

How to Set Up an Authorization for a Business Partner in Customer Relationship Management (CRM) Internet Sales: Sample Case How to Set Up an Authorization for a Business Partner in Customer Relationship Management (CRM) Internet Sales: Sample Case Applies to: SAP CRM 4.0 Internet Sales and beyond Summary You want to set up

More information

SOP through Long Term Planning Transfer to LIS/PIS/Capacity. SAP Best Practices

SOP through Long Term Planning Transfer to LIS/PIS/Capacity. SAP Best Practices SOP through Long Term Planning Transfer to LIS/PIS/Capacity SAP Best Practices Purpose, Benefits, and Key Steps Purpose Check if the budgeted sales quantities can be produced, assess material requirements

More information

Integrate Third Party Collaboration Tools in the SAP NetWeaver Portal. SAP NetWeaver Product Management

Integrate Third Party Collaboration Tools in the SAP NetWeaver Portal. SAP NetWeaver Product Management Integrate Third Party Collaboration Tools in the SAP NetWeaver Portal SAP NetWeaver Product Management Overview Native Third-Party Services Code Samples Summary Integration of Third-Party Collaboration

More information

BC - XBP Background Processing, Job Scheduling System Test Catalogue for BC-XBP 6.10 (Version 2.0) and BC-XBP 7.0 (Version 3.0)

BC - XBP Background Processing, Job Scheduling System Test Catalogue for BC-XBP 6.10 (Version 2.0) and BC-XBP 7.0 (Version 3.0) 1 BC - XBP Background Processing, Job Scheduling System Catalogue for BC-XBP 6.10 (Version 2.0) and BC-XBP 7.0 (Version 3.0) External Interface for Background Processing 2 regarding the certification of

More information

Data Archiving in CRM: a Brief Overview

Data Archiving in CRM: a Brief Overview Data Archiving in CRM: a Brief Overview Applies to: Developing Archiving Solutions in SAP CRM technology. For more information, visit the Customer Relationship Management homepage. Summary This document

More information

Grants Management - Grantee Workshop. Keith Harmon Product Manager, SAP Labs LLC

Grants Management - Grantee Workshop. Keith Harmon Product Manager, SAP Labs LLC Grants - Grantee Workshop Keith Harmon Product Manager, SAP Labs LLC Higher Education & 2003 Solution Map Organization Decision Support & Financial Budget Formulation Budget Execution Data Warehousing

More information

FSC130 SAP Bank Communication Management

FSC130 SAP Bank Communication Management SAP Bank Communication Management SAP ERP - Financials Course Version: 97 Course Duration: 2 Day(s) Publication Date: 2014 Publication Time: Copyright Copyright 2014 SAP AG. All rights reserved. No part

More information

SAPFIN. Overview of SAP ERP Financials COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s)

SAPFIN. Overview of SAP ERP Financials COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s) SAPFIN Overview of SAP ERP Financials. COURSE OUTLINE Course Version: 15 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2014 SAP AG. All rights reserved. No part of this publication may be reproduced

More information

User Experience in Custom Apps

User Experience in Custom Apps User Experience in Custom Apps p o w e r e d b y t h e S A P M o b i l e P l a t f o r m S e a n L o n g U X A r c h i t e c t M a n u e l S a e z - D i r e c t o r M o b i l e I n n o v a t i o n C e

More information

HR400 SAP ERP HCM Payroll Configuration

HR400 SAP ERP HCM Payroll Configuration HR400 SAP ERP HCM Payroll Configuration. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2014 SAP AG. All rights reserved. No part of this publication may be reproduced

More information

SAP Enterprise Portal 6.0 KM Platform Delta Features

SAP Enterprise Portal 6.0 KM Platform Delta Features SAP Enterprise Portal 6.0 KM Platform Delta Features Please see also the KM Platform feature list in http://service.sap.com/ep Product Management Operations Status: January 20th, 2004 Note: This presentation

More information

Learning Management Systems. SAP Learning Solution overview. Integration. Demonstration. 5 Wrap-up. SAP AG 2002, Title of Presentation, Speaker Name 2

Learning Management Systems. SAP Learning Solution overview. Integration. Demonstration. 5 Wrap-up. SAP AG 2002, Title of Presentation, Speaker Name 2 1 2 3 4 Learning Management Systems SAP Learning Solution overview Integration Demonstration 5 Wrap-up SAP AG 2002, Title of Presentation, Speaker Name 2 Learning Management System s (LMS) enable an organization

More information

RUN BETTER Become a Best-Run Business with Remote Support Platform for SAP Business One

RUN BETTER Become a Best-Run Business with Remote Support Platform for SAP Business One RUN BETTER Become a Best-Run Business with Remote Support Platform for SAP Business One September 2013 Customer External Become a Best-Run Business with Remote Support Platform for SAP Business One Run

More information

Installation Guide Customized Installation of SQL Server 2008 for an SAP System with SQL4SAP.VBS

Installation Guide Customized Installation of SQL Server 2008 for an SAP System with SQL4SAP.VBS Installation Guide Customized Installation of SQL Server 2008 for an SAP System with SQL4SAP.VBS Target Audience Technology Consultants System Administrators PUBLIC Document version: 1.00 09/16/2008 Document

More information

Analyzing Sales Data for Choosing Forecast Strategies

Analyzing Sales Data for Choosing Forecast Strategies Analyzing Sales Data for Choosing Forecast Strategies Applies to The article applies to the Demand Planner in SAP APO. Works for version 4.7 and upwards. Summary Choosing the right forecasting strategy

More information

Maintaining Different Addresses and Email Ids for a Business Partner via CRM Web UI

Maintaining Different Addresses and Email Ids for a Business Partner via CRM Web UI Maintaining Different Addresses and Email Ids for a Business Partner via CRM Web UI Applies to: CRM 7.0 SP09. For more information, visit the Customer Relationship Management homepage. Summary This article

More information

Alert Notification in SAP Supply Network Collaboration. SNC Extension Guide

Alert Notification in SAP Supply Network Collaboration. SNC Extension Guide Alert Notification in SAP Supply Network Collaboration SNC Extension Guide Version: 1.2 Date 08.02.2010 1 The SNC Extension Guide is a collection of tips and tricks on how to extend SAP Supply Network

More information

BC481 SAP Interactive Forms by Adobe

BC481 SAP Interactive Forms by Adobe SAP Interactive Forms by Adobe SAP NetWeaver Application Server - ABAP Course Version: 93 Course Duration: 2 Day(s) Publication Date: 27-02-2013 Publication Time: 0959 Copyright Copyright SAP AG. All rights

More information

Developing Applications for Integration between PI and SAP ERP in Different Network Domains or Landscapes

Developing Applications for Integration between PI and SAP ERP in Different Network Domains or Landscapes Developing Applications for Integration between PI and SAP ERP in Different Network Domains or Landscapes Applies to: SAP NetWeaver Process Integration 7.1+ SAP NetWeaver 7.02 (ABAP) Summary This document

More information

SAP NetWeaver BRM 7.3

SAP NetWeaver BRM 7.3 SAP NetWeaver BRM 7.3 New Features Overview Arti Gopalan Solution Specialist SAP NetWeaver BRM NetWeaver Orchestration SAP Labs India Agenda Technical Components of NW BRM Rules Composer Rules Manager

More information

Third Party Digital Asset Management Integration

Third Party Digital Asset Management Integration Third Party Digital Asset Management Integration Objectives At the end of this unit, you will be able to: Assign Digital Assets to CRM Objects Work with the Where-Used List Describe the necessary customizing

More information

R/3 and J2EE Setup for Digital Signature on Form 16 in HR Systems

R/3 and J2EE Setup for Digital Signature on Form 16 in HR Systems R/3 and J2EE Setup for Digital Signature on Form 16 in HR Systems Agenda 1. R/3 - Setup 1.1. Transaction code STRUST 1.2. Transaction code SM59 2. J2EE - Setup 2.1. Key Storage 2.2. Security Provider 2.3.

More information

SAP GUI Scripting Security Guide

SAP GUI Scripting Security Guide SAP GUI Scripting Security Guide SAP GUI for Windows Release 6.40/7.10 SAP Technical Information December 2006 2 Contents 1. INTRODUCTION... 4 2. INSTALLATION... 4 3. PROTECTING CRITICAL SAP SYSTEMS...

More information

Integrating Easy Document Management System in SAP DMS

Integrating Easy Document Management System in SAP DMS Integrating Easy Document Management System in SAP DMS Applies to: SAP Easy Document Management System Version 6.0 SP12. For more information, visit the Product Lifecycle Management homepage. Summary This

More information

TM111. ERP Integration for Order Management (Shipper Specific) COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s)

TM111. ERP Integration for Order Management (Shipper Specific) COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s) TM111 ERP Integration for Order Management (Shipper Specific). COURSE OUTLINE Course Version: 15 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2014 SAP SE. All rights reserved. No part of this

More information

UI Framework Simple Search in CRM WebClient based on NetWeaver Enterprise Search (ABAP) SAP Enhancement Package 1 for SAP CRM 7.0

UI Framework Simple Search in CRM WebClient based on NetWeaver Enterprise Search (ABAP) SAP Enhancement Package 1 for SAP CRM 7.0 UI Framework Simple Search in CRM WebClient based on NetWeaver Enterprise Search (ABAP) SAP Enhancement Package 1 for SAP CRM 7.0 1 Objectives At the end of this unit, you will be able to: Use the new

More information

NWBC10 NetWeaver Business Client

NWBC10 NetWeaver Business Client NetWeaver Business Client SAP NetWeaver Course Version: 96 Course Duration: 1 Day(s) Publication Date: 2015 Publication Time: Copyright Copyright SAP SE. All rights reserved. No part of this publication

More information

How to Create a Support Message in SAP Service Marketplace

How to Create a Support Message in SAP Service Marketplace How to Create a Support Message in SAP Service Marketplace Summary This document explains how to create a message (incident) on the SAP Service Marketplace. It is assumed that the customer has never logged

More information

UI Framework Task Based User Interface. SAP Enhancement Package 1 for SAP CRM 7.0

UI Framework Task Based User Interface. SAP Enhancement Package 1 for SAP CRM 7.0 UI Framework Task Based User Interface SAP Enhancement Package 1 for SAP CRM 7.0 1 Agenda 1. Overview 2. Task Based User Interface 3. Further Information SAP 2009 / Page 2 2 Objectives of the Presentation

More information

Application Lifecycle Management

Application Lifecycle Management Application Lifecycle Management Best Practice Process Document ALM Process: ITSM - Incident Management Application Lifecycle Management Process ITSM Incident Management Problem Description: How to create,

More information

Multiple Components in One Database -

Multiple Components in One Database - Multiple Components in One Database - Technical Implementation on Different Databases Dr. Georg Leffers SAP AG Technical Setup The following slides show for all databases supported by SAP the technical

More information

Extract Archived Data from SAP ERP

Extract Archived Data from SAP ERP How-to Guide SAP NetWeaver 7.0 How To Extract Archived Data from SAP ERP Version 1.00 May 2006 Applicable Releases: SAP NetWeaver 7.0 (BI capability) Copyright 2008 SAP AG. All rights reserved. No part

More information

AC200. Basics of Customizing for Financial Accounting: General Ledger, Accounts Receivable, Accounts Payable COURSE OUTLINE

AC200. Basics of Customizing for Financial Accounting: General Ledger, Accounts Receivable, Accounts Payable COURSE OUTLINE AC200 Basics of Customizing for Financial Accounting: General Ledger, Accounts Receivable, Accounts Payable. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2015

More information

Posting Messages into XI

Posting Messages into XI Posting Messages into XI Applies to: SAP NetWeaver Exchange Infrastructure Summary This article demonstrates how easy it is to post XML/SOAP messages into SAP NetWeaver Exchange Infrastructure (XI) using

More information

SAP HANA Cloud Integration Document Version: 1.0-2012-12-22. Template Guide for SAP Sales and Operations Planning

SAP HANA Cloud Integration Document Version: 1.0-2012-12-22. Template Guide for SAP Sales and Operations Planning SAP HANA Cloud Integration Document Version: 1.0-2012-12-22 Template Guide for SAP Sales and Operations Planning Table of Contents 1 About the templates....3 2 Sales and Operations Planning templates....5

More information

SAP Central Process Scheduling (CPS) 8.0 by Redwood

SAP Central Process Scheduling (CPS) 8.0 by Redwood SAP Central Process Scheduling (CPS) 8.0 by Redwood What s new in SAP CPS 8.0? November 2010 Agenda 1. SAP Central Process Scheduling by Redwood Architecture Overview 2. Enhanced User Interface 3. New

More information

OData in a Nutshell. August 2011 INTERNAL

OData in a Nutshell. August 2011 INTERNAL OData in a Nutshell August 2011 INTERNAL Objectives At the end of this module, you will be able to: Understand the OData Standard and how it works. Understand how OData uses the Atom Protocol. Understand

More information

Integration of Universal Worklist into Microsoft Office SharePoint

Integration of Universal Worklist into Microsoft Office SharePoint Integration of Universal Worklist into Microsoft Office SharePoint Applies to: SAP NetWeaver Portal 7.01 SP3 Microsoft Office SharePoint 2007 For more information, visit the Portal and Collaboration homepage.

More information

mysap Business Solutions on Linux

mysap Business Solutions on Linux mysap Business Solutions on Linux Manfred Stein Product Manager SAP LinuxLab & Unix Platforms Presentation Overview SAP AG today Availability history of SAP solutions on Linux Get mysap on Linux running

More information

Portfolio and Project Management 5.0: Excel Integration for Financial and Capacity Planning

Portfolio and Project Management 5.0: Excel Integration for Financial and Capacity Planning Portfolio and Project Management 5.0: Excel Integration for Financial and Capacity Planning Applies to: Portfolio and Project Management 5.0 Summary Financial and Capacity planning for item, initiative

More information

Using SAP Logon Tickets for Single Sign on to Microsoft based web applications

Using SAP Logon Tickets for Single Sign on to Microsoft based web applications Collaboration Technology Support Center - Microsoft - Collaboration Brief March 2005 Using SAP Logon Tickets for Single Sign on to Microsoft based web applications André Fischer, Project Manager CTSC,

More information

prioritize XI messages on integration server

prioritize XI messages on integration server How-to Guide SAP NetWeaver 2004s How To prioritize XI messages on integration server Version 1.00 May 2006 Applicable Releases: SAP NetWeaver 2004s Process Integration Enabling Application-to-Application

More information

Intelligent Business Operations Chapter 1: Overview & Strategy

Intelligent Business Operations Chapter 1: Overview & Strategy Intelligent Business Operations Chapter 1: Overview & Strategy Legal Disclaimer The information in this presentation is confidential and proprietary to SAP and may not be disclosed without the permission

More information

BW Workspaces Use Cases

BW Workspaces Use Cases BW Workspaces Use Cases Applies to SAP NetWeaver Business Warehouse 7.30 (BW7.30) SP05 and SAP NetWeaver Business Warehouse Accelerator 7.20 (BWA7.20)/HANA 1.0 running as a database for SAP NetWeaver BW

More information

SAP NetWeaver MDM 5.5 SP3 SAP Portal iviews Installation & Configuration. Ron Hendrickx SAP NetWeaver RIG Americas Foundation Team

SAP NetWeaver MDM 5.5 SP3 SAP Portal iviews Installation & Configuration. Ron Hendrickx SAP NetWeaver RIG Americas Foundation Team SAP NetWeaver MDM 5.5 SP3 SAP Portal iviews Installation & Configuration Ron Hendrickx SAP NetWeaver RIG Americas Foundation Team Prerequisites Required: Basic MDM knowledge Basic EP6 content management

More information

SAP Business ByDesign Reference Systems. Scenario Outline. SAP ERP Integration Scenarios

SAP Business ByDesign Reference Systems. Scenario Outline. SAP ERP Integration Scenarios SAP Business ByDesign Reference Systems Scenario Outline SAP ERP Integration Scenarios Content Scenario Overview Business Scenarios in a Reference System Introduction Typical Usage Process Illustration

More information

How to configure BusinessObjects Enterprise with Citrix Presentation Server 4.0

How to configure BusinessObjects Enterprise with Citrix Presentation Server 4.0 How to configure BusinessObjects Enterprise with Citrix Presentation Server 4.0 Applies to: BusinessObjects Enterprise XI 3.0 Summary The objective of this document is to provide steps to install and configure

More information

Accounts Receivable. SAP Best Practices

Accounts Receivable. SAP Best Practices Accounts Receivable SAP Best Practices Purpose, Benefits, and Key Steps Purpose This scenario deals with posting accounting data for customers in Accounts Receivable. Benefits The Accounts Receivable is

More information

Integrated Offshore Consulting Services Help Companies To Focus On Their Business

Integrated Offshore Consulting Services Help Companies To Focus On Their Business Integrated Offshore Consulting Services Help Companies To Focus On Their Business Jörg Bartelt, Global Business Development SAP Consulting UNECE Brussels, 5 th October 2004 Integrated Offshore Consulting

More information

BIT601 SAP Workflow Definition and Use of Customer-Specific Workflows

BIT601 SAP Workflow Definition and Use of Customer-Specific Workflows SAP Workflow Definition and Use of Customer-Specific Workflows SAP NetWeaver Course Version: 94 Course Duration: 5 Day(s) Publication Date: 2014 Publication Time: Copyright Copyright SAP SE. All rights

More information

K in Identify the differences between the universe design tool and the information design tool

K in Identify the differences between the universe design tool and the information design tool K in Identify the differences between the universe design tool and the information design tool The information design tool is a new modeling tool for the semantic layer that enables you to manipulate metadata

More information

Balance Sheet and Profit & Loss Statement in SAP BW

Balance Sheet and Profit & Loss Statement in SAP BW Balance Sheet and Profit & Loss Statement in SAP BW Release BI Content 3.2 Add-On Copyright Copyright 2002 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any

More information

Collaboration Technology Support Center - Microsoft - Collaboration Brief

Collaboration Technology Support Center - Microsoft - Collaboration Brief Collaboration Technology Support Center - Microsoft - Collaboration Brief February 2007 Single Sign-On to a Microsoft Exchange Cluster Summary Users of the SAP NetWeaver Portal can take advantage of Single

More information

Run SAP like a Factory

Run SAP like a Factory Run SAP like a Factory Best Practice Process Document ALM Process: Technical Operations Service Level Reporting Process Health Service Level Reporting ALM Process Technical Operations Process Health Service

More information

Methodology to Implement SAP Process Integration

Methodology to Implement SAP Process Integration Methodology to Implement SAP Process Integration Applies to: SAP NetWeaver, SAP Exchange Infrastructure, SAP Process Integration Summary When starting a SAP PI project from scratch, it is very important

More information

SAP Sales and Operations Planning Software Product (xsop)

SAP Sales and Operations Planning Software Product (xsop) SAP Sales and Operations Planning Software Product (xsop) Ray Adams IBU Chemicals March 20 th, 2007 S&OP Overview Functions in xsop Demonstration Wrap-up Why is Sales & Operations Planning needed? Constrained

More information

BICS Connectivity for Web Intelligence in SAP BI 4.0. John Mrozek / AGS December 01, 2011

BICS Connectivity for Web Intelligence in SAP BI 4.0. John Mrozek / AGS December 01, 2011 BICS Connectivity for Web Intelligence in SAP BI 4.0 John Mrozek / AGS December 01, 2011 Introduction Business Intelligence Consumer Services connectivity for Web Intelligence in SAP BI 4.0 This presentation

More information

How-to-Guide: Middleware Settings for Download of IPC Configuration (KB) Data from R/3 to CRM System

How-to-Guide: Middleware Settings for Download of IPC Configuration (KB) Data from R/3 to CRM System How-to-Guide: Middleware Settings for Download of IPC Configuration (KB) Data from R/3 to CRM System Applies to: The IPC (Internet Pricing and Configurator). For more information, visit the Customer Relationship

More information