Application Development and Automation 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: 
Read only

scale quantity

Former Member
0 Likes
3,226

hi friends,

i want take scale quantity price for the sale order materials . each material have 2 or mare prices . based on quantity i take scale price.

example.

materials quantity = 5.

scale price:

quantity price

0 130

2 120

3 100

i need to take scale price based on quantity < or = to scale quantity

how to take this.

please help me very urgent .

regards,

jayachandran

2 REPLIES 2
Read only

Former Member
0 Likes
1,163

Hi Jai,

To create a sales deal by VB21. I met a field named 'scale quantity' in Button 'Scales'.

It is for maintain relationship between price and quantity.

for example,

1-100 pcs cny 100

100-200 pcs cny 95

amount equals to price.

And,

The sales deal u will find like this

scale type: From

scale qantity

amount:

this nothing if customer buy 10pcs prices will be Rs.1000/ unit

if he buys 20pcs it will be 900/unit

note: The quantity scale or value scale is defined in condition type in SCALE BASIS field

cheers,

Hema.

Read only

former_member156446
Active Contributor
0 Likes
1,163

Hai Jai

you can use a case statement for this

>case materials quantity.

> when '0'.

> price = 130.

> when '2'.

> price = '120'.

> when '3'.

> price = '300'.

> when others.

> contact ur FC what to do..<<

>endcase.