Financial Management Blogs by SAP
Get financial management insights from blog posts by SAP experts. Find and share tips on how to increase efficiency, reduce risk, and optimize working capital.
cancel
Showing results for 
Search instead for 
Did you mean: 
Freeter
Advisor
Advisor

As we know, BPC NW version could collect statistics in transaction UJSTAT, which contains very detailed runtime information about a report or input form. Besides to help analyze the query performance bottleneck, it can also be used to perform volume test. In following sections, I’ll give more detailed steps about it.


1. Preparation

Firstly, we need to enable the BPC_STATISTICS and run the report/input forms we want to include in the volume test, so that UJSTAT could collect statistic for them.


For how to enable this parameter, refer to note 1708178 - How to turn on statistics monitoring in BPC 10 NW?


After statistic info. is collected, what we need to do is to trigger the report/input forms according to the volume test plan. For that, we define an user interface based on UJSTAT.


2. User Interface

You can implement your own user interface for this volume test, here we just select to customize UJSTAT program to leverage user knowledge of this tool:


Firstly copy the UJSTAT program (UJ0_STATISTICS_RPT)  to custom package, and add new function based on it. As shown in following figure, we add a new button “Run all queries in batch” to trigger the test.

Note: Don’t change the code of UJSTAT directly, since it will be overridden when system is upgraded.



After select out the queries we want to run, click the button “RUN all queries in batch”, a dialog will be shown up to let user input parameters:


Parameters:

Think time:

The time that a user waits between performing successive actions is known as the think time.


Iteration:

iteration is a single scenario in the testing.


Concurrent user:

The user number involved in the test.


Pace between users:

The time between different users join the test. For example if pace is 180 seconds, and user 1 starts test at 9:00, user 2 will start test at 9:03.

(R*T: report time, TT: Think time)

After specify parameters, click the button “RUN” to start the test. You could monitor the test running in SM50:


3. Key points

In order to simulate different users, we use asynchronous RFC (aRFC) to trigger different tasks for each user.

During the think time, dialog work process will be release for other use.

4. Next enhancement

  • We consider to add DM package support in this volume test tool.