How to get items without of prices?

Common questions about 1C:Query language, Query builder tool and Data composition schema

#1
People who like this:0Yes/0No
Active user
Rating: 5
Joined: Sep 27, 2011
Company:

Hello!

I need to get items which have no prices to set prices or mark those items for deletion. How can I do so? Prices are in information register with dimension Item as reference to Items catalog.

 
#2
People who like this:0Yes/0No
Active user
Rating: 3
Joined: Nov 1, 2011
Company:

Code
SEL ECT
   Products.Ref
FR OM
   Catalog.Products AS Products
      LEFT JOIN InformationRegister.PriceList.SliceLast AS PriceListSliceLast
      ON (PriceListSliceLast.Product = Products.Ref)
WHERE
   PriceListSliceLast.Price IS NULL

 
#3
People who like this:0Yes/0No
Active user
Rating: 5
Joined: Sep 27, 2011
Company:

Thank you, that was so easy!

 
Subscribe
Users browsing this topic (guests: 1, registered: 0, hidden: 0)
Be the first to know tips & tricks on business application development!

A confirmation e-mail has been sent to the e-mail address you provided .

Click the link in the e-mail to confirm and activate the subscription.