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

radhushankar
Participant
0 Kudos

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

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

Can you do it like this?

EXPORT XXXXX = XXXXX TO MEMORY ID 'YYY'.

Regards,

Rich Heilman

4 REPLIES 4

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

Can you do it like this?

EXPORT XXXXX = XXXXX TO MEMORY ID 'YYY'.

Regards,

Rich Heilman

0 Kudos

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

0 Kudos

Again, try doing it like this.

EXPORT ZTEST = ZTEST  TO MEMORY ID 'HK'.

Regards,

Rich Heilman

0 Kudos

Hi Rich,

Thanks for your suggestion and it works fine .

Thanks.

@run.