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: 

Change VAWRK's value at IW31

Former Member
0 Kudos

Hi,

In IW31 transaction, I have to fill VAWRK with the same value of IWERK, but I can't find the right user exit. Can you help me?

Thanks.

1 ACCEPTED SOLUTION

venkata_ramisetti
Active Contributor
0 Kudos

HI,

Can you please check the below enhancements in SMOD?

IWO10004 Maintenance order: Customer check for order completion

IWO10005 Maintenance order: Cust.-specif. determination of profit ctr

IWO10006 Maint. order: Fcode exclusion through cust. enhancement

IWO10007 Maint.order: Customer enhancement - permits in the order

IWO10008 Cust. enhancement: Determination of tax jurisdiction code

IWO10009 PM Order: Customer Check for 'Save' Event

IWO10010 Maint. order: Cust. enhancement for determining WBS element

IWO10011 Maint. order: Customer enhancement for component selection

IWO10015 Maintenance order: F4 Help for user fields on operation

IWO10016 PM Order: Cust. enhancement to check operation user fields

IWO10017 Determine external order number by customer logic

IWO10018 Maintenance order: User fields on order header

IWO10020 Maintenance order: Automatically include task list

IWO10021 Automatic task list transfer when creating order from notif.

IWO10022 Determine calendar from user exit

IWO10023 Service order: Change header data for advance shipment doc.

IWO10024 Service order: Changes to items for advance shipment

IWO10025 PM/SM order: Finding responsible cost center

IWO10029 Inclusion of bill of material in PM/SM order

IWO10030 Preset Fields for Event Object

IWO10031 Hide personnel number in PM/SM order

Most probably the first enhancemment (EXIT_SAPLCOIH_004) will work for your requirement.

Thanks

Ramakrishna

4 REPLIES 4

venkata_ramisetti
Active Contributor
0 Kudos

HI,

Can you please check the below enhancements in SMOD?

IWO10004 Maintenance order: Customer check for order completion

IWO10005 Maintenance order: Cust.-specif. determination of profit ctr

IWO10006 Maint. order: Fcode exclusion through cust. enhancement

IWO10007 Maint.order: Customer enhancement - permits in the order

IWO10008 Cust. enhancement: Determination of tax jurisdiction code

IWO10009 PM Order: Customer Check for 'Save' Event

IWO10010 Maint. order: Cust. enhancement for determining WBS element

IWO10011 Maint. order: Customer enhancement for component selection

IWO10015 Maintenance order: F4 Help for user fields on operation

IWO10016 PM Order: Cust. enhancement to check operation user fields

IWO10017 Determine external order number by customer logic

IWO10018 Maintenance order: User fields on order header

IWO10020 Maintenance order: Automatically include task list

IWO10021 Automatic task list transfer when creating order from notif.

IWO10022 Determine calendar from user exit

IWO10023 Service order: Change header data for advance shipment doc.

IWO10024 Service order: Changes to items for advance shipment

IWO10025 PM/SM order: Finding responsible cost center

IWO10029 Inclusion of bill of material in PM/SM order

IWO10030 Preset Fields for Event Object

IWO10031 Hide personnel number in PM/SM order

Most probably the first enhancemment (EXIT_SAPLCOIH_004) will work for your requirement.

Thanks

Ramakrishna

Former Member
0 Kudos

Hi Ramakrishna,

Thanks for your help, but I think that I don't explain my requirement clearly.

When the user enters in the IW31, I've to propose in the field VAWRK, the same value that IWERK.

Then, I've to grey it.

Regards.

0 Kudos

Hi Leonardo

I don't if there's an user-exit to do what you need, but you can try to use the usual trick of field-symbols.

For example you can try to active the exit EXIT_SAPLCOIH_009 (it should be triggered while saving:

DATA: FIELD_NAME(30) VALUE '(SAPLCOIH)CAUFVD'.

FIELD-SYMBOLS: <FS> TYPE 'CAUFVD'.

ASSIGN (FIELD_NAME) TO <FS>.

<FS> -VAWRK = <FS>-IWERK.

Max

0 Kudos

Hi Max,

Thanks for your interest, but I need something more powerful. For example, if the user press enter on this field, must be triggered the validation. I tried with a field exit too, but it didn't work.

For that reason, I directly thought in propose the value and then, block the field.

Thanks.