Questions tagged [rpt]

56 questions
65
votes
8 answers

Convert SSMS .rpt output file to .txt/.csv

I want to export my big SSMS (SQL Server Management Studio) query result (2.5m lines, 9 fields) as .csv or comma-delimited .txt (with headings). (MS SQL Server 2005 Management Studio.) So that I can then either read it line-by-line into VBA program…
Relaxed1
  • 983
  • 3
  • 13
  • 21
10
votes
1 answer

Partial JWT token at token refresh

In a microservice architecture, we use JWT tokens from keycloak. Now we would like to get a second access token with less rights (less claims/ less roles). The use case is: the new access token should give its owner access to just one document in…
Philipp
  • 115
  • 9
4
votes
2 answers

Crystal report registery key permission error, with using crystalreportviewer in C#

In a C# Windows form project, I used "CrystalReportViewer" control to view ".rpt" files. It works correctly and loads rpt files correctly. But... Unfortunately, in other systems, it's exe file encountered with this error: Ether the Crystal Reports…
nabegheh95
  • 195
  • 3
  • 19
3
votes
1 answer

Read rpt file content column by column in PHP

I have .rpt files and I need to read their data and then store the data in MYSQL Database. I tried the following solution: $lines = file("aa.rpt"); echo ''; foreach ($lines as $line_num) { $str = trim(htmlspecialchars($line_num)); …
ITSagar
  • 673
  • 2
  • 10
  • 29
3
votes
2 answers

How to open a rpt file as a SQL Table?

I have a rpt dump that one of my colleagues gave. I need to open this file as a SQL Table (I presume that this is possible since he generated the rpt dump from the SQL Table). How do I do that. I am using SQL Server Management Studio. I can also…
Spider Man
  • 415
  • 4
  • 10
  • 26
2
votes
1 answer

R repeatability model (in rptR), unsure about formula. Outcome =Zero repeatability for several models, with boundary singular fit warning

I am analyzing repeatability between a variety of cognitive tests (and repetitions of those tests). I try to determine the individual repeatability of birds using the rptR package in R. However, regardless of my model or what I'm testing it always…
R. Iersel
  • 89
  • 9
2
votes
0 answers

How to convert dsr to rpt?

I am developing web application in ASP.NET MVC 5 using C# that is the second version of an existing application that was developed in VB6, in that application there are some DSR reports. Now I want to use DSR reports in my new application but I…
Yasir Khan
  • 76
  • 4
1
vote
0 answers

get Keycloak rpt in javascript

I have tried so far to get the rpt token using the authz.js provided on the keycloak server. But I get an empty rpt back const authorization = new KeycloakAuthorization(rootState.keycloak.keycloak); this._vm.$log.debug( "The auth…
MrSpexx
  • 11
  • 2
1
vote
1 answer

How to read .rpt files in Java and save it as pdf

I have a .rpt file. I want to read it programatically in java and save it in pdf file. I followed the solution multithread pdf conversion My source code provided below final String rpt = "/Users/florapc/Desktop/Report/AcStatement.rpt"; final…
Mahboob Nur
  • 739
  • 2
  • 9
  • 34
1
vote
1 answer

ADFS Certificate expiration notification job

I have over 20 applications utilizing ADFS SSO authentication. Last year the token signing certificate expired and I went through the whole sky is falling - chasing down 3rd party vendors to schedule the refreshing of the metadata files to try to…
techietalk
  • 109
  • 2
  • 12
1
vote
1 answer

Creating a VOIP app that works within a Wifi Hotspot

With this code: public class MainActivity extends AppCompatActivity { int clientAmount = 0; int localPort = 0; // Used to load the 'native-lib' library on application startup. static { System.loadLibrary("native-lib"); …
fihdi
  • 145
  • 1
  • 1
  • 12
1
vote
0 answers

Read rpt using codeigniter and store in database and excel

I have two rpt files which I need to read, store into excel and mysql database. Also, I need to create a report that is the result of a join on two rpt files by referring to a unique column common in both of them. I have read Excel, Exported Excel…
ITSagar
  • 673
  • 2
  • 10
  • 29
1
vote
1 answer

Is there a way to convert a PDF File to a Crystal reports file?

I am trying to convert a pdf file to a crystal report file, is that even possible? IS there a software tool out there that does that? I have looked on-line but can't find anything
1
vote
1 answer

Need help indexing a list in BIRT Report Designer

I have a list ( not advanced, only one key value) that will be used to generate a table in an rptdesign file. What I need to do is have each of these list/table entries indexed as 1,2,3,....n Would there be an auto number setting in BIRT that can…
sahmed
  • 13
  • 2
1
vote
1 answer

Viewing .rpt file

I'm working in Katalon Studio, where my Test Suite Collection gives me a report as .rpt file. The question is, how can I read that .rpt file? I've found some questions about it on stackoverflow, some recommends to use Crystal Reports but how I see…
brithwulf
  • 538
  • 10
  • 35
1
2 3 4