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

Internal table as SET Parameter !

Former Member
0 Likes
3,599

Hi Guys,

I want to store an internal table in SAP Memory using SET Parameter.. !

Does it works.. ? or any alternative for this ?

Thanks

1 ACCEPTED SOLUTION
Read only

mvoros
Active Contributor
0 Likes
1,698

Hi,

SET PARAMETER accepts only flat character types. Here is a quote from ABAP documentation.

For dobj, a flat, (as of release 6.10 character-type) field is expected, whose binary content is transferred in an unconverted format.

You can use EXPORT command instead of SET PARAMETER. Have a look at ABAP documentation for this command.

Cheers

4 REPLIES 4
Read only

mvoros
Active Contributor
0 Likes
1,699

Hi,

SET PARAMETER accepts only flat character types. Here is a quote from ABAP documentation.

For dobj, a flat, (as of release 6.10 character-type) field is expected, whose binary content is transferred in an unconverted format.

You can use EXPORT command instead of SET PARAMETER. Have a look at ABAP documentation for this command.

Cheers

Read only

Former Member
0 Likes
1,698

use EXPORT ... TO SHARED MEMORY ...

chk this help doc for more

http://help.sap.com/saphelp_45b/helpdata/en/34/8e73a36df74873e10000009b38f9b8/content.htm

Read only

pramodu
Active Participant
0 Likes
1,698

This message was moderated.

Read only

Former Member
0 Likes
1,698

Hi,

U can use

EXPORT <it_tablename> to memory-id TABLE_ID.

Thanks,

Anju