What's the maximum number of records that can be passed to a function module via a table parameter?

有帮助吗?

解决方案

I have never hit max in a function call. But have in other programs.

from sap it depends on the type of table.

The maximum memory that can be occupied by an internal table (including its internal administration) is 2 gigabytes. A more realistic figure is up to 500 megabytes. An additional restriction for hashed tables is that they may not contain more than 2 million entries.

其他提示

While it will depend on the type of table. You will hit other walls like memory allocation and no roll memory. Since everything you're doing will be resident in a WA the primary concern will be memory. If you plan on running this in the background and not as a Dialog user, you will still have to be cognizant of how much memory and page swap space you're consuming.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top