cancel
Showing results for 
Search instead for 
Did you mean: 

Deafult field in Sales Header

Former Member
0 Kudos

Hi,

We want to make default Shipping type in the Sales order header.

Here im not getting the parameter ID. the deatsils for that field are

Table Name VBKD

Field Name VSART

Data Element VSARTTR

DE Supplement 0

Please suggest.

Regards

Vinay

Accepted Solutions (1)

Accepted Solutions (1)

marcin_milczynski
Contributor
0 Kudos

Hi,

You can do it in user-exit USEREXIT_MOVE_FIELD_TO_VBKD in include MV45AFZZ adding a piece of ABAP like this:


IF VBKD-VSART IS INITIAL.
*--assign default value i.e. 01
    VBKD-VSART = '01'.
ENDIF.

This way it will not override the shipping type specified by the user in edit mode.

Regards,

Marcin

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Thank you for the reply.

But i'm trying to avoid the User Exit.

Is there any other way to get the solution with out ABAP coding?

Regads

Vinay