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: 

Regarding SMOD

Former Member
0 Kudos

In SMOD tcode for Enhancement SDW00003 i saw code is +DW3

Similarly for SDW00002 its displaying the code as +DW2

Whats tht code.

Where can we find it & why its used.

Thanks in advance.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

hi,

<b>1</b>. This particular enhancement comes under <b>'MENU ENHANCEMENTS'</b> which means u can enhance certain standard SAP menu's to add your own items. and u can also provide functionality of your interest to it.

<b>2</b>. for this funcitonality to happen when u click on the added item, there must be a function code which the system will capture.

in the present case <b>+DW2</b> is a similar thing.

u write the functionality as below.

<b>OKCODE = SY-UCOMM

CASE OKCODE

WHEN '+DW2'.

write "HELLO''.

ENDCASE.</b>

<b>3</b>. since u will have to write code lines to give required fucnctionality, <b>menu exits mostly require a function module exit also.</b>

hope that helps...

pls. reward if useful...

2 REPLIES 2

Former Member
0 Kudos

+wd1,these are are menu enhacements if u want to customise your menus means you will use, please clearly specify your requirement ok

Former Member
0 Kudos

hi,

<b>1</b>. This particular enhancement comes under <b>'MENU ENHANCEMENTS'</b> which means u can enhance certain standard SAP menu's to add your own items. and u can also provide functionality of your interest to it.

<b>2</b>. for this funcitonality to happen when u click on the added item, there must be a function code which the system will capture.

in the present case <b>+DW2</b> is a similar thing.

u write the functionality as below.

<b>OKCODE = SY-UCOMM

CASE OKCODE

WHEN '+DW2'.

write "HELLO''.

ENDCASE.</b>

<b>3</b>. since u will have to write code lines to give required fucnctionality, <b>menu exits mostly require a function module exit also.</b>

hope that helps...

pls. reward if useful...