cancel
Showing results for 
Search instead for 
Did you mean: 

RSPC: Change default date selection

0 Kudos

Dear guys,

as SAP changed the default date selection starting RSPC-logs in class CL_RSPC_FRONTEND=>_FILL_LOGS line 54

we are faced with long-runtime for our logs to be displayed. Before starting a modification here I ask you if there are other ways to come back to an initial popup screen at the first log call.

We are on BW 7.50 SP22 (SAPK-75022INSAPBW).

* ==== Fill default time range = 4 weeks ====
IF p_t_date IS INITIAL.
CALL FUNCTION 'RSPC_POPUP_DATE_SELECTION'
EXPORTING
i_date_month = 'X'
i_no_popup = 'X' <----!!!! This was added it seems
IMPORTING
e_t_date = p_t_date
EXCEPTIONS
aborted_by_user = 1
OTHERS = 2.
IF sy-subrc <> 0.
MESSAGE ID sy-msgid TYPE 'E' NUMBER sy-msgno
WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4
RAISING aborted.
ENDIF.
ENDIF.


Regards,

Peter

Accepted Solutions (1)

Accepted Solutions (1)

roland_szajko
Product and Topic Expert
Product and Topic Expert

Hi

That part of the  coding exists since 2009 and since BW release 7.30. This is not a recent change.

I don't think that this is the reason for the performance. If we consider that a specific chain is executed daily, the number of executions from the past 4 weeks  would be 28.

I would suggest to do an ST12 trace to see what exactly is happening and which part of the process takes longer than expected.

 

br

Roland

Answers (0)