This is a pretty huge area, and so it really depends what you're asking for.
An excellent paper describing applying a constraint-solving language to a university timetabling problem is Abdennadher and Marte, 2000. If you're really wanting to implement a constraint language, then I strongly recommend the book Essentials of Constraint Programming, by one of the authors, which is excellent, but quite theoretical. That paper is just the first in a vast field - if you're serious about this, then you can follow the citations and check out other research by the authors (linked from the book page I mentioned earlier).
If you can afford a commercial implementation, then ILOG from IBM is supposed to be the state-of-the-art, and is used for logistics management by huge commerical companies. I have no personal experience with it.
Alternatively, you can look at the wide variety of algorithms that may be applicable to your problem, and see if you can cast your problem in terms that allow you to leverage them. Without more information on your problem, I can't make specific recommendations, but depending on your choice, there may be libraries and implementations available. See for example this question and answers. There are several more like this on SO with useful links - follow the tags.