<?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: general issue with class declaration in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/general-issue-with-class-declaration/m-p/2073574#M429681</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i got that . Thanks for your answers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kajol&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Mar 2007 21:48:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-06T21:48:29Z</dc:date>
    <item>
      <title>general issue with class declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/general-issue-with-class-declaration/m-p/2073568#M429675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Iam very new to OO programming.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any one tell as how i should call a CLASS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR FM , i know we use click pattern and give the required FM name and it would bring up the code in the editor and we have to pass the necessary parameters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but how should i call a class , is there a way to call it or do i need to write the code manually&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;say when i code like this does that mean it has been typed  or just called like a FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If its called like FM , let me know how its called&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CALL METHOD cl_gui_frontend_services=&amp;gt;file_open_dialog&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;       window_title            = 'Select file for download'&lt;/P&gt;&lt;P&gt;       default_extension       = '.txt'&lt;/P&gt;&lt;P&gt;       initial_directory       =  'C:\'&lt;/P&gt;&lt;P&gt;     CHANGING&lt;/P&gt;&lt;P&gt;       file_table              = li_filetable&lt;/P&gt;&lt;P&gt;       rc                      = lv_return&lt;/P&gt;&lt;P&gt;     EXCEPTIONS&lt;/P&gt;&lt;P&gt;       file_open_dialog_failed = 1&lt;/P&gt;&lt;P&gt;       cntl_error              = 2&lt;/P&gt;&lt;P&gt;       error_no_gui            = 3&lt;/P&gt;&lt;P&gt;       OTHERS                  = 4&lt;/P&gt;&lt;P&gt;           .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2007 21:30:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/general-issue-with-class-declaration/m-p/2073568#M429675</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-06T21:30:40Z</dc:date>
    </item>
    <item>
      <title>Re: general issue with class declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/general-issue-with-class-declaration/m-p/2073569#M429676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai&lt;/P&gt;&lt;P&gt;  we can like function module.&lt;/P&gt;&lt;P&gt;    in editor ,just click pattern button. in that,select second radio button abap object...&lt;/P&gt;&lt;P&gt;    after that, it ask for class, object and other things...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;tamil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2007 21:34:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/general-issue-with-class-declaration/m-p/2073569#M429676</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-06T21:34:02Z</dc:date>
    </item>
    <item>
      <title>Re: general issue with class declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/general-issue-with-class-declaration/m-p/2073570#M429677</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;You can use pattern (SE38) same as FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But instead choose ABAP Object Pattern -&amp;gt; OK -&amp;gt; Select Call Method -&amp;gt; Enter CL_GUI_FRONTEND_SERVICES (Class/Interface) -&amp;gt; Enter FILE_OPEN_DIALOG (Method) -&amp;gt; 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>Tue, 06 Mar 2007 21:35:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/general-issue-with-class-declaration/m-p/2073570#M429677</guid>
      <dc:creator>ferry_lianto</dc:creator>
      <dc:date>2007-03-06T21:35:17Z</dc:date>
    </item>
    <item>
      <title>Re: general issue with class declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/general-issue-with-class-declaration/m-p/2073571#M429678</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;You can use the pattern for abap oo class method also..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Press the pattern button..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Choose the radio button  "AABAP Objects patterns"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Give the class name and the method name..It will give the parameters like FM..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2007 21:37:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/general-issue-with-class-declaration/m-p/2073571#M429678</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-06T21:37:47Z</dc:date>
    </item>
    <item>
      <title>Re: general issue with class declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/general-issue-with-class-declaration/m-p/2073572#M429679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is what i was looking for &lt;/P&gt;&lt;P&gt;iam awarding points all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2007 21:38:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/general-issue-with-class-declaration/m-p/2073572#M429679</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-06T21:38:45Z</dc:date>
    </item>
    <item>
      <title>Re: general issue with class declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/general-issue-with-class-declaration/m-p/2073573#M429680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ferry,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i don't see call method under AABAP OBJECTS PATTERN &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I AM LOOKING IN 4.6C VERSION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET ME KNOW&lt;/P&gt;&lt;P&gt;THANKS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2007 21:43:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/general-issue-with-class-declaration/m-p/2073573#M429680</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-06T21:43:51Z</dc:date>
    </item>
    <item>
      <title>Re: general issue with class declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/general-issue-with-class-declaration/m-p/2073574#M429681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i got that . Thanks for your answers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kajol&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2007 21:48:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/general-issue-with-class-declaration/m-p/2073574#M429681</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-06T21:48:29Z</dc:date>
    </item>
    <item>
      <title>Re: general issue with class declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/general-issue-with-class-declaration/m-p/2073575#M429682</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;IN that screen..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GIve the class name cl_gui_frontend_services and the method name file_open_dialog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And then press enter..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2007 21:48:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/general-issue-with-class-declaration/m-p/2073575#M429682</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-06T21:48:59Z</dc:date>
    </item>
    <item>
      <title>Re: general issue with class declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/general-issue-with-class-declaration/m-p/2073576#M429683</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;Sorry ... I am in SAP 4.7 and ECC 5.0.&lt;/P&gt;&lt;P&gt;I am not sure whether is available in 4.6C (i am afraid you need to type by yourself).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you click on Pattern button (SE38), system should display an option for  AABAP Object Patterns (4.7) and ABAP Object Patterns (ECC 5.0).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you click on OK button in order to see another selection for OO Statement Pattern (new popup window). In here, you should see Call Method selection and others.&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>Tue, 06 Mar 2007 21:52:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/general-issue-with-class-declaration/m-p/2073576#M429683</guid>
      <dc:creator>ferry_lianto</dc:creator>
      <dc:date>2007-03-06T21:52:49Z</dc:date>
    </item>
  </channel>
</rss>

