Login
Register
Search
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Forums
Performance Management
Lawson Business Intelligence/Reporting/Crystal
Creation of link form one report to other report in LBI
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Who's On?
Membership:
Latest:
Raju
Past 24 Hours:
1
Prev. 24 Hours:
1
Overall:
5205
People Online:
Visitors:
356
Members:
1
Total:
357
Online Now:
Ragu Raghavan
New Topics
Lawson S3 HR/Payroll/Benefits
Post Tax Benefit Plan Table
11/14/2024 9:16 PM
Hi, totally new to Laswon. I have a repor
Lawson S3 Procurement
ED501 Error: Map 850 not supported by /law/c15vda/lawson/test10/edi/bin/laws_out_91
11/12/2024 3:47 PM
Tried runnning ED501 and getting the atathced erro
Lawson Smart Office
Error
11/6/2024 9:54 PM
When I try to enroll a retiree in 72.1 health plan
Infor CloudSuite
Syteline: New Data Maintenance Wizard (Error) Need help
11/1/2024 4:39 PM
Hi, I need help with an error on syteline while us
Infor ERP (Syteline)
Syteline: New Data Maintenance Wizard (Error) Need help
11/1/2024 4:24 PM
Hi, I need help with an error on syteline while us
Dealing with Lawson / Infor
Implementing Lawson v10 with Cerner Surginet, Case Cart Picking, and Quick Adds for the OR
10/29/2024 4:20 PM
Hi Everyone, I am wondering if there is any org
Lawson S3 HR/Payroll/Benefits
Canada Tax Calculation (Federal and Provincial) Issue
10/23/2024 5:00 AM
Initially, we had problem with CPP2 calculation is
Lawson S3 HR/Payroll/Benefits
CA Section 125 401k Plan
10/22/2024 10:13 PM
Does anyone have any recommendations on how to fac
S3 Systems Administration
Running AC120 deleted records from ACMASTER table
10/22/2024 3:40 PM
We recently ran the AC120 as normal and somehow it
Lawson S3 Procurement
RQ13 Approval Info
10/17/2024 2:12 PM
When a Requisition is approved on RQ13, what table
Top Forum Posters
Name
Points
Greg Moeller
4184
David Williams
3349
JonA
3291
Kat V
2984
Woozy
1973
Jimmy Chiu
1883
Kwane McNeal
1437
Ragu Raghavan
1369
Roger French
1315
mark.cook
1244
Forums
Filtered Topics
Unanswered
Unresolved
Announcements
Active Topics
Most Liked
Most Replies
Search Forums
Search
Advanced Search
Topics
Posts
Prev
Next
Forums
Performance Management
Lawson Business Intelligence/Reporting/Crystal
Creation of link form one report to other report in LBI
Please
login
to post a reply.
2 Replies
0
Subscribed to this topic
22 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
Naresh
Basic Member
Posts: 7
9/14/2010 11:26 AM
hello All,
I have two crystal reports published in LBI. One is summary level report another is detail level report. Client is asking for link from summary level report to detail level report.
I made attempts to use options 'Report part drill down' and 'Another report object' in Hyperlinks tab of formt editor in crystal reports 2008 and not succeeded.
Any help would be appreciated.
Char
Veteran Member
Posts: 62
9/14/2010 12:53 PM
This is one of my links: "https://lbi.insertyourownservername/efs/FSRemote?fsid=RS:RS-Reporting Services:80&Dobeforeevent=false&Year=" & cstr({?Year},0,'')& "&Month=" & cstr({?Month},0)
mikeP
Veteran Member
Posts: 151
9/14/2010 1:57 PM
Here's what I found works on our LBI server. This example has two reports, similar to what you’ve described. RPTA is a list of employees, its parameter is a last name or portion thereof, so if the user entered a parm value of “JOHNS”, it would list all emps with last names beginning with those letters. Each name listed on the report is a hyperlink that calls the detail report RPTB.
The hyperlink passes the employee number of the employee whose name was clicked to RPTB.
It also passes the report ID of the RPTA, so a link can be created on RPTB that lets the user return to RPTA. This is only needed if RPTB can be called from more than one report.
Finally, it passes the parm value from RPTA, e.g. “JOHNS”. When the user clicks the link on RPTB to return to RPTA, that parm value is passed back to RPTA, so that when it refreshes, it will display the same list (names beginning with JOHNS) that was displayed when the user originally clicked the link that took them to RPTB. Hope that makes sense.
First, create a formula with the server particulars. Our provider tends to change servers on us from time to time, and if there is more that on one link on a report, you only need to change the formula:
formula="http://your.server.name:port#/efs/FSRemote?fsid=RS:RS-LBILERS:"
For the hyperlink, the hyperlink type is: A Website on the Internet
I use formulas for the link for readability, e.g.:
' Call RPTB passing employee number
formula={@ServerName} & "59&Dobeforeevent=false" & _
"&_E=" & cstr({Command.EMPLOYEE},"#") & _
"&_S=" & {?_S} & _
"&_R=" & {?_R}
In this example:
@servername is the formula above
"59" is the report ID from LBI. Haven't found a way to use the actual report file, which would be a lot nicer; if the report is ever published from scratch it will get a new ID. This happened when we moved to a new LBI server, all our reports had to be published again (for the first time) and got all new IDs. If anyone knows if this is possible, I’d love to know how.
_E , _S, and _R are parameter names /value pairs such as you’d normally see on a hyperlink
_E: is the employee number, filter criteria for the called RPTB
_S: search criteria from RPTA, e.g. “JOHNS”
_R: the LBI report ID for RPTA, so a hyperlink can be created ob RPTB that returns to RPTA.
The reason for the cryptically short parm names (_E, _S, _R) in the hyperlink is that I found that CR, or more likely LRS, which we used when these reports were written, truncated the hyperlink, so that the practical limit is the server, port, and virtual directory names, plus about 80 chars worth of parameters, which includes both parameter names and values. The only work around I found was to use very short parameter names. I have not gone back and tested this since we started with LBI.
Please
login
to post a reply.