Internet Communicator Manager (ICM) Test Quiz

Reviewed by Editorial Team
The ProProfs editorial team is comprised of experienced subject matter experts. They've collectively created over 10,000 quizzes and lessons, serving over 100 million users. Our team includes in-house content moderators and subject matter experts, as well as a global network of rigorously trained contributors. All adhere to our comprehensive editorial guidelines, ensuring the delivery of high-quality content.
Learn about Our Editorial Process
| By Vanessa
V
Vanessa
Community Contributor
Quizzes Created: 1 | Total Attempts: 186
| Attempts: 186 | Questions: 68
Please wait...
Question 1 / 68
0 %
0/100
Score 0/100
1. You suspects taht tehre is an issue with network connections from the application layer..Which chech do you perform in wich transaction?

Explanation

In order to determine if there is an issue with network connections from the application layer, you would perform a LAN check by ping in transaction operating System Monitor (ST06(n)). This transaction allows you to test the network connectivity by sending a ping command to a specified IP address or hostname. By checking the LAN connectivity, you can identify any potential network issues that may be affecting the application layer.

Submit
Please wait...
About This Quiz
Internet Communicator Manager (ICM) Test Quiz - Quiz

This Internet Communicator Manager (ICM) Test assesses skills in configuring server caches, managing database queries, and optimizing system performance. It is crucial for professionals aiming to enhance SAP system efficiency.

Tell us your name to personalize your report, certificate & get on the leaderboard!
2.
  1. Which of the following is not a component of dialog response time?Choose the correct answer.

Explanation

CPU idle time is not a component of dialog response time. Dialog response time refers to the time it takes for a system to respond to a user's input or request. The components of dialog response time typically include wait time (the time a user waits for a response), roll in/out (the time it takes to load or unload data), and database request (the time it takes to retrieve data from a database). CPU idle time, on the other hand, refers to the time when the CPU is not actively processing any tasks.

Submit
3. Where is the default location of the statistical records that are written to the file system? Choose the correct answer.

Explanation

The default location of the statistical records that are written to the file system is in the directory /usr/sap//DVEBMGS##/data.

Submit
4. 2. Which of the following are two key criteria when evaluating performance problems? Choose the correct answers.

Explanation

The two key criteria when evaluating performance problems are whether the performance problem occurred in the past and whether the problem is happening right now. These criteria help in understanding the frequency and persistence of the performance issue, which can provide valuable insights for troubleshooting and finding solutions. The other options, such as identifying the user experiencing the problem or considering the time of day, may not be as relevant in determining the cause and resolution of the performance problem.

Submit
5. 4. Which of the following profile parameters affect activation of dynamic work processes? Choose the correct answer.

Explanation

The correct answer is D) rdisp/dynamic_wp_check. This profile parameter affects the activation of dynamic work processes. When this parameter is set to a non-zero value, the system dynamically activates additional work processes based on the workload. This allows for better utilization of system resources and improved performance.

Submit
6. 1. Virtual memory is made up of OS swap or page file and physical memory components. Determine whether this statement is true or false.

Explanation

This statement is true. Virtual memory is indeed made up of the operating system's swap or page file and physical memory components. The swap or page file is a portion of the hard drive that the operating system uses as an extension of physical memory. It allows the operating system to temporarily store data that is not currently being used by programs in physical memory. When the data is needed again, it can be swapped back into physical memory. This helps to optimize memory usage and allows for efficient multitasking.

Submit
7. 2. There is hardware bottleneck in the CPU if processing time is more than twice the CPU time. Determine whether this statement is true or false.

Explanation

The statement is true. A hardware bottleneck occurs in the CPU when the processing time exceeds twice the CPU time. This means that the CPU is unable to handle the workload efficiently, resulting in slower processing times. A hardware bottleneck can occur due to various reasons such as outdated or insufficient hardware components, excessive heat, or inadequate memory. When a hardware bottleneck occurs, it can negatively impact the overall performance and efficiency of the system.

Submit
8. 2. Which of the following parameter controls the buffer synchronization behavior in the SAP system? Choose the correct answer.

Explanation

The parameter "rdisp/bufremode" controls the buffer synchronization behavior in the SAP system. This parameter determines whether the buffer is shared or not between different application servers. If set to "0", the buffer is not shared and each application server has its own private buffer. If set to "1", the buffer is shared and changes made by one application server are visible to other application servers as well. Therefore, the correct answer is C) rdisp/bufremode.

Submit
9. 1. Which of the following types of RFC calls guarantees multiple communications steps in a specific order? Choose the correct answer.

Explanation

Queued RFC calls guarantee multiple communication steps in a specific order. In a queued RFC, the calling program sends the request to a queue, and the receiving program retrieves the request from the queue and processes it. This ensures that the communication steps occur in the order they were sent, allowing for reliable and sequential execution of the RFC calls. Asynchronous RFC calls do not guarantee a specific order, while transactional RFC calls ensure atomicity but not a specific order. Synchronous RFC calls also do not guarantee a specific order.

Submit
10. In the transaction Worload Monitos (ST03N), what is he main indicatos of poor database per...

Explanation

The main indicator of poor database performance in the transaction workload monitor (ST03N) is when the average DB request time is more than 40% of the average response time. This suggests that a significant portion of the response time is being spent on database requests, indicating potential inefficiencies or bottlenecks in the database system.

Submit
11. 3. Which of the following tools is best for monitoring and analyzing issues in the transactional RFC queue? Choose the correct answer.

Explanation

SM58 is the correct answer for monitoring and analyzing issues in the transactional RFC queue. SM58 is a transaction code in SAP that allows users to monitor and analyze the status of transactional RFC queues. It provides detailed information about the queued and processed RFCs, allowing users to identify and resolve any issues or errors in the queue. SM58 is specifically designed for monitoring and managing transactional RFC queues, making it the best tool for this purpose.

Submit
12. What is an expensive SQL statement?

Explanation

An expensive SQL statement refers to an SQL statement that causes the database to read a large number of blocks from either the disk or the database itself. This can result in slower performance and increased resource usage. It indicates that the statement is not optimized and may need to be improved by implementing changes related to the database.

Submit
13. When you are investigationg a database issue you find an often used expensive... How can you imporve the performance of this query?

Explanation

Creating an index using selective fields from the WHERE clause can improve the performance of the query. This is because an index allows the database to quickly locate the relevant data based on the indexed fields, reducing the need for full table scans. By selectively choosing the fields from the WHERE clause to create the index, the database can efficiently retrieve the required data, resulting in improved query performance.

Submit
14. What is the purpose of buffering data in SAP table buffers?

Explanation

The purpose of buffering data in SAP table buffers is to reduce the load on the database and to speed up access to data. By buffering data, the system can store frequently accessed data in memory, reducing the need to retrieve it from the database every time it is requested. This helps to improve system performance and response times, as well as reduce the workload on the database server. Additionally, buffering data can also help in creating better access paths to data, further optimizing data retrieval processes.

Submit
15. Which RFC is used for multiple communication steps that must be completed in a p..

Explanation

Queued RFC (qRFC) is the correct answer because it is used for multiple communication steps that must be completed in a particular order. qRFC allows the sending system to queue the RFC request and ensures that the receiving system processes the requests in the same order they were sent. This ensures the integrity and consistency of the data being exchanged between systems. Unlike other options like Synchronous RFC (sRFC), Asynchronous RFC (aRFC), and Transactional RFC (tRFC), qRFC specifically focuses on maintaining the order of communication steps.

Submit
16. What is the SAP Operating System Collector (SAPOSCOL)?

Explanation

The correct answer is that SAPOSCOL is an SAP proprietary standalone program for collecting Operating System usage information.

Submit
17. Why are parts of user context stored in extended memory instead of the locacl memory of a...

Explanation

Parts of user context are stored in extended memory instead of local memory to speed up context switches. Context switches involve saving the current state of a process and loading the saved state of another process. By storing the user context in extended memory, the switching process becomes faster as the data can be accessed more efficiently. This helps in improving the overall performance of the system by reducing the time taken for context switches.

Submit
18. In which sequences do dialog work processes allocate memory?

Explanation

Dialog work processes allocate memory in the initial part of the roll area, extended memory, remaining part of the roll area, and heap memory.

Submit
19. In transaction Operating System monitor (ST06(n)) you detected taht CPU idle calue on a server.. How should you investigate this situation?

Explanation

To investigate the situation of CPU idle value on a server, it is recommended to check if the load can be distributed to other servers with spare CPU capacity. This will help balance the workload and utilize available resources efficiently. Additionally, checking the 'Top 40 CPU Processes' in the transaction Operating System monitor (ST06(n)) can provide insights into the processes consuming the most CPU resources, allowing for further investigation and optimization if necessary.

Submit
20. 3. Which of the following parameters lead to the allocation of heap memory for dialog processes? Choose the correct answers.

Explanation

The correct answers for the question are B) em/max_size_MB and D) Ztta/roll_extension. These parameters are responsible for allocating heap memory for dialog processes. em/max_size_MB determines the maximum heap memory size in megabytes that can be allocated for a dialog process, while Ztta/roll_extension determines the size of the extended memory that can be used for roll area in dialog processes.

Submit
21. 4. The user's context is initially stored in the heap area in the shared memory..  Determine whether this statement is true or false.

Explanation

The statement is false. The user's context is not initially stored in the heap area in the shared memory. The user's context typically includes information such as the program counter, register values, and stack pointer, and it is usually stored in the stack area of memory. The heap area is used for dynamically allocated memory.

Submit
22. In transaction Operating System monitor (ST06(n)) in an ABAP-only system, how can you?

Explanation

2 answers

Submit
23. 6. Programs which show database request time > 40 % (response time – wait time) in the transaction profile of ST03 are potential candidates for containing expensive SQL statements. Determine whether this statement is true or false.

Explanation

The statement is true. If the database request time is greater than 40% of the response time minus the wait time in the transaction profile of ST03, it indicates that the SQL statements used in the program are taking a significant amount of time to execute. This suggests that these SQL statements are expensive and may need to be optimized or improved for better performance.

Submit
24. 2. What is RFC+CPIC time in synchronous RFC? Choose the correct answer.

Explanation

The RFC+CPIC time in synchronous RFC refers to the time needed to establish the RFC communication plus the roll out time, roll wait time, and roll in time. This means that it includes the time required to establish the communication with the RFC server, as well as the additional time for the various roll operations.

Submit
25. . Which of the following RFC quota parameters should be set to maintain the number of dialog work processes that should be kept free for users? Choose the correct answer.

Explanation

The correct answer is B) rdisp/rfc_min_wait_dia_wp. This parameter should be set to maintain the number of dialog work processes that should be kept free for users.

Submit
26. Wich os the followings transactions can you used to monitor the performance of an SAp system

Explanation

3 answers

Submit
27. How should optimizer statistics be kept up to date?

Explanation

The optimizer statistics should be kept up to date by using scheduled periodic refreshes. This means that the statistics should be refreshed at regular intervals to ensure that the optimizer has the most accurate and current information about the data in the database. This helps the optimizer make better decisions when creating execution plans for queries and optimizing performance. By scheduling periodic refreshes, the statistics are automatically updated without the need for manual intervention, ensuring that the optimizer always has the most up-to-date information.

Submit
28. A Single Statistical Record captures an entire transaction in SAP.Determine whether this statement is true or false.

Explanation

The statement "A Single Statistical Record captures an entire transaction in SAP" is false. A Single Statistical Record in SAP captures statistical data related to a transaction, such as the time it took to complete or the number of times it occurred. However, it does not capture the entire transaction itself, including all the details and data associated with it.

Submit
29.
  1. Which of the following transactions are used in evaluating system performance?Choose the correct answers.

Explanation

The transactions ST03, SM04, and SM66 are used in evaluating system performance. ST03 is used to analyze workload and performance data, SM04 is used to monitor the number of active users and sessions, and SM66 is used to monitor and analyze system-wide performance and workload distribution. These transactions provide valuable information and insights into the performance of the system, allowing for optimization and troubleshooting.

Submit
30. What are potential measures for the Internet Communicator manager (ICM)?

Explanation

There are 2 correct answers to this question.

Submit
31. 2. In transaction ST02, there is a problem if there is a lot of swapping in the SAP buffers. Determine whether this statement is true or false.

Explanation

In transaction ST02, there can indeed be a problem if there is a lot of swapping in the SAP buffers. Swapping refers to the process of moving data between the main memory and the disk, and excessive swapping can lead to performance issues and slower response times. Therefore, it is true that there can be a problem if there is a lot of swapping in the SAP buffers.

Submit
32. 1. Which of the following from the Operating System Monitor (transaction ST06) indicates that there is some hardware bottleneck in the SAP system if it happens all the time? Choose the correct answers.

Explanation

High CPU utilization near 100% indicates that the CPU is constantly being utilized to its maximum capacity, which can be a sign of a hardware bottleneck in the SAP system. High swap/paging activity indicates that the system is frequently swapping data between the RAM and the hard disk, which can also be a sign of a hardware bottleneck. Both of these indicators suggest that the system is struggling to handle the workload efficiently, potentially due to limitations in the hardware resources.

Submit
33. 3. Which of the following tools can be used to check the formulas and the values used in the formula-based memory parameters? Choose the correct answer.

Explanation

The correct answer is C) Executable program sappfpar. This program can be used to check the formulas and the values used in the formula-based memory parameters.

Submit
34. 3. Which of the following SQL statements cannot be tuned? Choose the correct answers.

Explanation

not-available-via-ai

Submit
35. 5. Which of the following can be found in the Explain function in SQL trace? Choose the correct answers.

Explanation

The Explain function in SQL trace provides information about the execution plan, including table and index access. It also provides estimated costs and estimated rows for the query. Additionally, it provides statistics about the tables and indexes used in the query.

Submit
36. Which of the following areas fo an instance's shared memory have corresponding files on the ...

Explanation

2 correct answers

Submit
37. 1. Which of the following are valid options for table buffering types? Choose the correct answers.

Explanation

The valid options for table buffering types are: Single record buffered, Generic area buffered, and Fully buffered. These buffering types determine how data is stored and accessed in memory for a table. Single record buffered means that only one record is loaded into memory at a time, while generic area buffered means that a range of records is loaded. Fully buffered means that the entire table is loaded into memory. Client specific buffered is not a valid option for table buffering types.

Submit
38. Why is buffer synchronization important in an SAP system with more than one instance?

Explanation

2 correct answers

Submit
39. You are reviewing RRC data in the transaction Worload Monitor (ST03N).Which RFC profile provides information about function modules in other systems that are...

Explanation

The correct answer is RFC client profile. In the transaction Worload Monitor (ST03N), the RFC client profile provides information about function modules in other systems that are called by the current system. This profile helps in analyzing the performance and usage of RFC calls made by the current system to other systems.

Submit
40. When you run transaction Table Call Statisctics (ST10), which of the followinf indicates that...

Explanation

The correct answer indicates that when running transaction Table Call Statistics (ST10), tables with a high number of 'Rows affected', tables with a large buffer size, and tables with a high number of invalidations are indicators of certain characteristics or issues within the tables. These indicators may suggest that these tables are experiencing frequent updates or modifications, have a large amount of data stored in memory, and are prone to becoming invalidated or outdated frequently. These indicators can provide insights into the performance and usage of the tables.

Submit
41. A customer's system is set up with many identical instances. Some instances have a....How can the custimer resolve this issue?

Explanation

The customer can resolve the issue by using the SAP Web Dispatcher or checking its configuration. This suggests that the problem may be related to the configuration of the SAP Web Dispatcher, which is responsible for distributing incoming requests to the appropriate instances. By checking its configuration, the customer can identify any potential issues and make necessary adjustments to resolve the problem.

Submit
42. Which buffering types are avaible in SAP table buffers?

Explanation

3 answers

Submit
43. What does Zero Administration memory management do?

Explanation

Zero Administration memory management allows the total extended memory size to grow dynamically and also allows other memory parameters to be set automatically. This means that the system can automatically adjust the memory allocation based on the needs of the applications running, without the need for manual intervention from the administrator. This ensures optimal memory usage and eliminates the need for constant monitoring and adjustment of memory parameters.

Submit
44. 1. Which of the following transactions are used to evaluate the work process statuses and activities that are currently happening? Choose the correct answers.

Explanation

Transactions SM50 and SM66 are used to evaluate the work process statuses and activities that are currently happening. SM50 is used to monitor the work processes in the SAP system, providing information about their status, CPU usage, and memory usage. SM66 is used to monitor the server processes and their status, allowing administrators to identify any performance issues or bottlenecks. Both transactions provide real-time information about the work processes and activities, making them suitable for evaluating the current state of the system.

Submit
45. 3. Table buffering is recommended for which of the following scenarios? Choose the correct answers.

Explanation

Table buffering is recommended for tables that are seldom changed and for customizing data. Table buffering helps improve performance by storing frequently accessed data in memory, reducing the need to access the database. This is particularly beneficial for tables that are not frequently updated, as it allows for faster retrieval of data. Additionally, buffering customizing data can help improve the performance of applications that rely on this data for customization purposes.

Submit
46. In transaction Workload Analysis monitor (ST03(N)) average roll-wait time for task type DI..Which of the following can cause this issue?

Explanation

Communication problems with the GUI front end and problems with the external RFC communication can cause the average roll-wait time for task type DI to increase. These issues can lead to delays in the communication between the SAP system and the front end or external systems, resulting in longer wait times for the tasks to complete. This can impact the overall performance and efficiency of the system.

Submit
47. Which elements of totak response time should be under 20ms?

Explanation

2 answers correct

Submit
48. Where and when is ABAP heap memory allocated?

Explanation

ABAP heap memory is allocated in the local memory of the work process when required. This means that the memory is allocated dynamically as needed during the execution of the program. The work process is responsible for managing its own local memory and allocating heap memory when necessary to store data and objects. This allows for efficient memory usage as memory is only allocated when it is actually needed, and it is deallocated when it is no longer required.

Submit
49. 3. SWAPS in transaction ST02 are an indication of high CPU utilization. Determine whether this statement is true or false.

Explanation

This statement is false. SWAPS in transaction ST02 are not necessarily an indication of high CPU utilization. SWAPS, also known as page swaps or paging, occur when the operating system moves data from the main memory (RAM) to the secondary storage (hard disk) to free up space in RAM. This is done when the RAM is full or when the operating system decides to optimize memory usage. SWAPS can occur due to various reasons, such as insufficient RAM, memory leaks, or high memory usage by other processes. It is not directly related to CPU utilization.

Submit
50. 4. PHYS_MEMSIZE indicates how much memory is used in an SAP instance and it can be used to automatically initiate changes of those formula-based memory parameters. Determine whether this statement is true or false.

Explanation

The statement is true. PHYS_MEMSIZE is a parameter that indicates the amount of memory used in an SAP instance. It can be used to automatically initiate changes of formula-based memory parameters, allowing for efficient memory management and optimization within the SAP system.

Submit
51. 4. The ABAP trace (transaction SE30 or SAT) is the tool to use if we want to find out more about the expensive SQL statement and its execution plan. Determine whether this statement is true or false.

Explanation

The ABAP trace (transaction SE30 or SAT) is not the tool to use if we want to find out more about the expensive SQL statement and its execution plan. Therefore, the statement is false.

Submit
52. 4. SQL trace (transaction ST05) offers a lot of information on table accesses, which includes the database activities, number of ABAP requests, and number of invalidations. Determine whether this statement is true or false.

Explanation

The statement is false. SQL trace (transaction ST05) does offer information on table accesses, but it does not include the number of ABAP requests or number of invalidations. SQL trace primarily provides information on the execution of SQL statements and their performance in the database.

Submit
53. .... explain plan for an expensive SQL statement?

Explanation

2 correct answers to this question

Submit
54. In transaction Work Porcess Overview (SM50/SM66) you see that many work processes are...What should you do to identify the cause of this issue?

Explanation

To identify the cause of the issue, you should check the 'Top 40 CPU Processes' in the Operating System Monitor (ST06(n)) transaction. This will provide information on the processes consuming the most CPU resources. Additionally, you should also check if all work processes in PRIV mode are using the same transaction or report, as this could be a potential cause of the issue.

Submit
55. Where can you find the top expensive SQL statements on the system?

Explanation

The cursor cache of the DBA Cockpit is where you can find the top expensive SQL statements on the system. The cursor cache is a storage area that holds SQL statements and their execution plans. By analyzing the cursor cache, administrators can identify the SQL statements that are consuming the most resources and optimize them if necessary. This allows for better performance and efficiency in the system.

Submit
56. You are invcestigating a performance problem In trnasaction Work Process Overview (SAM50). What do you next?

Explanation

Analyzing the SAP memory configuration is the next step in investigating a performance problem in the transaction work process overview. This is because memory issues can often cause performance problems in SAP systems. By analyzing the memory configuration, it is possible to identify any potential issues or bottlenecks that may be impacting the performance of the system. This can include checking the allocation and usage of different types of memory, such as shared memory or buffer memory, and adjusting the configuration as necessary to optimize performance.

Submit
57.   How can expensive SQL statements cause poor performance of other programs?

Explanation

Expensive SQL statements can cause poor performance of other programs by causing them to wait for the database and/or work processes. This means that other processes have to wait for the SQL statement to finish executing before they can access the database or perform their tasks. Additionally, these statements can create a hardware bottleneck on the database server, resulting in poor database performance. Furthermore, these statements can displace many blocks from the database buffer, which need to be replaced by other processes, causing further delays and impacting overall performance.

Submit
58. What is the main indicator of a CPU bottleneck?

Explanation

When the processing time is more than twice the CPU time, it indicates a CPU bottleneck. This means that the CPU is taking longer to process tasks compared to the time it spends actually performing calculations or executing instructions. This can be a sign of inefficiency or overload on the CPU, causing delays in overall system performance.

Submit
59. What are dymanic work porcesses? 

Explanation

not-available-via-ai

Submit
60. Wich of the following SQL statements types always bypass the SAP table buffers?

Explanation

"Select Distinct" statements, Native SQL statements, and "Select for Update" statements always bypass the SAP table buffers. The "Select Distinct" statement retrieves only unique values from a table, and since it does not require any buffering, it bypasses the table buffers. Native SQL statements allow direct interaction with the database, bypassing any buffering mechanisms. "Select for Update" statements lock the selected rows for update, bypassing the table buffers to ensure data consistency. Therefore, these three types of SQL statements always bypass the SAP table buffers.

Submit
61. What is the most likely cause dor a high 'wait time' in a system?

Explanation

A high 'wait time' in a system is most likely caused by an insufficient number of free processes. When there are not enough processes available to handle the workload, tasks have to wait in a queue, leading to increased wait times. This can result in slower system performance and delays in executing tasks.

Submit
62. Wich response time elements that are displayed in transaction Workload monitor (ST03N)

Explanation

3 answers

Submit
63. 1. Which of the following statements is considered to be an expensive SQL statement? Choose the correct answers.

Explanation

A) SQL statement which requires many records to be transferred to the ABAP program can be considered expensive because it requires a large amount of data to be transferred between the database and the program, which can be time-consuming and resource-intensive.
C) SQL statement which reads many blocks but retrieves only a few records from the database can also be considered expensive as it requires reading a large number of database blocks to retrieve a small amount of data, which can result in unnecessary I/O operations and impact performance.

Submit
64. A customer complains taht a particular transaction performs badly, Which of the followings transactions can you use to investigate the performance details - average...

Explanation

The correct answer is "Workload monitor (ST03N)". The workload monitor is a tool in SAP that provides detailed information about system performance and workload statistics. It allows you to analyze the performance of different transactions, including average response times, CPU usage, and database access times. By using the workload monitor, you can investigate the performance details of the particular transaction that the customer complained about and identify any potential issues or bottlenecks.

Submit
65. What data is avaible in transaction Buffer monitor (ST02)?

Explanation

2 anwers

Submit
66. In transaction Workload monitor (ST03N) you see taht dialog work pordesses have high average..What is the mst likely for this issus?

Explanation

The high average of dialog work processes in the transaction workload monitor (ST03N) suggests that there may be an insufficient size of SAP buffers. SAP buffers are used to store frequently accessed data in memory, reducing the need for frequent access to the database. If the buffers are too small, the system may spend more time retrieving data from the database, causing high average dialog work processes.

Submit
67. . Which of the following statements is true about the SQL Monitor? Choose the correct answers.

Explanation

The correct answers are A) SQL Monitor can be switched on for all or dedicated servers and C) SQL Monitor can trace every SQL statement coming from ABAP programs, which include all OPEN SQL, native SQL, and ABAP kernel SQL statements. These statements are true because the SQL Monitor can be enabled for all servers or specific dedicated servers, and it is capable of tracing every SQL statement from ABAP programs, including OPEN SQL, native SQL, and ABAP kernel SQL statements.

Submit
68. In the transaction profile of transaction Workload monitor (ST03N), how do you identify a pr.

Explanation

2 answers

Submit
View My Results

Quiz Review Timeline (Updated): Oct 28, 2024 +

Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.

  • Current Version
  • Oct 28, 2024
    Quiz Edited by
    ProProfs Editorial Team
  • Feb 14, 2017
    Quiz Created by
    Vanessa
Cancel
  • All
    All (68)
  • Unanswered
    Unanswered ()
  • Answered
    Answered ()
You suspects taht tehre is an issue with network connections from the...
Which of the following is not a component of dialog response...
Where is the default location of the statistical records that are...
2. Which of the following are two key criteria when evaluating...
4. Which of the following profile parameters affect activation of...
1. Virtual memory is made up of OS swap or page file and physical...
2. There is hardware bottleneck in the CPU if processing time is more...
2. Which of the following parameter controls the buffer...
1. Which of the following types of RFC calls guarantees multiple...
In the transaction Worload Monitos (ST03N), what is he main indicatos...
3. Which of the following tools is best for monitoring and analyzing...
What is an expensive SQL statement?
When you are investigationg a database issue you find an often used...
What is the purpose of buffering data in SAP table buffers?
Which RFC is used for multiple communication steps that must be...
What is the SAP Operating System Collector (SAPOSCOL)?
Why are parts of user context stored in extended memory instead of the...
In which sequences do dialog work processes allocate memory?
In transaction Operating System monitor (ST06(n)) you detected taht...
3. Which of the following parameters lead to the allocation of heap...
4. The user's context is initially stored in the heap area in the...
In transaction Operating System monitor (ST06(n)) in an ABAP-only...
6. Programs which show database request time > 40 % (response time...
2. What is RFC+CPIC time in synchronous RFC? Choose the correct...
. Which of the following RFC quota parameters should be set to...
Wich os the followings transactions can you used to monitor the...
How should optimizer statistics be kept up to date?
A Single Statistical Record captures an entire transaction in...
Which of the following transactions are used in evaluating system...
What are potential measures for the Internet Communicator manager...
2. In transaction ST02, there is a problem if there is a lot of...
1. Which of the following from the Operating System Monitor...
3. Which of the following tools can be used to check the formulas and...
3. Which of the following SQL statements cannot be tuned? Choose the...
5. Which of the following can be found in the Explain function in SQL...
Which of the following areas fo an instance's shared memory have...
1. Which of the following are valid options for table buffering types?...
Why is buffer synchronization important in an SAP system with more...
You are reviewing RRC data in the transaction Worload Monitor...
When you run transaction Table Call Statisctics (ST10), which of the...
A customer's system is set up with many identical instances. Some...
Which buffering types are avaible in SAP table buffers?
What does Zero Administration memory management do?
1. Which of the following transactions are used to evaluate the work...
3. Table buffering is recommended for which of the following...
In transaction Workload Analysis monitor (ST03(N)) average roll-wait...
Which elements of totak response time should be under 20ms?
Where and when is ABAP heap memory allocated?
3. SWAPS in transaction ST02 are an indication of high CPU...
4. PHYS_MEMSIZE indicates how much memory is used in an SAP instance...
4. The ABAP trace (transaction SE30 or SAT) is the tool to use if we...
4. SQL trace (transaction ST05) offers a lot of information on table...
.... explain plan for an expensive SQL statement?
In transaction Work Porcess Overview (SM50/SM66) you see that many...
Where can you find the top expensive SQL statements on the system?
You are invcestigating a performance problem In trnasaction Work...
  How can expensive SQL statements cause poor performance of...
What is the main indicator of a CPU bottleneck?
What are dymanic work porcesses? 
Wich of the following SQL statements types always bypass the SAP table...
What is the most likely cause dor a high 'wait time' in a...
Wich response time elements that are displayed in transaction Workload...
1. Which of the following statements is considered to be an expensive...
A customer complains taht a particular transaction performs...
What data is avaible in transaction Buffer monitor (ST02)?
In transaction Workload monitor (ST03N) you see taht dialog work...
. Which of the following statements is true about the SQL Monitor?...
In the transaction profile of transaction Workload monitor (ST03N),...
Alert!

Advertisement