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

reg:user-exits

Former Member
0 Likes
1,363

hi to all ,

iam new to user-exits.i had seen some user-exits.

in which some are like FUNCTION EXIT_SAPMV45A_002,

FORM USEREXIT_FIELD_MODIFICATION.so what is the difference between them

are there any more exits.

with regards

satish

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,321

Hi,

1)

For the FUNCTION EXIT_SAPMV45A_002, you require a project in CMOD with the enhancement in it..Then the project should be activated in order to execute the code give in the FM..

For FM FUNCTION EXIT_SAPMV45A_002..You don't require an access key.

2) For user exit FORM USEREXIT_FIELD_MODIFICATION. You don't require a project in CMOD..You require an access key to modify the program.

Thanks,

Naren

hi to all ,

iam new to user-exits.i had seen some user-exits.

in which some are like FUNCTION EXIT_SAPMV45A_002,

FORM USEREXIT_FIELD_MODIFICATION.so what is the difference between them

are there any more exits.

with regards

satish

12 REPLIES 12
Read only

Former Member
0 Likes
1,322

Hi,

1)

For the FUNCTION EXIT_SAPMV45A_002, you require a project in CMOD with the enhancement in it..Then the project should be activated in order to execute the code give in the FM..

For FM FUNCTION EXIT_SAPMV45A_002..You don't require an access key.

2) For user exit FORM USEREXIT_FIELD_MODIFICATION. You don't require a project in CMOD..You require an access key to modify the program.

Thanks,

Naren

Read only

0 Likes
1,321

Hi Naren,

if i need to add an extra functionality to a tcode.how should i approach?

i.e in which exit i have to write the code.is there any process.

thanks &regards

satish.

Read only

Former Member
0 Likes
1,321

Hi,

What functionality you have to add??

Thanks,

Naren

P.S. Please reward points for helpful answers..

Read only

0 Likes
1,321

hi naren ,

thanks for your reply.

i want to grey out the field VBAK-AUGRU(Order reason) in tcode va03.

so what is procedure that i should appraoch.

thanks &regards

satish.

Read only

Former Member
0 Likes
1,321

Hi,

Isn't it grey out already in VA03 for field VBAK-AUGRU?

Regards,

Ferry Lianto

Read only

Former Member
0 Likes
1,322

Hi,

yes..As Ferry mentioned...all the fields in VA03 will be disabled..

Do you want it for VA01/VA02?

Thanks,

Naren

Read only

0 Likes
1,322

hi,

i need it for va01/va02.

thanks &regards

satish

Read only

Former Member
0 Likes
1,322

Hi,

In the user exit USEREXIT_FIELD_MODIFICATION in the include MV45AFZZ..

FORM USEREXIT_FIELD_MODIFICATION.

IF SCREEN-NAME = 'VBAK-AUGRU'.

SCREEN-INPUT = '0'.

ENDIF.

ENDFORM.

Thanks,

Naren

Read only

0 Likes
1,322

hi naren,

how should i approach,whether i have to search each exit.or is there any simple process for finding out the exit.

thanks & regards

satish

Read only

Former Member
0 Likes
1,322

Hi,

GO to the include MV45AFZZ..Search for USEREXIT_FIELD_MODIFICATION subroutine..

Is this what you want??

Thanks,

Naren

Read only

0 Likes
1,322

hi naren ,

we have to search each and every include and in each individual include we have to search for the exit.is this is process.or any other process is there.

thaks & regards

satish.

Read only

Former Member
0 Likes
1,322

Hi,

Are you asking for sales order user exit??

All the sales order userexits will be in the include MV45AFZZ, MV45AFZA, MV45AFZB..

Thanks,

Naren