Focal Point Banner


As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.

Join the TIBCO Community
TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.

  • From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
  • Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
  • Request access to the private WebFOCUS User Group (login required) to network with fellow members.

Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED] Passing paramter from detail to Summary in PDF

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[SOLVED] Passing paramter from detail to Summary in PDF
 Login/Join
 
Gold member
posted
Hi,

I need to use a link called "Back to summary" in the detail page so that it links back to the summary page.
While doing so it prompts me for paramter that i already pass

"(FOC295) A VALUE IS MISSING FOR:&HIDSTRNME" . This HIDSTRNME is a variable that i pass from my html page to summary and then detail.In both the pages i display this as a header. Example:

Summary pg:rrxsttrs

A snippet of the code below
 

-SET &&hidSTRNME        =&hidSTRNME;
TABLE FILE HLD1_TRS
SUM
     total     AS 'Total Transfers' OVER
     INCOMING  AS 'Incoming (Non Target Pharmacy)' OVER
     TINCOMING AS 'Incoming (Target Pharmacy)' OVER
     OUTGOING  AS 'Outgoing (Non Target Pharmacy)' OVER
     TOUTGOING AS 'Outgoing (Target Pharmacy)'
HEADING
"Transfer Rx Report - Summary Level          <+0>                                                                 RedRx"
"&&hidSTRNME"
"Date Range : &&calStartDate - &&calEndDate  <+19>																  Target Pharmacy"
"Report Run Date and Time :  <DATE <TMCOLON"
" "
"To view Transfer details click on one of the five links below"
" "
WHERE RECORDLIMIT EQ 10
ON TABLE SET PAGE-NUM OFF
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
     UNITS=IN,
     SQUEEZE=ON,
     ORIENTATION=PORTRAIT,
$
TYPE=REPORT,
	GRID=OFF,
	FONT='ARIAL',
	COLOR='BLACK',
	BACKCOLOR='NONE',
	STYLE=NORMAL,
	BOTTOMGAP=0.05,
$
TYPE=TITLE,
	FONT='ARIAL',
	SIZE=8,
	JUSTIFY=LEFT,
	COLUMN=N1,
	FOCEXEC=rrxsttrd(RPTDTID='0' TOTAL=N1 INCOMING=N2 OUTGOING=N4 TOUTGOING=N5 TINCOMING=N3 hidSTRNME),
    TARGET='_blank',
    WHEN=N1 GT 0,
$

TYPE=TITLE,
	FONT='ARIAL',
	SIZE=8,
	JUSTIFY=LEFT,
	COLUMN=N2,
	TARGET='_blank',
	FOCEXEC=rrxsttrd(RPTDTID='1' INCOMING=N2 hidSTRNME),
	WHEN=N2 GT 0,
$
 


This works fine .


Detail page:rrxsttrd.fex

Snippet of the code below:

  
-DEFAULT &hidSTRNME=&hidSTRNME;

TABLE FILE HLD_STR
BY CTR NOPRINT
BY PatientName NOPRINT
BY TRANS_S NOPRINT
HEADING
"&&hidSTRNME"
"Date Range : &&calStartDate - &&calEndDate"
"Report Rundate and Time :  <DATE <TIME"
ON TABLE SET PAGE-NUM OFF
ON TABLE NOTOTAL
-*ON TABLE SET HTMLCSS ON
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET STYLE *
  UNITS=IN,
     ORIENTATION=LANDSCAPE,
$
TYPE=REPORT,
     FONT='ARIAL',
     SIZE=10,
     COLOR='BLACK',
     BACKCOLOR='NONE',
     STYLE=NORMAL,
     SQUEEZE=ON,
  GRID=OFF,
$
TYPE=HEADING,
     LINE=5,
     FONT='ARIAL',
   [B]  FOCEXEC=rrxsttrs(hidSTRNME),[/B]     SIZE=8,
     STYLE=BOLD,
     COLOR=RGB(155 155 155),
$


Here i pass it. But iget the FOC295 error.

I have serached in the forum as well http://forums.informationbuild...1057331/m/1371078331. Also i have tried using
&hidSTRNME and all others.Please let me know where am going wrong.

Apprecitae your help.

Thanks!
Janani

This message has been edited. Last edited by: Kerry,


WebFOCUS 7.6.9
Windows
Excel, HTML, PDF
 
Posts: 71 | Registered: April 17, 2009Report This Post
Virtuoso
posted Hide Post
Janani,

When you pass a parameter value in a drill-down, you have to use the syntax:
parameterName=parameterValue
This is not the case when you write:
FOCEXEC=rrxsttrs(hidSTRNME)
You probably should write:
FOCEXEC=rrxsttrs(hidSTRNME='&hidSTRNME')


Daniel
In Focus since 1982
wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF

 
Posts: 1980 | Location: Tel Aviv, Israel | Registered: March 23, 2006Report This Post
Virtuoso
posted Hide Post
Also, &&hidSTRNME is not the same as &hidSTRNME. One is global, the other is local. There are several discussions on the difference on the forum . As for the original problem, Danny has given the solution - variables passed via drilldown always occur with name and value coupled. If the variable passed is a field, you just specify the field as the value. If it is an &variable, you must specify the variable name including the '&'.


Regards,

Darin



In FOCUS since 1991
WF Server: 7.7.04 on Linux and Z/OS, ReportCaster, Self-Service, MRE, Java, Flex
Data: DB2/UDB, Adabas, SQL Server Output: HTML,PDF,EXL2K/07, PS, AHTML, Flex
WF Client: 77 on Linux w/Tomcat
 
Posts: 2298 | Location: Salt Lake City, Utah | Registered: February 02, 2007Report This Post
Gold member
posted Hide Post
Thanks a lot !!! It helped!!!


WebFOCUS 7.6.9
Windows
Excel, HTML, PDF
 
Posts: 71 | Registered: April 17, 2009Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED] Passing paramter from detail to Summary in PDF

Copyright © 1996-2020 Information Builders