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: 

BADI FOR T.CODE- XD01

Former Member
0 Kudos

hi Abappers,

Can i add tabstrip using Badi in T.code XD01.

Regards,

ravi.

1 REPLY 1

asik_shameem
Active Contributor
0 Kudos

Hi

Implementing screen enhancement in XD01 is some what tricky.

First of all, you have create a screen group in SPRO. For example 'ZC'.

To assign screen:

Implement BADI: CUSTOMER_ADD_DATA_CS

Method: GET_TAXI_SCREEN

To activate screen:

Implement BADI: CUSTOMER_ADD_DATA

Method: CHECK_ADD_ON_ACTIVE - Write the following code.

CASE I_SCREEN_GROUP.
    WHEN 'ZC'.              " SCREEN GROUP
      E_ADD_ON_ACTIVE = 'X'.
    WHEN OTHERS.
  ENDCASE.