PeopleSoft BI Publisher showing Error generating report output: (235,2309) - unicode

I am Using Peoplesoft. I am creating a sample report in BI Publisher. I have created PS Query, DataSource, Report defn and all. While generating the report in Query Report Viewer, It is showing the following error.
Error generating report output: (235,2309)
Error occurred during the process of generating the output file from template file, XML data file, and translation XLIFF file.
I don't find any Unicode character in my XML , RTF files.I can able to see Other Reports without any error.
For Your Information I was creating the RTF file in my desktop with the XML file, Which was generated in the Remote System(I was restricted to install BI Publisher in Remote Desktop).
Need some assistance towards this.

Related

Export to EXCEL from SQL Server 2017 Reporting Services using command line

Using command line to export report from SQL Server Reporting Services (RDL) to Excel format.
I tried using the RS.exe utility - but it's not working with RDL files. I have a report on SQL Server 2017 Reporting Services; when exporting to Excel using the button on the page, all is working fine.
I am trying to create a script that will export this report every 3 hours.
Any ideas are welcome.
You can make a subscription for the report and set the frequency to your needs.
Go to SSRS report page and click on the ... for that report, then click Subscribe, fill out the information and save.

Auto generate SSRS report daily - excel format - report server

I've been tasked with creating a SSRS report that will automatically run every day # 2 PM and dump the results via excel format into a designated folder on the report server. Can someone point me in the right direction!?
Thank you!
When you Deploy your report to the Report Server, you can set up a Windows File Share Subscription to place a file in the folder you need.
The folder's permissions will be your nemesis.

Publishing Reports on tableau via tabcmd

I wanted to publish tableau reports via tab cmd commands and was able to do it successfully, one concern I have is "Connecting the twbx file to a data source' via tabcmd commands.
Following are the commands which I used to :
Login to tableau server :
tabcmd.exe login --server http://serverName --user "userName" --password "password" --site ""
Publishing Tableau reports to the Tableau server :
publish -c "E:\Tableau\ActualReportName.twbx" -n "new Report name.twbx" --project ProjectName --db-user "DBuserName" --db-password "DBpassword"
Although I have given my db credentials while publishing reports, I have nowhere mentioned the DB server Name and DB Name for that matter from which the twbx files would fetch the data.
I have multiple DB's using the same credentials, is there any way in TabCmd to specify the Db server Name and DB name from which reports would fetch data from?
Any help in this would be great!
Unless you have a pressing reason, I'd publish a .twb file instead of a .twbx file
The first thing I'd look into is Tableau servers support for publishing data sources that your published workbook can connect to via the Tableau server. That will allow you to embed your credentials in the shared data source and to update the workbooks and the connections in separate steps. That is especially useful if the data connection and the workbooks change at different tempos.
The unsupported hack is to have your script update the twb file before publishing. It's just an XML file and the info you want to change should be with the data connection details. If you go this route, standard disclaimers apply. Save backups. Don't modify the original, generate a revised version, expect to have to tweak your script when Tableau versions change, etc. still it's not too hard to make sense of their XML. You could probably do it with just a few lines of XSLT, but even a simple string replacement might be good enough.
Still I'd go with a shared data source over hacking the TWB internals in almost all cases.

cannot add a report to CMC (Central Management Console) Business Objects

Hi I am trying to add a report to the cmc but I am getting the following error.
Adding Crystal Report "customer details.rpt" failed.
The server with kind rptappserver returned an error result.
Failed to copy the report file to the report object.
Refreshing the report object properties might have failed.
Failed to read data from report file D:\Business Objects\BusinessObjects Enterprise 12.0\Data\CrystalReportsRasServer\temp\{E95CA1EF-E3A5-4590-93C0-0739194564AE}.rpt.
Reason: Unable to launch D:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\ReportAdd program to add report to the system.
The person who was in charge of this before i joined has left and I have no one to ask.
Never used CMC before
Check below servers whether properly working or not:
1.Adaptive processing server
2.Crystal reports Processing server
3.Inputfile repository server
4.It can be issue of rights. The user you are using should have rights to add the report.
If possible restart CCM and check for servers successfully started and try to add the report.

Crystal Reports Export Access Denied

I am maintaining some code that uses CR to create a report and write it to disk.
var report = new ReportDocument();
....
report.Export();
On our live server this is resulting in the following error:
Error in File E:\TEMP\temp_cb1a18c2-b4e6-46b8-901b-a7a028a43b79.rpt: Access to report file denied. Another program may be using it.
The app is running as Network Service and has full control of the e:\temp diretory so it seems strange to be getting an access denied message.
Anyone encountered this before?
I'd probably have to see more of your code. Are you loading a report from disk with ReportDocument.Load, with OpenReportByTempCopy specified?