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.
The report created as a compound layout reports(PDF output) and it has multiple reports. The report has 2 option for the user: 1.Current year 2.Dropdown(PO Names).The PO Names has 42 values ex:1.Adavantage health 2. CIPH so on... Currently the user manually running the report enter the "Current year" and select the option 1 at a time from the dropdown and run the report.
The user wants this report automated from Report caster. I am trying to burst the report. When I tried from reportcaster I can select one value from dropdown and distribute to user. is there way can I enter all the 42 values in the parameter instead of 1 value at a time choose from dropdown.
I appreciate your help.
Thank youThis message has been edited. Last edited by: FP Mod Chuck,
Doug, The problem is I am having dynamic subheading. When I burst I am getting only one pdf page not the 2nd one. Please see some of the code I tested.
-DEFAULT &PO_NAME='Advantage Health Physicians' -DEFAULT &PO_NAME2='Bronson Medical Group'
TABLE FILE CLQ1 PRINT REPORTMONTH NOPRINT COMPUTE DT_EOM/MDYY=DATEMOV(DATA_THROUGH_MDYY, 'EOM'); NOPRINT COMPUTE DT_EOM2/MDYY=DATEMOV(DATA_THROUGH_MDYY2, 'EOM'); NOPRINT BY PO_NAME NOPRINT ON TABLE SUBHEAD "Commercial PPO" "CLQI and Program Optimization Quality Score Card" " " " " "&PO_NAME" " " " " "Release Date: "Claims Through Date: "HeBW Date: "Supplemental Through Date: WHERE (PO_NAME EQ &PO_NAME.(|FORMAT=A200V).PO_NAME:.QUOTEDSTRING) OR (PO_NAME EQ &PO_NAME2.(|FORMAT=A200V).PO_NAME2:.QUOTEDSTRING); END
"&PO_NAME"" "" ""Release Date: "Claims Through Date: "HeBW Date: "Supplemental Through Date: WHERE (PO_NAME EQ &PO_NAME.(|FORMAT=A200V).PO_NAME:.QUOTEDSTRING) OR (PO_NAME EQ &PO_NAME2.(|FORMAT=A200V).PO_NAME2:.QUOTEDSTRING);
I don't know your requirement, but for me it doesn't make much sense to display &PO_NAME in the SUBHEAD when your report will display matching record either from &PO_NAME or &PO_NAME2. Personally I will display the field PO_NAME since is going to be the selected data value and you are breaking based on that field (BY PO_NAME NOPRINT)
BY PO_NAME NOPRINT
ON TABLE SUBHEAD
"Commercial PPO"
"CLQI and Program Optimization Quality Score Card"
" "
" "
"<PO_NAME"
" "
" "
Also, add the following to have page break (if I do understand well your need). It should fix your issue.
ON PO_NAME PAGE-BREAK
Sample code :
TABLE FILE CAR
PRINT CAR
MODEL
BY COUNTRY NOPRINT
WHERE (COUNTRY EQ '&CNTRY1.(FIND COUNTRY IN CAR).COUNTRY:.') OR (COUNTRY EQ '&CNTRY2.(FIND COUNTRY IN CAR).COUNTRY:.');
ON COUNTRY SUBHEAD
"Country: <COUNTRY"
""
ON COUNTRY PAGE-BREAK
ON TABLE PCHOLD FORMAT PDF
END
Note : use the code tag when posting code or sample. Last icon on ribbon
</>
This message has been edited. Last edited by: MartinY,
WF versions : Prod 8.2.04M gen 33, Dev 8.2.04M gen 33, OS : Windows, DB : MSSQL, Outputs : HTML, Excel, PDF In Focus since 2007
Posts: 2409 | Location: Montreal Area, Qc, CA | Registered: September 25, 2013