- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
I have a question about proc in object i'd like to use to simulate insurance scenarios in a separate mode (together with proc countreg and proc severity).
I'm not sure they work in my Sas licence "composition". If not, does anyone know what are the right module and version?
Below my setinit in version 9.3.
-Base SAS Software
---SAS/STAT
---SAS/GRAPH
---SAS/ETS
---SAS/FSP
---SAS/AF
---SAS/IML
---SAS/ASSIST
---SAS/CONNECT
---SAS/EIS
---MDDB Server common products
---SAS Enterprise Guide
---SAS/ACCESS Interface to Oracle
---SAS/ACCESS Interface to PC Files
---SAS/ACCESS Interface to ODBC
---SAS/IML Studio
Thank you so much.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
All three of the procedures you mention are part of SAS/ETS which you have licensed. Are you asking because you attempted to run code and had an error message that makes you think they aren't available?
You might also want to run this code to see if the modules were actually installed;
Proc product_status;
run;
If SAS/ETS does not appear it is licensed but was not installed for some reason.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
All three of the procedures you mention are part of SAS/ETS which you have licensed. Are you asking because you attempted to run code and had an error message that makes you think they aren't available?
You might also want to run this code to see if the modules were actually installed;
Proc product_status;
run;
If SAS/ETS does not appear it is licensed but was not installed for some reason.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thank you Ballardw.
Actually I hadn't any problems but as I'm going to work with it next week, I just wanted to know in advance.
In the past I had had some trouble with proc HPSPLIT due to 9.3 version which not to support it.
I run the product_status and it's avalaible.
Tks for your support