Application Development 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: 

Related to exits in (f-48).

Former Member
0 Kudos

Hi gurus,

My client ask While save in f-48 i need a pop-up from this atleast end user choose one item otherwise raise error. I done this . For this i am using enhancement is EXIT_SAPLF048_001 . For this tcode is FBA7 but my tcode is f-48 . So my question is how i can found my tcode f-48 in this exit.

Thanking you.

1 ACCEPTED SOLUTION

raymond_giuseppi
Active Contributor
0 Kudos

Yes actually F-48 is a parameter transaction which executes FBA7 (SE93) So you could either

  • Use method GET_CURRENT_TRANSACTION of class CL_DYNPRO (returned value F-48)
  • Check SY-CODE = 'FBA7' and BKPF-BLART = 'KZ'.

Regards,

Raymond

2 REPLIES 2

raymond_giuseppi
Active Contributor
0 Kudos

Yes actually F-48 is a parameter transaction which executes FBA7 (SE93) So you could either

  • Use method GET_CURRENT_TRANSACTION of class CL_DYNPRO (returned value F-48)
  • Check SY-CODE = 'FBA7' and BKPF-BLART = 'KZ'.

Regards,

Raymond

0 Kudos

Thank you so much Raymond . its work fine.