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: 

Export and import statements

Former Member
0 Kudos
612

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

Former Member
0 Kudos
295

Hi,

Check it with your basis guy,

it seems you need to increase your ABAP memory.

regards,

ramesh.

former_member194669
Active Contributor
0 Kudos
295

Can you try the export with

EXPORT tab = itab

TO DATABASE indx(XY)

CLIENT '000'

ID 'TABLE_ID'.

aRs

0 Kudos
295

Hi,

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

Praneeth

Former Member
0 Kudos
295

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

0 Kudos
295

hi pradeep,

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

Praneeth

Clemenss
Active Contributor
0 Kudos
295

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

Former Member
0 Kudos
295

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

Former Member
0 Kudos
295

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

0 Kudos
295

HI Shiba,

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

Can u advise?

Regards,

Praneeth