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: 

Enhacment Name for include MV45AFZZ

Former Member
0 Kudos

Kindly let me know what is the enhancement name for the include MV45AFZZ sales order change since i need to activate the user exit.

Thanks

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi senthil,

Check this thread.

[;

And look for my reply specifically, it helped the other guy.

Maybe it'll help you understand the SAp user-exits.

Raghu.

3 REPLIES 3

Former Member
0 Kudos

Hi,

Goto SE80-> Give Package name VA which belongs to Sales then go for the includes and search for the include which is required by u, u wil get the solution for ur query...

Eample is shown below:

----


  • FORM USEREXIT_FIELD_MODIFICATION *

----


  • This userexit can be used to modify the attributes of *

  • screen fields. *

  • This form is processed for each field in the screen. *

  • *

  • The use of the fields screen-group1 to screen-group4 is: *

  • *

  • Screen-group1: Automatic modification contolles by transaction*

  • MFAW. *

  • Screen-group2: Contents 'LOO' for steploop-fields. *

  • Screen-group3: Used for modififaction, which are dependent on *

  • control tables or other fix information. *

  • Screen-group4: Unused *

  • *

  • For field mofifications, which are dependent on the document *

  • status, you can use the status field in the workareas *

  • XVBAP for item status and XVBUK for header status. *

  • *

  • This form is called from module FELDAUSWAHL. *

  • *

----


FORM USEREXIT_FIELD_MODIFICATION.

  • CASE SCREEN-GROUP3.

  • WHEN '900'.

  • IF VBAK-VBTYP NE 'A'.

  • SCREEN-ACTIVE = 0.

  • ENDIF.

  • ENDCASE.

  • CASE SCREEN-NAME.

  • WHEN 'VBAK-VBELN'.

  • SCREEN-ACTIVE = 0.

  • ENDCASE.

ENDFORM.

Hope this helps u..

Regards,

Rizwana

Former Member
0 Kudos

Hi senthil,

Check this thread.

[;

And look for my reply specifically, it helped the other guy.

Maybe it'll help you understand the SAp user-exits.

Raghu.

0 Kudos

Solved