Set the display pattern like below..
num{zz9.88'%'}
Place the below script int he exit event of the Numeric field.
if(parseFloat(this.rawValue)>100){
xfa.host.messageBox("The Percent should not be more than 100%","Percent",0,0);
xfa.host.setFocus(this);
}
Thanks
Srini