<?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: Unknown Function Code in BP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/unknown-function-code-in-bp/m-p/4601279#M1084542</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Found the problem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 30 Oct 2008 06:30:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-30T06:30:17Z</dc:date>
    <item>
      <title>Unknown Function Code in BP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unknown-function-code-in-bp/m-p/4601278#M1084541</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 transactions BP/BUP1/2 we added some custom tabs. On one of these tabs I had to add a text button to call a report which is working fine. However when I press the 'BACK' key from the report to get back to the BP transaction, I get a message "Unknown Function Code xxxx" (Message no. BUPA_DIALOG_JOEL103)&lt;/P&gt;&lt;P&gt; I added the function code in the BUPT config under GUI Additional Functions(BUS9) but it didn't make a difference.&lt;/P&gt;&lt;P&gt;I tried all kinds of function modules to clear the function code after the call to the report but nothing is working&lt;/P&gt;&lt;P&gt;Please help!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks so much&lt;/P&gt;&lt;P&gt;Ansa Leonard&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 06:57:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unknown-function-code-in-bp/m-p/4601278#M1084541</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-22T06:57:47Z</dc:date>
    </item>
    <item>
      <title>Re: Unknown Function Code in BP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unknown-function-code-in-bp/m-p/4601279#M1084542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Found the problem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2008 06:30:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unknown-function-code-in-bp/m-p/4601279#M1084542</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-30T06:30:17Z</dc:date>
    </item>
    <item>
      <title>Re: Unknown Function Code in BP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unknown-function-code-in-bp/m-p/4601280#M1084543</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;I have the same problem in BP. I have added a push button on the screen and the button function code name is 'SAVE'. when I click on the button, everything works fine but at last this message appears, Please help me to solve this problem. Thanks a lot in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 11:06:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unknown-function-code-in-bp/m-p/4601280#M1084543</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-20T11:06:43Z</dc:date>
    </item>
    <item>
      <title>Re: Unknown Function Code in BP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unknown-function-code-in-bp/m-p/4601281#M1084544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You must create your GUI Status in transaction BUS9. After this, you must need create a FUNCTION MODULE like the example below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;FUNCTION z_xxx_bupa_event_fcode.&lt;/P&gt;&lt;P&gt;*"----------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;*"*"Interface local:&lt;/P&gt;&lt;P&gt;*"&amp;nbsp; IMPORTING&lt;/P&gt;&lt;P&gt;*"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; REFERENCE(I_FCODE) TYPE&amp;nbsp; TBZ4-FCODE&lt;/P&gt;&lt;P&gt;*"&amp;nbsp; EXPORTING&lt;/P&gt;&lt;P&gt;*"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; REFERENCE(E_XHANDLE) TYPE&amp;nbsp; BOOLEAN&lt;/P&gt;&lt;P&gt;*"----------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*" E_XHANDLE default'X' = Fcode is handled in this unit&lt;/P&gt;&lt;P&gt;&amp;nbsp; e_xhandle = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"your code here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFUNCTION.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Than access the transaction BUS7. Select FCODE register and assingn your FUNCTION MODULE to it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2012 11:43:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unknown-function-code-in-bp/m-p/4601281#M1084544</guid>
      <dc:creator>mauriciolauffer</dc:creator>
      <dc:date>2012-06-06T11:43:56Z</dc:date>
    </item>
  </channel>
</rss>

