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.
DEFINE FILE CAR
XCOUNTRY/A10 WITH COUNTRY = 'ITAL';
END
TABLE FILE CAR
PRINT
COUNTRY
XCOUNTRY
COMPUTE FLDLEN/I3 = ARGLEN(10, XCOUNTRY, 'I3');
COMPUTE COMP2/I3 = POSIT(COUNTRY, 10, XCOUNTRY, FLDLEN, 'I3');
END
If FNAME_2 and FNAME are the same size, then the contains will not work.
You can try POSIT.
-* Write out a master to read the TMP_COMP list
EX -LINES 7 EDAPUT MASTER,TMP_COMP,CV,FILE
FILENAME=TMP_COMP, SUFFIX=FIX,$
SEGNAME=TMP_COMP, $
FIELD=FNAME ,ALIAS= ,A6 ,A6 ,$
FIELD=FNAME_2 ,ALIAS= ,A6 ,A6 ,$
FIELD=TEST_EQ ,ALIAS= ,A5 ,A5 ,$
FIELD=TEST_CONT,ALIAS= ,A5 ,A5 ,$
-* Write out data
EX -LINES 3 EDAPUT FOCTEMP,TMP_COMP,CV,FILE
Bob Bob true false
Bobbi Bob falsefalse
FILEDEF TMP_COMP DISK tmp_comp.ftm (LRECL 22 RECFM V
-RUN
TABLE FILE TMP_COMP
PRINT *
COMPUTE CONT/I11 = IF FNAME CONTAINS FNAME_2 THEN 1 ELSE 0;
COMPUTE CONT/I11 = IF POSIT(FNAME,6,FNAME_2,ARGLEN(6,FNAME_2,'I1'),'I1') GT 0 THEN 1 ELSE 0;
END