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: 

User Exit

Former Member
0 Kudos

Hi,

Is there any user exit to uncheck the check box of 'Order Combination' in XD01.

Thanks & Regards

Venkatrami Reddy

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi ,

Its not possible with userexit but with a BADI : CUSTOMER_ADD_DATA

Go to se18-> enter CUSTOMER_ADD_DATA then click implementation and press create and give Z_CUSTOMER_ADD_DATA ..press enter.

then click on interface and double click on method :PRESET_VALUES_SAREA

place e_knvv-KZAZU = ' ' between method and method like below.



method IF_EX_CUSTOMER_ADD_DATA~PRESET_VALUES_SAREA.

  e_knvv-KZAZU = ' '.

endmethod.

Then save and activate...your problem will get solved venkatram

Regards,

Madhu.

3 REPLIES 3

Former Member
0 Kudos

Hi ,

Its not possible with userexit but with a BADI : CUSTOMER_ADD_DATA

Go to se18-> enter CUSTOMER_ADD_DATA then click implementation and press create and give Z_CUSTOMER_ADD_DATA ..press enter.

then click on interface and double click on method :PRESET_VALUES_SAREA

place e_knvv-KZAZU = ' ' between method and method like below.



method IF_EX_CUSTOMER_ADD_DATA~PRESET_VALUES_SAREA.

  e_knvv-KZAZU = ' '.

endmethod.

Then save and activate...your problem will get solved venkatram

Regards,

Madhu.

0 Kudos

Hi Madhu,

Thank u very much for providing valuble solution.But I have some more doubts on this.

In SE18 we have two options

1.Enhancement spot

2.BADi Spot

Which option i have to select. BADi Spot not allowing to create new implimentations. But Enhancement spot allowing new development.

And is there any need to get access key for this or we can do without access.

Thanks

Venkatrami Reddy