Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Export and import statements

Former Member
0 Likes
1,540

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

9 REPLIES 9
Read only

Former Member
0 Likes
1,223

Hi,

Check it with your basis guy,

it seems you need to increase your ABAP memory.

regards,

ramesh.

Read only

former_member194669
Active Contributor
0 Likes
1,223

Can you try the export with

EXPORT tab = itab

TO DATABASE indx(XY)

CLIENT '000'

ID 'TABLE_ID'.

aRs

Read only

0 Likes
1,223

Hi,

i am exporting in similar fashion except ' client' option, would it make any difference??

Praneeth

Read only

Former Member
0 Likes
1,223

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

Read only

0 Likes
1,223

hi pradeep,

Can u explore your input, i am not able to understand exactly what u r saying..

Praneeth

Read only

Clemenss
Active Contributor
0 Likes
1,223

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

Read only

Former Member
0 Likes
1,223

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

Read only

Former Member
0 Likes
1,223

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

Read only

0 Likes
1,223

HI Shiba,

I am using Wait statement and even i've increased wait time also..but no use.

Can u advise?

Regards,

Praneeth