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

User Exit

Former Member
0 Likes
637

Hi All,

I am looking for the user exit for tcode va01.

In the item level when you double click the item level we get the details. I want to add some fields in the Additional tab.

pls tell me Which user exit(screen exit) should i use to add the fieds in the tab.

regards,

Bala

7 REPLIES 7
Read only

Former Member
0 Likes
563

hi

SDTRM001 Reschedule schedule lines without a new ATP check

V45A0001 Determine alternative materials for product selection

V45A0002 Predefine sold-to party in sales document

V45A0003 Collector for customer function modulpool MV45A

V45A0004 Copy packing proposal

V45E0001 Update the purchase order from the sales order

V45E0002 Data transfer in procurement elements (PRreq., assembly)

V45L0001 SD component supplier processing (customer enhancements)

V45P0001 SD customer function for cross-company code sales

V45S0001 Update sales document from configuration

V45S0003 MRP-relevance for incomplete configuration

V45S0004 Effectivity type in sales order

V45W0001 SD Service Management: Forward Contract Data to Item

V46H0001 SD Customer functions for resource-related billing

V60F0001 SD Billing plan (customer enhancement) diff. to billing plan

Above are the available user exits for VA01.

The following link shows how to implement a screen exit fo r a given t-code.

http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction

Please reward for the same

Message was edited by: Prakhar Saxena

Read only

Former Member
0 Likes
563

Hi,

I dont see any user exit where I can add fields in the Item level additional tab of Sales Order.

regards,

Bala

Read only

Former Member
0 Likes
563
Read only

Former Member
0 Likes
563

Hi

check out user exits for t-code VA01.

Exit Name Description

SDTRM001 Reschedule schedule lines without a new ATP check

V45A0001 Determine alternative materials for product selection

V45A0002 Predefine sold-to party in sales document

V45A0003 Collector for customer function modulpool MV45A

V45A0004 Copy packing proposal

V45E0001 Update the purchase order from the sales order

V45E0002 Data transfer in procurement elements (PRreq., assembly)

V45L0001 SD component supplier processing (customer enhancements)

V45P0001 SD customer function for cross-company code sales

V45S0001 Update sales document from configuration

V45S0003 MRP-relevance for incomplete configuration

V45S0004 Effectivity type in sales order

V45W0001 SD Service Management: Forward Contract Data to Item

V46H0001 SD Customer functions for resource-related billing

V60F0001 SD Billing plan (customer enhancement) diff. to billing plan

Reward points if helpful.

Regards,

Swathi.

Read only

Former Member
0 Likes
563

Hi,

you can add the fields at dynpro 8459 in program SAPMV45A and change the PBO logic in modul ZZFELDAUSWAHL.

Hope this helps.

Tomas

Read only

Former Member
0 Likes
563

Refer this link:

and this:

Regards,

Ravi

Read only

Former Member
0 Likes
563

Hi Bala,

Check this

  • USEREXIT_FIELD_MODIFICATION

This user exit can be used to modify the attributes of the screen fields.

To do this, the screen fields are allocated to so-called modification groups 1 - 4 and can be edited together during a modification in ABAP. If a field has no field name, it cannot be allocated to a group.

The usage of the field groups (modification group 1-4) is as follows:

  • Modification group 1: Automatic modification with transaction MFAW

  • Modification group 2: It contains 'LOO' for step loop fields

  • Modification group 3: For modifications which depend on check tables or on other fixed information

  • Modification group 4: is not used

The FORM routine is called up for every field of a screen. If you require changes to be made, you must make them in this user exit.

This FORM routine is called up by the module FELDAUSWAHL.

See the Screen Painter manual for further information on structuring the interface.

Present in program MV45AFZZ.

Please reward for the same.