cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Restrict Drop Down values for accounting Types .

Former Member
0 Kudos
134

Hi All ,

While manually creating or changing a cart and/or SRM order in SRM 7.0 , I do not want to display some values to the user .

The requirement is that the user should never be able to select those values .

Those 2 values are used only when SC / Order is created through an interface .

How do I proceed with this ?

Regards,

Ambar

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Ambar

Try using a method and Class using Webdynpro COnfigurations for Field Control. If you fail to restrict the field values vai Webdynpro, write a small piece of code in Check BADI to throw an error if user selects any of those values.

Regards

Virender Singh

Former Member
0 Kudos

How about going this way :

I define an action for the drop down and define the action handler method .

Now whenever the user clicks on the drop down , in the action handler method I get all the values bound to thee drop down , Then remove the values I want and then rebind the values to the drop down ?

Regards ,

Ambar .

Former Member
0 Kudos

Hi Ambar

Give it a try if that works, basically you will ahve to restrict the values to appear in the drop down based on your business requirement.

One more thing, check with your technical team if you could restrict the values via some development or code at the field level in SE11. I am not sure if there is anything, but this provision could be there too

Regards

Virender Singh

Former Member
0 Kudos

The values can be bound only in WDDOINIT .

We cannot assign / delete values in the action handler for on Click .