on 2008 Mar 20 5:48 PM
Hi all,
In the window Item Master Data, I need the unit price for the selected item in a query.
Anybody know how to make it?
Oitm = Item Master Data
OPLN = Price list
+Chief wrote:
<<Hi all,
In the window Item Master Data, I need the unit price for the selected item in a query.
Anybody know how to make it?
Oitm = Item Master Data
OPLN = Price list>>+
Hello Chief,
The price are stored under ITM1.
SELECT
T0.ItemCode,
T1.ListName,
T0.Price,
T0.Currency
FROM
ITM1 T0
INNER JOIN
OPLN T1 ON
T0.PriceList = T1.ListNum
WHERE
T0.ItemCode = 'XX'
KR
Murielle
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Could you be specific or give an example of what " unit price for the selected item in a query" means?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
98 | |
8 | |
6 | |
6 | |
5 | |
5 | |
4 | |
3 | |
3 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.