Forum Discussion
SarahClark
7 years agoQrew Cadet
Okay, here's a new challenge. :)
Now I want the button to "Mark Complete and Create Activity." Complete is a checkbox in the Tasks table, fid 9.
Here is where my formula stands now. What do I add to have it mark the task as complete?
URLRoot() & "db/" & [_DBID_ACTIVITY_SUMMARY] & "?a=API_GenAddRecordForm&_fid_20=" & URLEncode ([Related Case #])&"&_fid_15=" & URLEncode ([Task])
Now I want the button to "Mark Complete and Create Activity." Complete is a checkbox in the Tasks table, fid 9.
Here is where my formula stands now. What do I add to have it mark the task as complete?
URLRoot() & "db/" & [_DBID_ACTIVITY_SUMMARY] & "?a=API_GenAddRecordForm&_fid_20=" & URLEncode ([Related Case #])&"&_fid_15=" & URLEncode ([Task])
Laura_Thacker
7 years agoQrew Commander
URLRoot() & "db/" & Dbid() & "?act=API_EditRecord&apptoken=xxxxxxxx&rid=" & [Record ID#]
& "&_fid_9=1"
& "&rdr=" & URLEncode(
URLRoot() & "db/" & [_DBID_ACTIVITY_SUMMARY] & "?a=API_GenAddRecordForm&_fid_20=" & URLEncode ([Related Case #])
& "&_fid_15=" & URLEncode ([Task])
)
& "&_fid_9=1"
& "&rdr=" & URLEncode(
URLRoot() & "db/" & [_DBID_ACTIVITY_SUMMARY] & "?a=API_GenAddRecordForm&_fid_20=" & URLEncode ([Related Case #])
& "&_fid_15=" & URLEncode ([Task])
)