<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Replacement Function module for Table_compress. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-function-module-for-table-compress/m-p/6709320#M1453560</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Go to se24&lt;/P&gt;&lt;P&gt;Give the class-display-Menu goto-Documentation-to component.&lt;/P&gt;&lt;P&gt;Please read it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Mar 2010 13:52:59 GMT</pubDate>
    <dc:creator>kesavadas_thekkillath</dc:creator>
    <dc:date>2010-03-18T13:52:59Z</dc:date>
    <item>
      <title>Replacement Function module for Table_compress.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-function-module-for-table-compress/m-p/6709318#M1453558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I got following Function module table_compress and i have to replace it i know the replacement function module but not getting how to pass parameters can any one make a look on it and help me out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM list_store USING mode TYPE c.&lt;/P&gt;&lt;P&gt;DATA: list_item_c LIKE list_item OCCURS 10.&lt;/P&gt;&lt;P&gt;  DATA: BEGIN OF obj_tab OCCURS 5,&lt;/P&gt;&lt;P&gt;          name(30),&lt;/P&gt;&lt;P&gt;          programname(10),&lt;/P&gt;&lt;P&gt;        END   OF obj_tab.&lt;/P&gt;&lt;P&gt;  obj_tab-name = 'LIST_ITEM_C'. APPEND obj_tab.&lt;/P&gt;&lt;P&gt;  obj_tab-name = 'T_FIMSG'.  APPEND obj_tab.&lt;/P&gt;&lt;P&gt;  obj_tab-name = 'BUCHUNG'.     APPEND obj_tab.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  CATCH SYSTEM-EXCEPTIONS&lt;/P&gt;&lt;P&gt;                    import_mismatch_errors = 1.&lt;/P&gt;&lt;P&gt;    IF mode = 'E'.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'TABLE_COMPRESS'&lt;/P&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;          in     = list_item&lt;/P&gt;&lt;P&gt;          out    = list_item_c&lt;/P&gt;&lt;P&gt;        EXCEPTIONS&lt;/P&gt;&lt;P&gt;          OTHERS = 4.&lt;/P&gt;&lt;P&gt;      IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;        EXPORT (obj_tab) TO DATABASE indx(al) ID  stor_nam.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      IMPORT (obj_tab) FROM DATABASE indx(al) ID  stor_nam.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'TABLE_DECOMPRESS'&lt;/P&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;          in     = list_item_c&lt;/P&gt;&lt;P&gt;          out    = list_item&lt;/P&gt;&lt;P&gt;        EXCEPTIONS&lt;/P&gt;&lt;P&gt;          OTHERS = 4.&lt;/P&gt;&lt;P&gt;      IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDCATCH.&lt;/P&gt;&lt;P&gt;  IF sy-subrc NE 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   MESSAGE i600 WITH 'Fehler bei Import / Export'(005).&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Mar 2010 10:05:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-function-module-for-table-compress/m-p/6709318#M1453558</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-18T10:05:19Z</dc:date>
    </item>
    <item>
      <title>Re: Replacement Function module for Table_compress.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-function-module-for-table-compress/m-p/6709319#M1453559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I got following Function module table_compress and i have to replace it i know the replacement function moduleis CL_ABAP_GZIP. but not getting how to pass parameters can any one make a look on it and help me out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM list_store USING mode TYPE c.&lt;/P&gt;&lt;P&gt;DATA: list_item_c LIKE list_item OCCURS 10.&lt;/P&gt;&lt;P&gt;  DATA: BEGIN OF obj_tab OCCURS 5,&lt;/P&gt;&lt;P&gt;          name(30),&lt;/P&gt;&lt;P&gt;          programname(10),&lt;/P&gt;&lt;P&gt;        END   OF obj_tab.&lt;/P&gt;&lt;P&gt;  obj_tab-name = 'LIST_ITEM_C'. APPEND obj_tab.&lt;/P&gt;&lt;P&gt;  obj_tab-name = 'T_FIMSG'.  APPEND obj_tab.&lt;/P&gt;&lt;P&gt;  obj_tab-name = 'BUCHUNG'.     APPEND obj_tab.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  CATCH SYSTEM-EXCEPTIONS&lt;/P&gt;&lt;P&gt;                    import_mismatch_errors = 1.&lt;/P&gt;&lt;P&gt;    IF mode = 'E'.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'TABLE_COMPRESS'&lt;/P&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;          in     = list_item&lt;/P&gt;&lt;P&gt;          out    = list_item_c&lt;/P&gt;&lt;P&gt;        EXCEPTIONS&lt;/P&gt;&lt;P&gt;          OTHERS = 4.&lt;/P&gt;&lt;P&gt;      IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;        EXPORT (obj_tab) TO DATABASE indx(al) ID  stor_nam.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      IMPORT (obj_tab) FROM DATABASE indx(al) ID  stor_nam.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'TABLE_DECOMPRESS'&lt;/P&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;          in     = list_item_c&lt;/P&gt;&lt;P&gt;          out    = list_item&lt;/P&gt;&lt;P&gt;        EXCEPTIONS&lt;/P&gt;&lt;P&gt;          OTHERS = 4.&lt;/P&gt;&lt;P&gt;      IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDCATCH.&lt;/P&gt;&lt;P&gt;  IF sy-subrc NE 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   MESSAGE i600 WITH 'Fehler bei Import / Export'(005).&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Mar 2010 10:08:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-function-module-for-table-compress/m-p/6709319#M1453559</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-18T10:08:14Z</dc:date>
    </item>
    <item>
      <title>Re: Replacement Function module for Table_compress.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-function-module-for-table-compress/m-p/6709320#M1453560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Go to se24&lt;/P&gt;&lt;P&gt;Give the class-display-Menu goto-Documentation-to component.&lt;/P&gt;&lt;P&gt;Please read it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Mar 2010 13:52:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replacement-function-module-for-table-compress/m-p/6709320#M1453560</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-03-18T13:52:59Z</dc:date>
    </item>
  </channel>
</rss>

