Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

User Exit for - FLB2

Former Member
0 Likes
747

Hello friends,

I need to fill data into a cutom table when I would excute FLB2.

I am looking for a exit to do this.

I have acheived this in ECC 6.0 as there are some enhancements points in the report RFEBLB20 and have done it , Now I want to implement the same in 4.7.

as a reference my code in ECC 6.0


      wa_ztable-bukrs      = avik-bukrs.
      wa_ztable-koart      = avik-koart.
      wa_ztable-konto      = avik-konto.
      wa_ztable-avsid      = avik-avsid.
      wa_ztable-bukrs      = avik-bukrs.
      wa_ztable-ernam      = sy-uname.
      wa_ztable-erdat      = sy-datum.
      wa_ztable-name1      = febep-kkrf2.

      SELECT SINGLE name1 FROM kna1
        INTO wa_ztable-name2
        WHERE kunnr = avik-konto.
      IF sy-subrc NE 0.
        CLEAR: wa_ztable-name2.
      ENDIF.
      MODIFY ztable FROM wa_ztable.

Thanks,

Rajeev.

Edited by: Rajeev_D on Oct 13, 2010 5:12 PM

1 ACCEPTED SOLUTION
Read only

tushar_shukla
Active Participant
0 Likes
570

Rajeev,

This program calls the subroutine of report rfeblb20 during processing of input file . Report rfeblb20 calls few customer exits of

function group 'XF01' . Check if that meets your requirement .

- Tushar

1 REPLY 1
Read only

tushar_shukla
Active Participant
0 Likes
571

Rajeev,

This program calls the subroutine of report rfeblb20 during processing of input file . Report rfeblb20 calls few customer exits of

function group 'XF01' . Check if that meets your requirement .

- Tushar