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 statement in ABAP Objects

radhushankar
Participant
0 Likes
670

Hi All,

I am using A Statment like this a BADI.

EXPORT XXXXX TO MEMORY ID 'YYY'.

But this statement is not supported in ABAP Objects can any one please let me know how i can use export statment is abap objects?

Thanks in advance.

1 ACCEPTED SOLUTION
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
614

Can you do it like this?

EXPORT XXXXX = XXXXX TO MEMORY ID 'YYY'.

Regards,

Rich Heilman

4 REPLIES 4
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
615

Can you do it like this?

EXPORT XXXXX = XXXXX TO MEMORY ID 'YYY'.

Regards,

Rich Heilman

Read only

0 Likes
614

I have pass a structure to the memory.

Here is my structure : ztest.

And i am using like this

EXPORT ZTEST TO MEMORY ID 'HK'.

Its not supporting in ABAP Objects.

Can you please more clear with your answer?

Thanks

Read only

0 Likes
614

Again, try doing it like this.

EXPORT ZTEST = ZTEST  TO MEMORY ID 'HK'.

Regards,

Rich Heilman

Read only

0 Likes
614

Hi Rich,

Thanks for your suggestion and it works fine .

Thanks.

@run.