Discussions

 View Only
  • 1.  Is there an API call I can put into a Formula URL To allow me edit record with a different form?

    Posted 04-24-2017 14:20
    The issue I am having is that I am using GenAddRecordForm and specifying the form, but this creates a duplicate record. Any way of just editing the record in a different form?

    Here is my current formula, everything works except the fact that its adding a record instead of editing in a different form

    URLRoot() & "db/" & Dbid() & "?a=API_EditRecord" &    "&rid=" & [Record ID#] &
        "&apptoken=buawcnbd5pjszvdimycfs3jdpzd" &
        "&_fid_313=Assigned" &
        "&rdr=" &

    URLEncode(URLRoot() & "db/"  & Dbid() & "?a=API_GenAddRecordForm&dfid=2&_fid_260=" & URLEncode ([Agency Name])& 

    "&_fid_57=" & URLEncode (User())&
    "&_fid=313=" & URLEncode ("Assigned")&

    "&z=" & Rurl())


  • 2.  RE: Is there an API call I can put into a Formula URL To allow me edit record with a different form?

    Posted 04-24-2017 15:13
    So you want to just go to the existing record in Edit mode?


  • 3.  RE: Is there an API call I can put into a Formula URL To allow me edit record with a different form?

    Posted 04-24-2017 15:17
    I mean, yes, thats the end goal. But to a specific form (not the one that the report is set to go to by default, but I cant change it base on role because every role needs to be able to edit that record in various forms)


  • 4.  RE: Is there an API call I can put into a Formula URL To allow me edit record with a different form?

    Posted 04-24-2017 15:21
    You'll want to redirect them back to edit mode, but if the form needs to be role specific, do not specify the form in the button, but rather use the settings for the forms to designate the roles and usage.


    rdr="&
    URLEncode(URLRoot()&"db/" & [_DBID_Table_Name] & "?a=er&rid="& [Record ID#])

    You can access the form setting from the table settings > Forms > 


  • 5.  RE: Is there an API call I can put into a Formula URL To allow me edit record with a different form?

    Posted 04-24-2017 15:28
    So from my understanding you are trying to edit the same record you just saved I think by using the "rdr" so I can make a modification there. If you want to pull up the normal QB UI for an edit form you can specify it like this:
    URLEncode("&rdr=" & URLEncode(URLRoot() & "db/"  & Dbid()   & "?a=er"  & "&dfid=FormID"  & "&rid=" & [Record ID#])  
    You just can't specify field values to show up in the fields using "er", but you can specify all the field values in the first call and then display the record using the url above. 


  • 6.  RE: Is there an API call I can put into a Formula URL To allow me edit record with a different form?

    Posted 04-24-2017 15:29
    Sorry, I might have explained it improperly.  I can't have it be role specific. I need it to be done via the button. And its all withing one table. There is only one table actually. 

    Basically it has to direct them to edit the record, in a specific form, with certain fields prefilled (the ones in my original formula, but I could add those in myself


  • 7.  RE: Is there an API call I can put into a Formula URL To allow me edit record with a different form?

    Posted 04-24-2017 17:22
    If your form is specific to these types of edits, meaning it's only used by this button, you could direct them to the page with the url I specified above (a=er&dfid=...etc) and then use form rules to set the desired field values. Since it looks like you're using hard data or "current user" you can set in form rules.

    Ie. If "field 57" is empty set the field to "current user"
    And
    If "field 313" is empty or not Assigned set to the value "Assigned".

    It would look and feel like the fields were auto populated and ensure they are set to the right value even through to saving. It just doesn't work in a grid edit fashion, but that doesn't seem to be used in this workflow.


  • 8.  RE: Is there an API call I can put into a Formula URL To allow me edit record with a different form?

    Posted 04-24-2017 17:31
    This and your previous comment got me through it, thank you!!