Hi
Do we have any plugins for below requirement,
Tyre Data Table:
Columns: TyreID (Primary Key), PartNumber (Foreign Key)
Country Restriction Table:
Columns: ID (Primary Key), PartNumber (Foreign Key), Country Name, IsActive (Boolean)These tables have a one-to-many relationship. For example, if we have a tyre with TyreID 1, there could be 150 entries in the Country Restriction Table for this tyre. Let's say for TyreID 1, it is active in India and the US. In this case, the IsActive column would be 1 for India and the US, and 0 for all other countries.
Requirement:
We need to export the data in the following format:
Part Number|Country1|country2|.......country150
12345 | 1 | 0 |................|1|
Discussion posts and replies are publicly visible
You might be able to make a View that creates the flattened, row-by-row construct you describe here. It would be very challenging to do it directly in any of the Excel Export options available. If you're able to get such a View working, though, you could export it to excel pretty easily using the Export DSE to Excel node, as far as I know.