1. The combination of LEVEL and SLOPE statements can approximate almost any smooth data pattern (including quadratic). However, the generated forecast function (out-of-sample) is constant or linear. This is adequate in most situations. If you want the forecast function to be quadratic (or higher), you will have to use ARIMA type specification, which can be accomplished by a combination of DEPLAG (to specify differencing) and IRREGULAR (to set AR and MA orders) statements. See the last example in the UCM doc. Of course, you can also use PROC ARIMA.
2. You should not include CYCLE like components in your model without good reason. It is good to keep a few good time series books handy to get better idea about time series modeling.