Project Server Enterprise Custom Fields Always result null - progressive-web-apps

i have created enterprise custom fields (formula) for Project server 2016
it was working before the issue now is all formula fields results null even i put fixed text or value of another built in field for example
and all formula working with project professional with no problem and display the result OK

Did you try running the Calculate Project? or press Ctrl+F9 while in Project Professional.
Try to republish the project full - through Macro code. (Not standard publish).

Related

Fields that show up locally on SAP Crystal Reports develper are missing when run on server using SAP BO

I have a simple report in Crystal to develop. The business sends me the SQL, I copy and paste, and create 1 prompt. Easy. It's actually a duplicate of an existing report, but the join criteria is modified a bit to look at a different set of purchase orders.
So when I run my new report locally where I developed it, in SAP Crystal Reports developer, it runs perfectly and looks the way it needs to: 9 columns w/headers, all displaying data for each row.
When I run that same report in SAP Business Objects on the web (which is where the business runs it), 3 of the the 9 columns have the header but no data.
I originally thought it was because I simply took the existing report, updated the SQL, and did a "save as"... I thought something may have gotten wonky in the metadata (it's happened before). So I built it from scratch and still the same problem. I've also tried just pulling on only those fields. Shows up in developer, but not on the web.
Here's what it looks like in developer for me locally: https://i.stack.imgur.com/CKSI2.png
And here's what it looks like on the web:
https://i.stack.imgur.com/COzZS.png
Anyone have any idea what the issue could be?

Unable to create a calculated field or measure in Jaspersoft adhoc view

According to this help document
http://community.jaspersoft.com/documentation/jasperreports-server-user-guide/v56/creating-calculated-field
I should be able to create a calculated field or measure for a Jaspersoft Adhoc view. However I don't seem to have this functionality available to me since I don't have the icon required to click on to create these things. Does anyone know if this is a new feature or whether this has something to do with restrictions on functionality due to licencing or something? Is there another way to create a calculated measure that I can use as a work around considering I don't have the correct icon to enable this feature ?
What version of JasperReports Server are you in? You can chek this in the login page, on the bottom left corner there is an About Jaspersoft link. There you can also check the license type.
This feature is available only for commercial edition.
So I guess you are a customer: have you tried reaching out to Jaspersoft support?
https://support.jaspersoft.com

How to create JapserServer report templates?

I'm pretty new to JasperReports, Jaspersoft Studio, and JasperServer but I've got a JasperServer instance up and running and have been using it to create reports from Ad Hoc views. This works well but I'd like to make some report templates so that reports run from JasperServer can have branded headers/footers etc.
I worked through this tutorial and was able to create what I thought was a fine template but when I try export it as a JasperServer template I get all sorts of validation warnings and indeed trying to run reports using it from the server results in errors.
Here's an example of the warnings I'm seeing:
The style ChartValueAxisTickFormat was not found in the template
And the errors I get on the server when trying to use these templates look like those described here. I have tried using templates without any text fields or variables though. In fact, the unexpected tokens it complains about are usually actual field ids... do I need to anticipate the fields that would be used when creating a template? Wouldn't this defeat the purpose of having templates for reports created from ad hoc views?
Anyway, there's quite a lot of information out there around creating templates for Jaspersoft Studio (iReport) reports but not a whole lot on templates for JasperServer reports.
It seems like there's something fundamental about templates for JasperServer reports that I'm missing. I'd appreciate any help with either the issues I am describing or being pointed toward better documentation for creating these templates specifically.
Edit:
I'm using Jasper Studio Profession 5.5.0.final on the desktop and a Jaspersoft BI Professional for AWS 5.5 instance as the server.
Report Template as in tutorial you have linked are for Jaspersoft Studio / static reports only. Adhoc templates are different types of objects which are described here
I have encountered the same errors, and I have solved it by simply adding a styles to my report, in other words:
In the outline of your report, Right click on Style -> create Style, then just change the name of the style by each name of missing styles apperead (for example, ChartValueAxisTickFormat).
After creation of 55 styles in your report template in jasper Soft Studio, save the report, then export it as report template.
I hope this will help you.

Row(s) cannot be selected in MySQL Workbech editor

I am using MySQL Workbench. I wrote a query to select data from a table. When I execute the select query results are displayed below the editor. However, if I want to select a row from the result set by double clicking in the first column the row does not get selected. Is there any setting to enable this service.
You did not tell us which version of MySQL Workbench you are using nor which platform you are on. So I assume you have an outdated version because there was a bug (rather a regression) that prevented the row selection to work properly. This problem has already been solved in the latest release. For news and latest downloads see our team blog.

Filters in Eclipse Birt

I have to create a Web Application using Eclipse Birt, and Apache Tomcat to have it on line.
One report will include a table and a chart, both taking data from MongoDB.
While I succeeded in designing a simple report that accepts parameters from Eclipse Birt suite (based on the tutorials on the Eclipse website), I have troubles in handling a more complex report.
Actually, I wish to create a dynamic filter on-the-fly operating on a single column (i.e. "country") where i can choose the different values (i.e. "USA", "UK"...) and then have the rest of the data visualized in the report be refreshed correspondingly.
I also wish to place the filters in a different section of the report (header or footer...) in the same web page, and not have them chosen before opening the report like the parameters of Eclipse Birt.
Said it differently, I would like to have lookup-fields in the header of the report, to automatically filter the data displayed, so to refresh the query behind the report.
May be the solution could to integrate a report built with Eclipse Birt and MongoDB in a Dynamic Web Application using Eclipse too? Or in a GUI in Eclipse like WindowsBuilder?
Has someone faced this task and can help me?
Thank you so much,
Federico
There is not a simple 'out of the box' solution for what you are describing. But there are solutions.
The first thing to understand is that the BIRT reports as delivered via Apache Tomcat, are intended to be stagnant not dynamic. BIRT pulls the data set, then filters it and delivers it in HTML. This link describes the order of events in report creation.
As far as I am aware there is no way to actually provided the function of filtering the created report in BIRT after the report is created.
But, you can provide the illusion of a filtered report, there are two common methods.
Create multiple tables on one report, representing the display as you want it displayed, then use a button command to hide or show the appropriate tables.
Create multiple reports and have buttons the pass new parameters to a new report that opens in the same window.
There is a third approach that can be used, that gives you similar functionality. Use Cascading Parameters (right click report parameter in Outline > New Cascading Parameter Group). This of course is not the function as you envision it in your description, but can give the results you seem to be wanting.