Forum Discussion
QuickBaseCoachD
7 years agoQrew Captain
I suggest that you walk before you try to run.
Make a URL formula field called Approve, not a rich test formula field.
$approve URLONE
& "&rdr=" & URLEncode($EditOtherRecord URLTWO)
& URLEncode("&rdr=" & URLEncode($DisplaySomeRecord URLTHREE))
Make a URL formula field called Approve, not a rich test formula field.
var text approve = URLRoot() & "db/" & [_DBID_] & "?a=API_EditRecord&apptoken=XXXXXX&rid=" & URLEncode ([Record ID#])
& "&_fid_xx=" & URLEncode("Approved")
& "&_fid_xx=" & URLEncode(Now())
& "&_fid_xx=" & URLEncode(User())
var text EditOtherRecord =
URLRoot() & "db/xxxxx?a= API_EditRecord&apptoken=xxxxxxrid=" & URLEncode ([Related Store Item])
& "&_fid_xx=" & URLEncode([# of Features Requested]);
var text DisplaySomeRecord =
URLRoot() & "db/xxxxx?a=dr&rid=" & [Record ID#]);$approve URLONE
& "&rdr=" & URLEncode($EditOtherRecord URLTWO)
& URLEncode("&rdr=" & URLEncode($DisplaySomeRecord URLTHREE))
QuickBaseCoachD
7 years agoQrew Captain
me again
i meant to say
$approve
& "&rdr=" & URLEncode($EditOtherRecord)
& URLEncode("&rdr=" & URLEncode($DisplaySomeRecord))
i meant to say
$approve
& "&rdr=" & URLEncode($EditOtherRecord)
& URLEncode("&rdr=" & URLEncode($DisplaySomeRecord))