‎2006 Aug 07 11:45 AM
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
‎2006 Aug 07 11:51 AM
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
‎2006 Aug 07 11:54 AM
Hi,
I dont see any user exit where I can add fields in the Item level additional tab of Sales Order.
regards,
Bala
‎2006 Aug 07 12:07 PM
Hi,
Refer these links:
May be of help.....
http://help.sap.com/saphelp_46c/helpdata/en/64/72369adc56d11195100060b03c6b76/frameset.htm
Regards,
Gayathri
‎2006 Aug 07 12:09 PM
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.
‎2006 Aug 07 12:10 PM
Hi,
you can add the fields at dynpro 8459 in program SAPMV45A and change the PBO logic in modul ZZFELDAUSWAHL.
Hope this helps.
Tomas
‎2006 Aug 07 12:13 PM
‎2006 Aug 07 12:15 PM
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.