Create View using Sync Record Tables

Certified Senior Developer

I have 3 different Records and respective tables where SYNC is enabled.

Now, i want to create a view on top of these 3 tables and export to excel or use it any other workflow.

I am not planning to query view using queryentity or queryrecord etc but i use SQL Statement to get required data and populate on excel in PM.

If not view, I am left with stored procedure which is the least option in the list.

Question: Can i create view on top of synced records/tables in first place? All the resources says that i cant (if i query on it using queryentity or queryrecord) or in general etc..

If not what is the work around?

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to Malleswari T

    Hi Malleswari,

    You can try following options:
    For generating grid: Create a SP instead of view as indexes doesn't work on view which makes them underperformer. Create a CDT to hold the SP data in the Appian
    For generating excel: 50 columns is a limitation for the current set of smart services available. You can create two excels with 50 columns each and then use a third part system to merge these two excel into one single excel.

Children