<?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: OBBH Tcode in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/obbh-tcode/m-p/7239849#M1526142</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;From the technical standpoint, you couldn't do anything much apart from what you have already done regarding the exit not appearing in the F4 list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To get the VBKD-BSTKD value, there is no direct link as you have already found out, you have to use field-symbols to get the value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field-symbols &amp;lt;vbkd&amp;gt; type vbkd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field = '(SAPMV45A)VBKD'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign (field) to &amp;lt;VBKD&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use this to get the value of customer PO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sujay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 01 Oct 2010 09:39:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-10-01T09:39:02Z</dc:date>
    <item>
      <title>OBBH Tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obbh-tcode/m-p/7239845#M1526138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to wrtie exit in OBBH so wht i did is in ZRGGBS000 module i added exit U901. But once i activate the code and come back and press f4 i am not able to see the exit wht i created and 2nd issue is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Using the reference number BKPF-XBLNR (billing doc number), get the customer PO line VBKD-BSTKD.&lt;/P&gt;&lt;P&gt;2. Update BSEG-SGTXT (user exit should only be called for GL lines other than the 2 specifically excluded).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But how to write the code to get customer PO based on reference number in BKpf as there is no link between two tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone please help me out . I do abt fico at all&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Oct 2010 05:39:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obbh-tcode/m-p/7239845#M1526138</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-01T05:39:54Z</dc:date>
    </item>
    <item>
      <title>Re: OBBH Tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obbh-tcode/m-p/7239846#M1526139</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;Did you add the exit U901 to the subroutine &lt;STRONG&gt;get_exit_titles&lt;/STRONG&gt; in the program ZRGGBS000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  exits-name  = 'U901'.
  exits-param = c_exit_param_field.
  exits-title = Your Exit Title'.
  APPEND exits.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Oct 2010 05:47:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obbh-tcode/m-p/7239846#M1526139</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-10-01T05:47:20Z</dc:date>
    </item>
    <item>
      <title>Re: OBBH Tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obbh-tcode/m-p/7239847#M1526140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you added the exit U901 inside the form-routine GET_EXIT_TITLES ? See the program documentation&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;*   Note: If you define a new user exit, you have to enter your       *
*         user exit in the form routine GET_EXIT_TITLES.              *&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Oct 2010 05:47:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obbh-tcode/m-p/7239847#M1526140</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-01T05:47:45Z</dc:date>
    </item>
    <item>
      <title>Re: OBBH Tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obbh-tcode/m-p/7239848#M1526141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;YA I DID THT AS WELL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Oct 2010 07:02:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obbh-tcode/m-p/7239848#M1526141</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-01T07:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: OBBH Tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obbh-tcode/m-p/7239849#M1526142</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;From the technical standpoint, you couldn't do anything much apart from what you have already done regarding the exit not appearing in the F4 list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To get the VBKD-BSTKD value, there is no direct link as you have already found out, you have to use field-symbols to get the value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field-symbols &amp;lt;vbkd&amp;gt; type vbkd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field = '(SAPMV45A)VBKD'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign (field) to &amp;lt;VBKD&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use this to get the value of customer PO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sujay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Oct 2010 09:39:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obbh-tcode/m-p/7239849#M1526142</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-01T09:39:02Z</dc:date>
    </item>
  </channel>
</rss>

