The webproperties are Server properties.
I am setting the in a Procedure that is called from another view.
Code:
{WebProperty=Server}
Property String psPolicyNo ""
{WebProperty=Server}
Property String psCustomerNo ""
{WebProperty=Server}
Property String psClaimNo ""
{WebProperty=Server}
Property String psUser ""
Procedure ShowBringUps String sCustomerNo String sPolicyNo String sClaimNo String sUser
WebSet psCustomerNo of oBringUp to sCustomerNo
WebSet psPolicyNo of oBringUp to sPolicyNo
WebSet psClaimNo of oBringUp to sClaimNo
WebSet psUser of oBringUp to sUser
Send Show
End_Procedure