Percent Sign in a user description for GL40

 4 Replies
 0 Subscribed to this topic
 12 Subscribed to this forum
Sort:
Author
Messages
Ken Carley
Basic Member Send Private Message
Posts: 7
Basic Member

How do I pass the percent sign(%) in the description field to GL40.1?  I will still be working on it but I don't seem to find it here yet.

Here is the relavant section of the call:

&GLT-DESCRIPTIONr0=Precert team 25% reclass

Thanks for your help.

 

Ken

Deleted User
New Member Send Private Message
Posts: 0
New Member

"&GLT-DESCRIPTIONr0="+escape("Precert team 25% reclass")

or

"&GLT-DESCRIPTIONr0=Precert team 25%25 reclass"

Ken Carley
Basic Member Send Private Message
Posts: 7
Basic Member
I tried that I swear!! Thanks Gary, the 25%25 is what I expected to work the first time. It worked this time but the +escape caused an error. Thanks again, Ken
Deleted User
New Member Send Private Message
Posts: 0
New Member

If you are doing it within the AGS node the escape would not work. You would have to create a variable and do an assign first then reference the variable in the AGS call: You could build the whole ags call or part of it in the variable as such Assign: var AGSCallDesc = ""&GLT-DESCRIPTIONr0="+escape("Precert team 25% reclass"); AGS: _PDL=....<!--SCallDe-->.<!--SCallDe--> < !AGSCallDesc>  

Ragu Raghavan
Veteran Member Send Private Message
Posts: 477
Veteran Member
Thanks for thiis thread. Helped me with a current problem. Ragu