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

regarding modification in va01/vao2/va03 tcode

0 Likes
480

as per we can configure the screen of mm01,mm02,mm03 in spro by modifying the datascreen and assining the data screen to mm01/mm02/mm03.teis requirement i executed. but now i need to modify th screen of va01/va02/va03 with specific order type.in the screen i have to include some fields which i used to call from zee table and when ever the data modification is done these table should get updated.

it is not possible through any kind of exits and badi implementation.

even it may be possible through badi implementation.but i dont know the procedure and steps to follow how to implement this senario.ie. the screen related to one perticular order type like zso in va01/va02/va03

as i request the requirement is very urgent so suggest me as early as possible.

thanx with warm regards,,,,,

hareesh tadepalli

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
432

Hi

Modifications to almost all the STD t codes are generally done with BADi's

Try finding relevent BADI with below step by step process

Follow the below steps to find out what all BADI's are called when you press any button in any transaction.

1) Goto se24 (Display class cl_exithandler)

2) Double click on the method GET_INSTANCE.

3) Put a break point at Line no.25 (CASE sy-subrc).

Now

4) Execute SAP standard transaction

5) Press the required button for which you need to write an exit logic, the execution will stop at the break point.

6) Check the values of variable 'exit_name', it will give you the BADI name called at that time.

7) This way you will find all the BADIs called on click of any button in any transaction.

Mark if helpful

Regs,

Tushar Mundlik

as per we can configure the screen of mm01,mm02,mm03 in spro by modifying the datascreen and assining the data screen to mm01/mm02/mm03.teis requirement i executed. but now i need to modify th screen of va01/va02/va03 with specific order type.in the screen i have to include some fields which i used to call from zee table and when ever the data modification is done these table should get updated.

it is not possible through any kind of exits and badi implementation.

even it may be possible through badi implementation.but i dont know the procedure and steps to follow how to implement this senario.ie. the screen related to one perticular order type like zso in va01/va02/va03

as i request the requirement is very urgent so suggest me as early as possible.

thanx with warm regards,,,,,

hareesh tadepalli

1 REPLY 1
Read only

Former Member
0 Likes
433

Hi

Modifications to almost all the STD t codes are generally done with BADi's

Try finding relevent BADI with below step by step process

Follow the below steps to find out what all BADI's are called when you press any button in any transaction.

1) Goto se24 (Display class cl_exithandler)

2) Double click on the method GET_INSTANCE.

3) Put a break point at Line no.25 (CASE sy-subrc).

Now

4) Execute SAP standard transaction

5) Press the required button for which you need to write an exit logic, the execution will stop at the break point.

6) Check the values of variable 'exit_name', it will give you the BADI name called at that time.

7) This way you will find all the BADIs called on click of any button in any transaction.

Mark if helpful

Regs,

Tushar Mundlik