Not able to get value from custom table in PowerApps portal - powerapps-portal

I had created a custom table(entity) in dataverse of power app portal and added some dummy data. Table name is "TestTable" and created a column "TestColumn". I am trying to get data from this in powerapps portal using liquid query.
{{entities.cr3c9_testtable['ef5398fe-c68f-eb11-b1ac-000d3af25ac1'].cr3c9_testcolumn}}
I am able to get value in portal studio as shown below.
However, when I browse this site, it's not showing.
I tried to clear cache multiple times but having same result.
Please let me know if anyone has idea on this.
Thanks in advance.

Check if table/column name is correct. Since the column is named Test Column it should be something like cr3c9_TestColumn.
Also check if you have entity permissions for cr3c9_testtable with read access and assign appropriate web roles to that permission.

Related

SAP MDG see Change Documents of a given Business Partner?

I would like to know if there's a way or some query to see the Change Documents out of a given Business Partner using SAP or SAP Webdynpro GUI. I've googled but tables such as CDHDR or CDPOS are not working for me. Any other thoughts?
You should check and enable (if they were disabled) the change document object BUPA_BUP in SCDO transaction, with the following values
Check this mini-guide: http://abapcadabra.com/index.php/cookies/541-change-documents

How to add manage temparory data in DotnetNuke?

I am beginner in DNN. I am creating a module which provides Login, Dashboard and Add-Update Form. I have data in JSON format. I want to store it temparory while user use the website. Data will be destroy as soon as user will close the website.
Currently I have created a folder in my Solution Explorer of project in Visual Basic and created 3 .json files which stores login_info.json, basic_info.json and auth_info.json. I write json data whenever user login and I make it blank when user logout.
Above method is working fine now but I afraid it will work when I will publish this module.
Also I may have situation where I need to store image some where. I don't know how I will manage.
Can anybody please guide me?
Is this proper way to store data temparory in DNN?
Is there any other better way?
After getting one of reply for Database Suggestion
Is there any table which same as User Meta in DotnetNuke?
You use the ConnectionString that is used by DNN and access the database as you would normally.
DotNetNuke.Common.Utilities.Config.GetConnectionString()
Or you can use the Data Access Layer that the DNN Framework supplies. For that take the Christoc Templates. In there is all you need to communicate with the DB.

Table element is not displayed in Jaspersoft Studio

I am trying to display a simple Table on my report; instead I see a blank page.
This is what I have done so far:
Created a new Data Adapter using CSV file.
Created a new report using that Data Adapter.
Added a Table element to Detail Band.
Click "Preview" and I can see only 2 blank pages.
If I change to use the built-in "Jasper Sample DB", I can see a Table with no problems.
I use Jaspersoft Studio 6.3.0 running on Windows 10. This is so simple and I cannot see why it does not work. I also search for solutions in many web sites but I cannot see any solutions. (Note: I can create Chart using that CSV Data Adapter with no problem.)
If I use a database as datasource, I can see the sql SELECT in queryString tag. If I use CSV as datasource, I am expecting not to see a SELECT. This is correct in the source code XML file.
Thank you.
I was able to solve it by doing this:
No query in report, but in dataset, check if the query has results at data preview
Moving the table to Summary section
At report properties and table properties change "When data no Type" attribute to "All Sections No Detail"
Also, idk if this helps, but right click on Dataset and select Connect to Main Dataset.
I hope it helps.

Splunk Fields - Broken

I was going to ask this on the Splunk forums, but for some reason I haven't got a validation email after a few hours and multiple attempts, so I thought I would try here.
I create a search from a .csv data source and save a report from this search. I then selected the fields I want. Screenshot:
This works great. Then I send this report over to a dashboard so I can make some nice graphs and all the fields are gone and I have no option to map the fields.
(redacted some data)
As you can see there's no option to use the fields I selected in the report even though this is an import of that report. I tried manually mapping a field, and even that only shows up in the Reports view and not in any dashboards/panels. Is there something I'm missing here?
I suggest that you go to the report and choose the "Add to dashboard" option. Keep both the report and the dashboard in the same app. "Permanent" fields are defined within the context of an app. "Temporary" fields (created by the rex command, for example) exist only within the context of a report.

Error using Dynamic Data Filtering: missing datasource

I am trying to use the ASP.NET Dynamic Data Filtering project, but I'm running into a problem during the configuration.
I'm following the instructions on the author's blog, and everything works like described. Then it tells me to change the datasource using the designer view. I am told to select the "GridDataSource" in the "Configure data source" wizard. This option is not there though.
I get all of the classes in my project, including the DataContext that was generated by Linq. When I choose "Show only DataContext objects", the dropdown ("Choose your context object:") is completely empty.
When I turn of the checkbox and choose my DataContext class, I get asked which table I want and all that. But, as the whole purpose of a Dynamic Data site is NOT to use one single table, that's not much help.
So I've looked at the instructions again and copied the resulting datasource from the example:
<asp:DynamicLinqDataSource ID="GridDataSource" runat="server"
EnableDelete="True" EnableUpdate="True"></asp:DynamicLinqDataSource>
Which is exactly what I had, without the "WhereParameters" nodes in there.
Now, when I run the list page however, I get an exception about a missing datasource from the filtering component. Of course when I remove the DynamicFilterRepeater, it works again.
This is the meat of the exception:
[InvalidOperationException: Missing DataSource]
Catalyst.Web.DynamicData.DynamicFilterRepeater.GetTable() in D:\Catalyst\Projects\DynamicData\Project\Trunk\DynamicData\DynamicData\DynamicFilterRepeater.cs:74
Catalyst.Web.DynamicData.DynamicFilterRepeater.GetFilters() in D:\Catalyst\Projects\DynamicData\Project\Trunk\DynamicData\DynamicData\DynamicFilterRepeater.cs:81
Catalyst.Web.DynamicData.DynamicFilterRepeater.OnInit(EventArgs e) in D:\Catalyst\Projects\DynamicData\Project\Trunk\DynamicData\DynamicData\DynamicFilterRepeater.cs:106
How do I make the DynamicFilterRepeater recognize my datasource?
I'm using VS2010 Pro, on a Win7 machine.
have you looked at the sample project you get when you download the source code.
Have a look at my blog post here Dynamic Data Filtering – Installation