on 2023 Sep 14 11:27 AM
Hi All,
I noticed that my report VA05 started to display a limited number of rows (only 250 000 records), how can I change it?
Request clarification before answering.
Hello
It looks like a hardcoded limit in the CL_SDOC_VIEW class, method START_OF_SELECTION:
method start_of_selection.
constants:
lc_listtype type ltdxkey-type value 'F',
lc_no_out type ltdxdata-param value 'NO_OUT',
lc_valuf type ltdxdata-param value 'VALUF'.
data:
ls_varkey type ltdxkey,
lt_dbfact type standard table of ltdxdata,
lt_dbfilter type standard table of ltdxdata,
lt_fieldlist type tdt_fieldname.
if mo_sdoc_select_adapter is not bound.
return.
endif.
ms_selcrit = is_selcrit.
ms_selcrit-maxsel = 250000.
You may try to change it but bear in mind that it will impact performance and it is a modification to SAP standard.
Anyway, why would you want to report over 1/4 million sales orders?
Best regards
Dominik Tylczynski
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 30 | |
| 16 | |
| 15 | |
| 6 | |
| 5 | |
| 4 | |
| 4 | |
| 3 | |
| 3 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.