SSAS cubes not displaying data for new codes created - ssas

Good day,
There has been new stock codes created on our Dynamics AX, I can see there has been transactions on this, but the data is not displayed on the sales cube. I can see the item ID in the list but there are no values.
Please help.

You may need to process or update your cubes. This isn't a programming question though so I'm going to vote close. Here are some resources to help though:
https://technet.microsoft.com/en-us/library/cc618242.aspx
https://technet.microsoft.com/en-us/library/dd309611(v=ax.50).aspx

Related

How to see how many people are accessing a ssas cube?

I wanted to know how many people are accessing a particular ssas cube. Please let me know the process to find them.
I don't think there's a simple way to get connected users from a cube. You can use a couple of different tools to collect that information (along with lot's of other information as well).
To get a list for users currently connected to a SSAS instance, you might use SQL Server Profiler. Then you can filter one cube from the resulting data.
For tracking users extended period of time, you can use Extended events
Both of these tools create data for a lot of data and you'll need to parse distinct users from that is some way.
To see the current sessions:
SELECT * FROM $System.DISCOVER_SESSIONS

How to create sequential ID numbers in Access 2016 that will be continued from previous numbers of current data?

My data is being taken from Excel Tables and a messy Access Database.
I have cleaned up the data using PowerQuery in Excel. As such the information going into the creation of a new functional database in Access 2016. Currently have ID numbers linking the various tables together already in excel and I would like these linkages to carry over to excel to help with the design of queries and forms to ensure their functionality.
What I need is a method to add autonumbers/ID numbers to the various tables AFTER the initial data is uploaded.
Therefore the numbers need to continue from last number in each associated table, when new information is added.
Is there a way to set the database to do this to automatically?
I tried to set the ID field to AutoNumber, but it overwrites the original ID numbers which means none of the tables will properly link to each other.
I have tried to set the field to autonumber AFTER adding the information, but the system won't allow that.
I am assuming I will be stuck using VBA and forms to do this, but I honestly don't know how. It seems that no one has ever asked this question before as my google search keeps coming up empty.
Please note, management wants an Access Database, so no I cannot keep it in Excel.
Thanks for any help you can provide.

How to desgin database for smart catalog application

I'm currently working on my final year project, the project is to create an web app to help disability people to be able to access to current technology.
The app will basically work as smart catalog where user create their profile, they can select many area that they are identified with. The area can be Hearing issue, Vision or Speech and Wheelchair.
Once they selected the areas, list of function that available will be display to them they can choose whether function they like or dont like. if they dont like they can ignore it.
After they selecting function, all of application that relate to selected function will display.
I have design the ER diagram and want someone who good at ER to look and help me to fix it.
I don't Know why you added the area and functions columns in user table, because we are saving them in user area and user functions table.I have made rough db diagram take a look, hope it will clear your view. if you have any doubt just ask
This db diagram made by keeping in mind that user can select multiple areas and Functions

Create Dynamic a Crystal Report with many queries

Good night, sorry for my question but I haven't found too much information about it.
I'm designing some reports to my work (for accounting) and I'm forced to use Crystal Reports with VS2005 however I have a problem because I need to use dynamic information, I have two important views the first one give me general data like: Account ID, Account Name, Description, Opening Balance, Charges, Deposits, Ending Balance, Code Month.
In next query I need to use each Account ID because I'll get its Details (if they have data) and it gives information like: Date, Policy ID, Description, Charges, Deposits, Code Month.
My problem is not get information because the DBA gave me both views, my problem is that I don't know how can I add those views in a Crystal Report and show their information Dynamic. Because first query is going to give all general data and with each value I need show their details (if they have). Maybe the next draw could give you and idea what I'm talking. Thank you very much if any of you have any example (not necessary about my topic, just with two queries) I'll be very happy.
http://s30.postimg.org/e84fkimep/test.png
Sorry because I haven't given you any code but I just have those two views and I don't know how to create the dynamic report. I have tried to find information and I couldn't.
one option is to link the views in database expert, If this is not possible then use sub report in crystal report where use 1st view in main report and 2nd view in sub report.
Link the views and use grouping for accounts. Subreports are an option too but the report will be slower

Linked Measure Groups and Local Dimensions

Mulling over something I've been reading up on.
According to Chris Webb,
A linked measure group can only be
used with dimensions from the same
database as the source measure group.
So I took this to mean as long as two cubes share a database, a linked measure group can be used with a dimension. So I created a new cube and added a local measure group, a local dimension and a linked measure group. However, I can't create a relationship between the linked measure group and the local dimension even though they are within the same database. I get the message below:
Regular relationships in the current
database between non-linked (local)
dimensions and linked measure groups
cannot be edited. These relationship
can only be created through the
wizard. This dialog can be used to
delete these relationships.
I see that I can go to the original cube and add the dimension there, but does the message below mean I have an alternative?
I just know it's going to be something simple and trivial! Thanks for reading.
If you are trying to do what I think you're doing then add the other cube first (the one you tried to link to the original) and then go to the linked dimensions tab and do the linking and it should work.
Be sure to check your aggregation after you do the linking because often-times that can get goofy if your two cubes use that dimension in different ways even though they are essentially both accessing the same dimension.