<?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 Using BO method in function. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852415#M46475</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 would like to use Business object method in my function. In BOR browser is e.g. object Flight object type SFLIGHT. I have tried to call this object method with:&lt;/P&gt;&lt;P&gt;FLIGHT=&amp;gt;create( ).&lt;/P&gt;&lt;P&gt;and &lt;/P&gt;&lt;P&gt;SFLIGHT=&amp;gt;create( ).&lt;/P&gt;&lt;P&gt;and compiler response is always &lt;/P&gt;&lt;P&gt;Class not known.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What should I do??&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Bogdan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Bogdan Rokosa&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jun 2005 07:11:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-06-15T07:11:42Z</dc:date>
    <item>
      <title>Using BO method in function.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852415#M46475</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 would like to use Business object method in my function. In BOR browser is e.g. object Flight object type SFLIGHT. I have tried to call this object method with:&lt;/P&gt;&lt;P&gt;FLIGHT=&amp;gt;create( ).&lt;/P&gt;&lt;P&gt;and &lt;/P&gt;&lt;P&gt;SFLIGHT=&amp;gt;create( ).&lt;/P&gt;&lt;P&gt;and compiler response is always &lt;/P&gt;&lt;P&gt;Class not known.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What should I do??&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Bogdan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Bogdan Rokosa&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2005 07:11:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852415#M46475</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-15T07:11:42Z</dc:date>
    </item>
    <item>
      <title>Re: Using BO method in function.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852416#M46476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you ever heard of the SWC-macros?!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First you have to instantiate your SFLIGHT with &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SWC_CREATE_OBJECT &amp;lt;field to hold obj instance&amp;gt; &amp;lt;obj type&amp;gt; &amp;lt;key of obj&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;. After this you have access to all attributes and methods of your SFLIGHT instance.&lt;/P&gt;&lt;P&gt;Then create the object container with &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SWC_CONTAINER &amp;lt;container&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;Call the method you want with &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SWC_CALL_METHOD &amp;lt;filed to hold obj instance&amp;gt; &amp;lt;name of method&amp;gt; &amp;lt;container&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greets&lt;/P&gt;&lt;P&gt;--MIKE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2005 07:47:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852416#M46476</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-15T07:47:47Z</dc:date>
    </item>
    <item>
      <title>Re: Using BO method in function.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852417#M46477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;have a look on &lt;A href="http://help.sap.com/saphelp_45b/helpdata/en/c5/e4b130453d11d189430000e829fbbd/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_45b/helpdata/en/c5/e4b130453d11d189430000e829fbbd/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2005 07:49:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852417#M46477</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-15T07:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: Using BO method in function.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852418#M46478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for answer:)&lt;/P&gt;&lt;P&gt;I must this tutorial studying a little &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have heard about SWC macros but I unfortunately can't use it:( I know, i  should &amp;lt;object&amp;gt; include. But when I try do it (add to includes node in function module) i have a message: &lt;/P&gt;&lt;P&gt;Object &amp;lt;OBJECT&amp;gt; already exists&lt;/P&gt;&lt;P&gt;then when i try use macro:&lt;/P&gt;&lt;P&gt;Statement SWC_GET_ELEMENT not defined.&lt;/P&gt;&lt;P&gt;What is not correct?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2005 09:50:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852418#M46478</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-15T09:50:51Z</dc:date>
    </item>
    <item>
      <title>Re: Using BO method in function.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852419#M46479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please post your code if possible. That would make safe a lot of time spent on speculations otherwise!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2005 09:55:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852419#M46479</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-15T09:55:16Z</dc:date>
    </item>
    <item>
      <title>Re: Using BO method in function.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852420#M46480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mike&lt;/P&gt;&lt;P&gt;I have tried e.g. with code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FUNCTION Z_BO_TEST.
*"----------------------------------------------------------------------
*"*"Lokale Schnittstelle:
*"----------------------------------------------------------------------

DATA: flight TYPE SWC_OBJECT.

SWC_CREATE_OBJECT flight SFLIGHT '1111'.
SWC_CONTAINER cont.
SWC_CREATE_CONTAINER cont.
SWC_SET_ELEMENT cont &amp;lt;par1&amp;gt; &amp;lt;Value1&amp;gt;.
.
.
.
SWC_CALL_METHOD flieght getlist cont.
ENDFUNCTION.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That is function module in function group. I can't this function compile (try include object). Where and how can i do it?&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;bogdan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2005 12:59:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852420#M46480</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-15T12:59:30Z</dc:date>
    </item>
    <item>
      <title>Re: Using BO method in function.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852421#M46481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the object type (SWO1) of your 'FLIGHT' object?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2005 14:03:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852421#M46481</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-15T14:03:03Z</dc:date>
    </item>
    <item>
      <title>Re: Using BO method in function.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852422#M46482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I dod not check this code, but this is the way it should work:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
* structure to save the key to instantiate SFLIGHT
* ATTENTION: This structure must be filled before 
* instantiating the object !!!!
DATA: BEGIN OF gs_sflight_key,
				mandt LIKE sflight-mandt,
				carrid LIKE sflight-carrid,
				connid LIKE sflight-connid,
				fldate LIKE sflight-fldate,
			END OF gs_sflight_key.

DATA: go_sflight TYPE swc_object.

* generate swc container
SWC_CONTAINER gc_container.

* instantiate object GO_SFLIGHT with key GS_SFLIGHT_KEY
SWC_CREATE_OBJECT go_sflight 'SFLIGHT' gs_sflight_key.

* instantiate container
SWC_CREATE_CONTAINER gc_container.

* call method DISPLAY of obj instance GO_SFLIGHT within
* conatiner GC_CONTAINER
SWC_CALL_METHOD go_sflight 'DISPLAY' gc_container.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2005 14:24:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852422#M46482</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-15T14:24:24Z</dc:date>
    </item>
    <item>
      <title>Re: Using BO method in function.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852423#M46483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please don't define a new include in your function group program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just put the include statement &lt;/P&gt;&lt;P&gt;INCLUDE &amp;lt;cntn01&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in your function group's top include ( XXXTOP include...)...Where you declare global data ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2005 16:40:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852423#M46483</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-15T16:40:06Z</dc:date>
    </item>
    <item>
      <title>Re: Using BO method in function.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852424#M46484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mike&lt;/P&gt;&lt;P&gt;I can't compile this example &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I have written:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;*&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Module pool       ZZZZZTEST                                         *
*&amp;amp;                                                                     *
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;                                                                     *
*&amp;amp;                                                                     *
*&amp;amp;---------------------------------------------------------------------*

include &amp;lt;object&amp;gt;.

* structure to save the key to instantiate SFLIGHT
* ATTENTION: This structure must be filled before
* instantiating the object !!!!
DATA: BEGIN OF gs_sflight_key,
				mandt LIKE sflight-mandt,
				carrid LIKE sflight-carrid,
				connid LIKE sflight-connid,
				fldate LIKE sflight-fldate,
			END OF gs_sflight_key.

DATA: go_sflight TYPE swc_object.

* generate swc container
SWC_CONTAINER gc_container.

* instantiate object GO_SFLIGHT with key GS_SFLIGHT_KEY
SWC_CREATE_OBJECT go_sflight 'SFLIGHT' gs_sflight_key.

* instantiate container
SWC_CREATE_CONTAINER gc_container. "!!!!!!!!!!!!!

* call method DISPLAY of obj instance GO_SFLIGHT within
* conatiner GC_CONTAINER
SWC_CALL_METHOD go_sflight 'DISPLAY' gc_container.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and i have got a compiler message:&lt;/P&gt;&lt;P&gt;"Statement is not accessible "&lt;/P&gt;&lt;P&gt;in line with "!!!!!!!!!!!!!)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have superseded macros with his code and that works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have no idea what exactly should I do to use this macros &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Bogdan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2005 11:47:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852424#M46484</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-16T11:47:09Z</dc:date>
    </item>
    <item>
      <title>Re: Using BO method in function.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852425#M46485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Than do not execute the following line&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SWC_CREATE_CONTAINER gc_container.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just comment it out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What happens now?!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2005 11:52:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852425#M46485</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-16T11:52:01Z</dc:date>
    </item>
    <item>
      <title>Re: Using BO method in function.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852426#M46486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you might check my last response and try that also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Further, I am not sure you first wrote the code in a FM and then a module pool..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case you are doing it in an FM ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call the include &amp;lt;cntn01&amp;gt; in your top include along with the global data declaration...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And also that cntn01&amp;gt; is sufficient for your work &amp;lt;object&amp;gt; is not required.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2005 13:21:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852426#M46486</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-16T13:21:30Z</dc:date>
    </item>
    <item>
      <title>Re: Using BO method in function.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852427#M46487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ram&lt;/P&gt;&lt;P&gt;excuse me, I have tried with function module and program &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;In program I can use include at the beginning my code. Where and how should I do that in function group? &lt;/P&gt;&lt;P&gt;Would you like to explain me that exactly?&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Bogdan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2005 13:49:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852427#M46487</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-16T13:49:35Z</dc:date>
    </item>
    <item>
      <title>Re: Using BO method in function.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852428#M46488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mike&lt;/P&gt;&lt;P&gt;selfsame error occured in next line &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2005 13:51:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852428#M46488</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-16T13:51:02Z</dc:date>
    </item>
    <item>
      <title>Re: Using BO method in function.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852429#M46489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to include &amp;lt;cntn01&amp;gt; in the top include of your function group!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2005 13:51:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852429#M46489</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-16T13:51:44Z</dc:date>
    </item>
    <item>
      <title>Re: Using BO method in function.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852430#M46490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am stupid &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot for help and patience:)&lt;/P&gt;&lt;P&gt;Bogdan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2005 14:03:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852430#M46490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-16T14:03:07Z</dc:date>
    </item>
    <item>
      <title>Re: Using BO method in function.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852431#M46491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why are you stupid?! Was this the cause for your problem?? Really??????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don´t forget to reward points...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2005 14:04:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852431#M46491</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-16T14:04:50Z</dc:date>
    </item>
    <item>
      <title>Re: Using BO method in function.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852432#M46492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mike&lt;/P&gt;&lt;P&gt;The reason was lack of include.&lt;/P&gt;&lt;P&gt;And if I am stupid und why hmmmm I think that is not goot subjcet for this forum &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thanks once more for your help.&lt;/P&gt;&lt;P&gt;Bogdan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2005 07:10:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bo-method-in-function/m-p/852432#M46492</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-17T07:10:17Z</dc:date>
    </item>
  </channel>
</rss>

