‎2010 Feb 12 1:04 AM
Hi Guys,
I want to store an internal table in SAP Memory using SET Parameter.. !
Does it works.. ? or any alternative for this ?
Thanks
‎2010 Feb 12 1:18 AM
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
‎2010 Feb 12 1:18 AM
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
‎2010 Feb 12 1:34 AM
use EXPORT ... TO SHARED MEMORY ...
chk this help doc for more
http://help.sap.com/saphelp_45b/helpdata/en/34/8e73a36df74873e10000009b38f9b8/content.htm
‎2010 Feb 12 1:52 AM
‎2010 Feb 12 9:39 AM
Hi,
U can use
EXPORT <it_tablename> to memory-id TABLE_ID.
Thanks,
Anju