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.
When I have two loops I get an error (FOC1851) duplicate dash repeat label error. Does this mean I can't have two loops or am I doing something wrong?
TABLE FILE CAR
PRINT
CAR.COMP.CAR
ON TABLE HOLD AS CARHOLD FORMAT ALPHA
END
-SET &CARLINES = &LINES;
-RUN
TABLE FILE CAROLAP
SUM
CAROLAP.ORIGIN.COUNTRY
ON TABLE HOLD AS CAROLAPHOLD FORMAT ALPHA
END
-SET &CAROLAPLINES = &LINES;
-RUN
-HTMLFORM BEGIN
<HTML>
<BODY>
-REPEAT HENDNUM FOR &MYDATA FROM 1 TO &CARLINES
-READFILE CARHOLD
!IBI.AMP.CAR;<BR/>
-HENDNUM
-ENDLOOP
-REPEAT HENDNUM FOR &MYDATA2 FROM 1 TO &CAROLAPLINES
-READFILE CAROLAPHOLD
!IBI.AMP.COUNTRY;<BR/>
-HENDNUM
-ENDLOOP
</BODY>
</HTML>
-HTMLFORM END
Results:
<HTML>
<BODY>
JAGUAR <BR/>
JENSEN <BR/>
DATSUN <BR/>
MASERATI <BR/>
TOYOTA <BR/>
AUDI <BR/>
TRIUMPH <BR/>
ALFA ROMEO <BR/>
BMW <BR/>
PEUGEOT <BR/>
<!--
0 NUMBER OF RECORDS IN TABLE= 10 LINES= 10
0 NUMBER OF RECORDS IN TABLE= 5 LINES= 1
(FOC1851) DUPLICATE DASH REPEAT LABEL
-->
EDIT: When I use -? & I see the following results, so I know the data is coming back correctly..
&CARLINES = 10
&CAROLAPLINES = 1
This message has been edited. Last edited by: GavinL,
- FOCUS Man, just FOCUS! ----------------------------- Product: WebFOCUS Version: 8.1.04 Server: Windows 2008 Server
-REPEAT HENDNUM FOR &MYDATA FROM 1 TO &CARLINES
-READFILE CARHOLD
!IBI.AMP.CAR;<BR/>
-HENDNUM
-ENDLOOP
-REPEAT HENDNUM2 FOR &MYDATA2 FROM 1 TO &CAROLAPLINES
-READFILE CAROLAPHOLD
!IBI.AMP.COUNTRY;<BR/>
-HENDNUM2
-ENDLOOP
- FOCUS Man, just FOCUS! ----------------------------- Product: WebFOCUS Version: 8.1.04 Server: Windows 2008 Server