‎2008 Jan 18 3:08 AM
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
‎2008 Jan 18 3:14 AM
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.
‎2008 Jan 18 4:20 AM
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.