<?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 Exit for - FLB2 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/exit-for-flb2/m-p/7336126#M1538839</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement to capture some data into a Custom table when the Transaction FLB2 is executed. I used the exit in the program - RFEBLB20 -  EXIT_RFEBLB20_001. this exit is triggered and the data in updated in my custom table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However the issue is this data needs to be updated only when, IF vgtyp = 'BAI2'. I am unabel to capture the value in VGTYP. ANy suggestions on this or any more exits that could be used to serve this purpose.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rajeev.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 02 Nov 2010 19:09:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-11-02T19:09:26Z</dc:date>
    <item>
      <title>Exit for - FLB2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exit-for-flb2/m-p/7336126#M1538839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement to capture some data into a Custom table when the Transaction FLB2 is executed. I used the exit in the program - RFEBLB20 -  EXIT_RFEBLB20_001. this exit is triggered and the data in updated in my custom table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However the issue is this data needs to be updated only when, IF vgtyp = 'BAI2'. I am unabel to capture the value in VGTYP. ANy suggestions on this or any more exits that could be used to serve this purpose.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rajeev.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Nov 2010 19:09:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exit-for-flb2/m-p/7336126#M1538839</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-02T19:09:26Z</dc:date>
    </item>
    <item>
      <title>Re: Exit for - FLB2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exit-for-flb2/m-p/7336127#M1538840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use a field symbol to access the value of the record format from the main program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Nov 2010 19:20:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exit-for-flb2/m-p/7336127#M1538840</guid>
      <dc:creator>brad_bohn</dc:creator>
      <dc:date>2010-11-02T19:20:55Z</dc:date>
    </item>
    <item>
      <title>Re: Exit for - FLB2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exit-for-flb2/m-p/7336128#M1538841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Brad for the sugestion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The valus in the main program is in the field VGTYP and I dont want to chnage anything in the main program. i want to captue this in a exit called from a main program. Can I still use the field symbol and if yes can you please exppain in detail how?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rajeev...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Nov 2010 19:46:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exit-for-flb2/m-p/7336128#M1538841</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-02T19:46:42Z</dc:date>
    </item>
    <item>
      <title>Re: Exit for - FLB2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exit-for-flb2/m-p/7336129#M1538842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: lv_fieldname TYPE fieldname,
      lv_vgtyp     TYPE vgtyp_eb.

FIELD-SYMBOLS: &amp;lt;lfs_vgtyp&amp;gt; TYPE vgtyp_eb.

lv_fieldname = '(RFEBLB20)vgtyp'.
ASSIGN (lv_fieldname) TO &amp;lt;lfs_vgtyp&amp;gt;.

IF sy-subrc EQ 0.
  lv_vgtyp = &amp;lt;lfs_vgtyp&amp;gt;.
ENDIF.

if lv_vgtyp eq '...'.
* do something
endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Nov 2010 14:10:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exit-for-flb2/m-p/7336129#M1538842</guid>
      <dc:creator>brad_bohn</dc:creator>
      <dc:date>2010-11-03T14:10:40Z</dc:date>
    </item>
  </channel>
</rss>

