excel

Hi,

I have a read-only grid with a few columns, but there are quite a number of other columns from the other tables which need to be populated in excel.

I have a Data base view where I have joined all the required tables to get the data.

Can someone suggest the best way I can use the SQLServer view to get the data into excel?

Thanks in advance

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to Rao2022
    Is it possible to start/trigger process model using a!dynamicLink()

    Yes.  For this you would include a call to a!startProcess() within the dynamicLink's saveInto parameter.  This would launch the referenced process model asynchronously (in other words, in the background exclusively), and the user would stay on the current form.

    The good side is that you can have data generated by the process (including a created Document Id) save back into the local data on your original interface - meaning you could have the referenced process model generate a document, then pass that back to your form and expose it via a Document Download Link (i.e. contained in a Rich Text Display Field).

Children