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.
Hello everyone, I have an issue with matching two files and for some reason, it generates an error when running the report. The error is:
(FOC063) WARNING. MATCH FIELDS HAVE SAME NAME BUT DIFFERENT FORMATS: PC_ID
-DEFAULT &STARTDT = '20150201';
-DEFAULT &ENDDT = '20150701';
JOIN ID IN PTD TO ALL ID IN PER AS JOIN1
JOIN TYP IN PTD TO ALL ER_ID IN ER AS JOIN2
-*
DEFINE FILE PTD
RID/A10=GETTOK(ID,23,3,'*',10,RID);
PC/A2=GETTOK(ID,23,2,'*',2,PC);
END
-*
TABLE FILE PTD
PRINT
RID
P_DAT
PC_DAT
COMPUTE ND/MDYY = IF PCD EQ MISSING THEN PAD ELSE PCD;
COMPUTE PPD /MDYY = IF PCD EQ MISSING THEN PAD ELSE PCD;
PA
PTET
E_DES
PP_DEP
PGN/A30 AS AGA_ID
PC
PC AS PC_ID
BY RID NOPRINT
WHERE PA GT 0
WHERE (PAD LE '&ENDDT' AND PAD GE '&STARTDT') OR (PCD LE '&ENDDT' AND PCD GE '&STARTDT')
ON TABLE HOLD AS PART1
END
-*
MATCH FILE PART1
PRINT
RID
P_DAT
PC_DAT
ND
PA
PTET
E_DES
PP_DEP
PGN
PC
BY PC_ID
BY PPD
RUN
FILE TABLEX
SUM
PSD
PED
BY PC_ID
BY PPD
AFTER MATCH HOLD AS PART2
END
.
.
.
.
.
The problem is with "PC_ID" field. Its format in TABLEX is "A2V" and ID format in PTD is "A23V". I tried to make PC "A2V" but get the same error. I am stuck at this point. Any ideas?
AliThis message has been edited. Last edited by: <Emily McAllister>,
WebFOCUS Developer Studio 8104 / Windows 7 / HTML and Excel
I did DEFINE the file and assigned the appropriate format to PC in the beginning. Then I gave PC an alias in the HOLD file. The second file used in MATCH has a filed named PC that has the same format as the defined first field. Where do you suggest I Define the file. Also, do I need to do it for the Hold file or the original file?
Ali
WebFOCUS Developer Studio 8104 / Windows 7 / HTML and Excel