Hi All,
I have add three extra fields in Table 7002 Sales Price like
Enabled Field No. Field Name Data Type Length Description
Yes 50001 PTR Decimal
Yes 50002 PTS Decimal
Yes 50003 BTC Decimal
Same in done in Sales line table....
When I pick the Item no. in Sales order all the price should automatically be picked from Table 7002 as it was happening in case on Unit Price.
Thanks
Rudra
0
Comments
Did you check how it is doing for UNIT PRICE?
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
IF FoundSalesPrice OR
NOT ((CalledByFieldNo = FIELDNO(Quantity)) OR
(CalledByFieldNo = FIELDNO("Variant Code")))
THEN BEGIN
"Allow Line Disc." := TempSalesPrice."Allow Line Disc.";
"Allow Invoice Disc." := TempSalesPrice."Allow Invoice Disc.";
"Unit Price" := TempSalesPrice."Unit Price";
PTR:=TempSalesPrice.PTR;// Added New lines
PTS:=TempSalesPrice.PTS;// Added New lines
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
yes..
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav