<?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 Classes in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/classes/m-p/2992946#M706922</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to call a particular class from SE38.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 Oct 2007 17:45:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-26T17:45:57Z</dc:date>
    <item>
      <title>Classes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/classes/m-p/2992946#M706922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to call a particular class from SE38.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2007 17:45:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/classes/m-p/2992946#M706922</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-26T17:45:57Z</dc:date>
    </item>
    <item>
      <title>Re: Classes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/classes/m-p/2992947#M706923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it would depend on how/if the class needs to be instaniated.  If it has static methods you can call them straight way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;



    CALL METHOD cl_gui_frontend_services=&amp;gt;gui_upload
      EXPORTING
        filename                = lv_file
        filetype                = 'BIN'
*     has_field_separator     = SPACE
    IMPORTING
      filelength              = lv_file_length
      CHANGING
        data_tab                = lt_data
      EXCEPTIONS
        OTHERS                  = 19.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but if the method is an instance method, you would first have to create an object of the class, then call the method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

  DATA: gr_zip TYPE REF TO cl_abap_gzip.

  CREATE OBJECT gr_zip.
  call method  gr_zip-&amp;gt;compress_binary(
                EXPORTING
                       raw_in = raw_in
                IMPORTING
                       gzip_out = zip_out ).

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2007 17:52:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/classes/m-p/2992947#M706923</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-10-26T17:52:17Z</dc:date>
    </item>
    <item>
      <title>Re: Classes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/classes/m-p/2992948#M706924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Go to SE38.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Go to Edit mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Click on Pattern button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. Click on ABAP Object pattern.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. Click on Continue button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6. Enter Class CL_GUI_FRONTEND_SERVICES (for example).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7. Enter Method GUI_DOWNLOAD (for example).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;8. Click on OK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2007 17:55:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/classes/m-p/2992948#M706924</guid>
      <dc:creator>ferry_lianto</dc:creator>
      <dc:date>2007-10-26T17:55:13Z</dc:date>
    </item>
    <item>
      <title>Re: Classes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/classes/m-p/2992949#M706925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you display the class using either transaction &amp;lt;b&amp;gt;SE80 &amp;lt;/b&amp;gt;or &amp;lt;b&amp;gt;SE24 &amp;lt;/b&amp;gt;then you can run the class in &amp;lt;b&amp;gt;test-mode&amp;lt;/b&amp;gt;. If instantiation is public then you can create an instance and call any of its public methods.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 27 Oct 2007 20:49:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/classes/m-p/2992949#M706925</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2007-10-27T20:49:00Z</dc:date>
    </item>
  </channel>
</rss>

