2007 Jun 11 8:53 AM
Hi,
I am using one FM name 'TABLE_COMPRESS'. But i can't able to trace, what i need to pass as the table parameters. There are two table parameters; IN & OUT. In OUT what i need to pass as, there is no parameters reference mentioned in the FM.
Plz suggest...
Thanks
Sangram
2007 Jun 11 9:09 AM
Hi,
Check this sample code.
data:compressed_size LIKE sy-index,
listobject LIKE abaplist OCCURS 10,
compressed_attachment LIKE soli OCCURS 100 WITH HEADER LINE,
CALL FUNCTION 'TABLE_COMPRESS'
IMPORTING
compressed_size = compressed_size
TABLES
in = listobject
out = compressed_attachment.
2007 Jun 11 9:09 AM
Hi,
Check this sample code.
data:compressed_size LIKE sy-index,
listobject LIKE abaplist OCCURS 10,
compressed_attachment LIKE soli OCCURS 100 WITH HEADER LINE,
CALL FUNCTION 'TABLE_COMPRESS'
IMPORTING
compressed_size = compressed_size
TABLES
in = listobject
out = compressed_attachment.
2007 Jun 11 12:21 PM
2007 Jun 11 9:10 AM
Hi Sangram,
Function module TABLE_COMPRESS is obsolete - do not use the FM.
Thanks.
2007 Jun 11 9:15 AM
Hi,
In OUT, u have to pass a Table in which the Compressed Table has to be Stored.
Regards,
Padmam.