Create Dataset from Tabular Datamodel - datamodel

I have a tabular data model and I built PowerBI reports by connecting the same.
I want to create a filtered dataset from tabular data model.
We are using a single multitenant database, so we have all customer info in the single database.
Basically, I want to create separate dataset for each customer with customer specific filters.
Is it possible to create the filtered dataset from tabular data model?
Separate dataset for each customer.

Related

Can I create a (new) lookup table in Power Pivot by querying other tables in my data model?

Context:
I am creating a dashboard in Excel based on the data model I am building in Power Pivot. The source data in the data model is based on various other excel tables I am regularly receiving and copy-pasting into my workbook (their incoming structure is out of my control). My goal is to perform all data processing within Power Pivot/DAX rather than manipulating the data in the worksheets before loading into the model.
Problem:
In my model, I have a table (tabCases) which includes status updates on all cases from a management system. This table has a column named case-ID (not unique). I need to create a lookup-table with unique case-id's where I can create new columns with various KPIs for each case.
How can I do this in Power Pivot?
I found two suggestions in this article but none of them work for me (opt. 1 because it requires a manual creation of the unique ID list and opt. 2 because I don't have a database access).
In my mind there should be something really simple I could do, such as i.e.:
Add new table to data model
Set first column to be equal to DISTINCT(tabCases[caseID])
Is there such a way?
A Linkback Table might help you. Please see the link below:
https://www.sqlbi.com/articles/linkback-tables-in-powerpivot-for-excel-2013/
Thanks

Nesting a table with POJO data sources in BIRT

I have a POJO data source that has several output columns, one of which is a Java Object (ArrayList). I can access this in my table but want I want to do is have a nested table that displays information from this Java Object (it is a list of objects). Something like a purchase order form that has purchased items in a table... Trying to figure out how to get started on this.

Query to fetch Quick Find Columns of an entity in CRM?

I have added some Quick Find Columns in CRM. Now i would like to fetch those columns in the database. Can somebody tell me how can i do this with SQL query.
Every entity has its corresponding view and filtered view. In general only admins can access the standard views, so the recommended approach is to use the filtered views.
E.g. entity new_CustomEntity has a filtered view Filterednew_CustomEntity. From there it's common T-SQL.

update query in linq to update the data in multiple tables

I created kendo ui grid.I am able to load the data from the database.For this grid the data is coming from different tables ,I used joins in my linq query to load the data.
Now,I want to update the data using linq query,and update the data in different tables.
Any suggestions..
You have to update individual records from each table and then execute db.SubmitChanges();
In your query the output is an anonymous type, not a table type connected to the dbContext.
If you think in terms of SQL, LinqToSql works very similar.
It´s possible to select a record set with a join, but you cannot update directly on this. You need to break it up and modify entries directly one by one.
A DataContext instance tracks all the instances it loads. When you call SubmitChanges, all of the changes are send to the database in one transaction.

Oracle APEX form based on multiple tables

Can I create a form in APEX which creates/updates records in multiple tables? For example two tables with a one-to-one relationship.
If you are using Automated Row Fetch mechanism, you can use two different ARF for two tables. If you want to have more control, you can define your INSERT/UPDATE statements yourself usign Page Processes.
A simple way would be to create a view that returns the joined tables and base the Apex form on that. You may need to add INSTEAD OF triggers to the view to be able to insert and update successfully.

Resources