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: 

How to Implement Screen Exits for MK01...

Former Member
0 Kudos

Hi All,

I have to implement screen exits for Tcode MK01.

There is a BADI namely VENDOR_ADD_DATA_CS for Mk01.

Please guide me on how to implement a screen exit..

If possible send me the steps to be followed.

Regards,

Vidya.

3 REPLIES 3

Former Member
0 Kudos

Hi,

Check this:

http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction

Have a look at this thread:

your working with BADI Then do as follows....

you follow the SPRO way and do everything they say.

1.you make an own z program with your subscreens

2.by VENDOR_ADD_DATA you put something like this to method CHECK_ADD_ON_ACTIVE:

  • Aktivierung Zusatzfelder für ZDB

if i_screen_group = 'Z1'.

e_add_on_active = 'X'.

endif.

3.by VENDOR_ADD_DATA_CS you put something like this to get_taxi_screen

CASE i_taxi_fcode.

  • Premier

WHEN 'Z1_SRCE1'.

e_screen = '0100'.

e_program = 'ZPM_SCREENEXIT_MK02'. " your own program

e_headerscreen_layout = ' '.

  • Deuxiem

WHEN 'Z1_SRCE2'.

e_screen = '0110'.

e_program = 'ZPM_SCREENEXIT_MK02'.

e_headerscreen_layout = ' '.

ENDCASE.

4. you make sure, that everything is active

Regards

Kiran

Edited by: Kiran Sure(skk) on Apr 11, 2008 3:42 PM

former_member186099
Contributor
0 Kudos

Hi use the method

GET_TAXI_SCREEN

Create a screen and assign the name here

let me know if you have any doubts

and reward points if you find it helpful.

Regards,

Prasanna