Temp-table to super-procedure

Maik Puetz

New Member
Hello peggers,

I have a small question. I have a two programs ProgA with a temp-table and ProgB as a super-procdure.

Now I want to run a function in the super-procedure that uses this temp-table from ProgA. How do I send the temp-table as a parameter.

I have read, that I can use the handle of the temp-table to send it as a parameter, but how do I read the items in this temp-table.

Sorry for this question, but I am a newbie.

Thanks for your work.
 
You need to proceed like this
1. Define the temp-table as shared in an include file
2. Include this file in Prog-A with parameter 'New'
3. Include this file in Prog-B without parameter 'New'.
Now since the temp-table is shared you can use it in your Super-Procedure in Prog-B.

Hope I have understood correctly :confused: & hope this helps :blush:


Thanks,
Ajay.
 
Back
Top