
proc format library=myfmts;
value YesNo 1='Yes' 0='No';
value checkThis 1='ThisisOne' 2='ThisisTwo';
value $cityChar 1='Portage' 2='Kinston';
run;
options fmtsearch=(myfmts); 1
proc lasr add data=orsdm.profit_company_product_year port=10010;
format city $cityChar.; 2
performance host="grid001.example.com"
install="/opt/TKGrid"
nodes=ALL;
run;