cancel
Showing results for 
Search instead for 
Did you mean: 

function module called in update task.

TMNielsen
Contributor
0 Kudos

Hello all

I am working on Release 4.0b.

When a user logs on to R/3 he gets one terminal session, up to 6 external sessions and for each external session up to 9 internal sessions (according to documentation).

Data can be passed across several internal sessions via ABAP memory with export/import to/from memory.

But what happens if a function module is called in update task (asyncronus updates).

Can I transfer data via ABAP memory (export to memory) ?

Can I transfer data via the INDX cluster table (export to database) ?

Can I debug a function module called in update task ?

Best regards

Thomas Madsen Nielsen

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

I'll bet you can EXPORT... TO DATABASE and IMPORT... FROM DATABASE with no problem. I doubt that you can IMPORT... FROM MEMORY, because your Update Work Process will not have access to the memory area that you EXPORTed to. The external sessions and internal sessions apply to Dialog Work Processes.

TMNielsen
Contributor
0 Kudos

Hello again

I found the answer for my last question: Yes I can debug a function module called in update task. (OSS note 362176).

Best regards

Thomas Madsen Nielsen