2007 Mar 09 11:54 AM
HI,
I've developed a report which calls another standard report, which exports values to memory.
i will import those values to my program. I am calling that standard program in b/g mode.
I've used wait statement to make the program to wait for a while to update the exported values in the database cluster. This is working fine for small amount of data like 100 records like that.
It's not working when data is more like more than 500 records. If i run the report in debugging mode i am getting output. But if i run directly (F8) the values are not exporting to memory and not getting the output. Not able to import data with F8, even i increase the wait time and used commit statment in the program.
what wud be the problem and how can we rectify it?
points assured for quick response.
regards,
Pra
2007 Mar 09 12:47 PM
Hi,
Check it with your basis guy,
it seems you need to increase your ABAP memory.
regards,
ramesh.
2007 Mar 09 1:01 PM
Can you try the export with
EXPORT tab = itab
TO DATABASE indx(XY)
CLIENT '000'
ID 'TABLE_ID'.
aRs
2007 Mar 11 6:51 AM
Hi,
i am exporting in similar fashion except ' client' option, would it make any difference??
Praneeth
2007 Mar 09 2:24 PM
You can see the export and import values in the abap debugger (menu Goto->system areas->ABAP memory) .
enter : area name .
if you see the which export parameter ur looking for
2007 Mar 11 6:52 AM
hi pradeep,
Can u explore your input, i am not able to understand exactly what u r saying..
Praneeth
2007 Mar 11 1:25 PM
Hi Praneet,
Consider the use of CALL FUNCTION <function> STARTING NEW TASK for your background process. Add
PERFORMING subr ON END OF TASK.
to continue processing.
Put the export/import data into function interface.
Regards,
Clemens
Message was edited by:
Clemens Li
2007 Mar 12 4:40 AM
Hi Li,
Could u please let me know..what is the key issue and how we are going to solve it...Bcoz i could not understand what's wrong in my program flow..
Thanks
Praneeth
2007 Mar 12 4:51 AM
i think it is because the std program is not executed completely and you are importing the data before that.
you can try with.
submit...
WAIT UP TO time SECONDS.
import.......
regards
shiba dutta
2007 Mar 12 5:03 AM
HI Shiba,
I am using Wait statement and even i've increased wait time also..but no use.
Can u advise?
Regards,
Praneeth