Guest Brad Report post Posted November 10, 2009 So I'm trying to use WAPT with a new application we have written on the APEX app server. The strangest thing I have run into here is that it will use strangely formated url params like this: https://server-name/pls/wiatest/f?p=113:100:1577226641319546 where the url param "p" is actually THREE values separated by a COLON. Is there a way in WAPT that I can paste together THREE variables and place a COLON between each variable to make this a dynamic string? Thanks so much. ...Brad Quote Share this post Link to post Share on other sites
sergei 0 Report post Posted November 12, 2009 If I understand you right you need to use functions concatenation for dynamic value calculation. In places where the parameter is used you can change its value from a static string to some formula. For example, formula will be p= $Var(some_var1):$Var(some_var2):$Var(some_var3) Quote Share this post Link to post Share on other sites