2007 Jul 11 1:40 PM
Dear all,
how can I generate more than 36 subroutine pools or dynamic programs (not perstistent programs)?
Best regards,
Christoph
what I do (test case):
Data: it_prog type stringtab.
append 'Program SUBPOOL.' to it_prog.
append 'Data: result type i.' to it_prog.
append 'form eval changing result.' to it_prog.
append ' result = result + 1.' to it_prog.
append 'endform.' to it_prog.
Do 100 times.
Do 100 times.
CALL METHOD lc_test->process
EXPORTING
it_tab = it_prog
receiving
RESULT = result
.
enddo.
...
method PROCESS.
Data: prog type string.
generate subroutine pool it_tab name prog.
endmethod.
Message was edited by:
Christoph Aschauer
Dear all,
how can I generate more than 36 subroutine pools or dynamic programs (not perstistent programs)?
Best regards,
Christoph
what I do (test case):
Data: it_prog type stringtab.
append 'Program SUBPOOL.' to it_prog.
append 'Data: result type i.' to it_prog.
append 'form eval changing result.' to it_prog.
append ' result = result + 1.' to it_prog.
append 'endform.' to it_prog.
Do 100 times.
Do 100 times.
CALL METHOD lc_test->process
EXPORTING
it_tab = it_prog
receiving
RESULT = result
.
enddo.
...
method PROCESS.
Data: prog type string.
generate subroutine pool it_tab name prog.
endmethod.
Message was edited by:
Christoph Aschauer
2007 Jul 16 8:42 AM
Hi all,
I solved the problem as follows:
- limitation of 36 subroutines: SUBMIT program. (this program generates the generic subroutine pools (communication via DB or shared objects possible)
Christoph
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |