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] (FOC415)TRANS 1 REJECTED NOMATCH SEG01

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[SOLVED] (FOC415)TRANS 1 REJECTED NOMATCH SEG01
 Login/Join
 
Member
posted
Hi All,

Am trying to create a master file and then updating the file through a launch page.

The code am using to create a master file is:
 

APP HOLDDATA XYZ
APP HOLDMETA XYZ

DEFINE FILE EMPDATA
ID/A20 = ' ';
PYRAMID/A20 = ' ';
CATEGORY/A50 = ' ';
PROJECT/A50 = ' ';
REPORT/A50 = ' ';
ACTIVITY/A20 = ' ';
WEEK_END_DT/A20 = ' ';
SUNDAY/A10 = ' ';
MONDAY/A10 = ' ';
TUESDAY/A10 = ' ';
WEDNESDAY/A10 = ' ';
THURSDAY/A10 = ' ';
FRIDAY/A10 = ' ';
SATURDAY/A10 = ' ';

END

TABLE FILE EMPDATA
PRINT
ID
PYRAMID
CATEGORY
PROJECT
REPORT
ACTIVITY
WEEK_END_DT
SUNDAY
MONDAY
TUESDAY
WEDNESDAY
THURSDAY
FRIDAY
SATURDAY
WHERE PIN = 'A'
ON TABLE HOLD AS TIME_SHT FORMAT FOCUS INDEX ID
END
 



The below code is used to read the values from the launch page and then update into the file

 -*********FEX TO UPDATE TABLE TIME_TBL*********************************
-****************************************************************************
-SET &ECHO = ALL;
-SET &COUNTER = 1;
-SET &COUNTER2 = 1;
-SET &PYR='HR';
-SET &WK_ED_DT='12312009';
-SET &CAT = 'CAT';
-SET &PRJ = 'PRJ';
-SET &RPT = 'RPT';
-SET &ACT = 'ACT';
-SET &SUN = 'SUN';
-SET &MON = 'MON';
-SET &TUE = 'TUE';
-SET &WED = 'WED';
-SET &THU = 'THU';
-SET &FRI = 'FRI';
-SET &SAT = 'SAT';




-*******DATA
-REPEAT MY_LOOP FOR &COUNTER FROM 1 TO 3;
-*&RPT_COUNT;

-SET &PYRAMID = 'AB';
-SET &CATEGORY  = &CAT.&COUNTER;
-SET &PROJECT = &PRJ.&COUNTER;
-SET &REPORT = &RPT.&COUNTER;
-SET &ACTIVITY  = &ACT.&COUNTER;
-SET &WEEK_END_DT = &WK_ED_DT;
-SET &SUNDAY  = &SUN.&COUNTER;
-SET &MONDAY=&MON.&COUNTER;
-SET &TUESDAY=&TUE.&COUNTER;
-SET &WEDNESDAY=&WED.&COUNTER;
-SET &THURSDAY=&THU.&COUNTER;
-SET &FRIDAY=&FRI.&COUNTER;
-SET &SATURDAY=&SAT.&COUNTER;

-SET &ID = 'AB'|'&WK_ED_DT.EVAL'|'&COUNTER.EVAL';
-*-SET &ID = '12';
-TYPE &ID


-SET &TIME_DATA1.&COUNTER2 = 'ID=&ID.EVAL, PYRAMID=&PYR.EVAL, CATEGORY=&CATEGORY.EVAL, PROJECT=&PROJECT.EVAL, REPORT=&REPORT.EVAL, ACTIVITY =&ACTIVITY.EVAL, WEEK_END_DT=&WEEK_END_DT.EVAL, SUNDAY=&SUNDAY.EVAL,';

-SET &TIME_DATA2.&COUNTER2 = ' MONDAY = &MONDAY.EVAL, TUESDAY = &TUESDAY.EVAL,WEDNESDAY = &WEDNESDAY.EVAL, THURSDAY=&THURSDAY.EVAL, FRIDAY=&FRIDAY.EVAL, SATURDAY=&SATURDAY.EVAL,$' ;
-TYPE &TIME_DATA1.&COUNTER2 &TIME_DATA2.&COUNTER2

MODIFY FILE TIME_SHT
FREEFORM  ID PYRAMID CATEGORY PROJECT REPORT ACTIVITY WEEK_END_DT SUNDAY MONDAY TUESDAY WEDNESDAY THURSDAY FRIDAY SATURDAY
MATCH  ID
ON MATCH  UPDATE  PYRAMID CATEGORY PROJECT REPORT ACTIVITY WEEK_END_DT SUNDAY MONDAY TUESDAY WEDNESDAY THURSDAY FRIDAY SATURDAY
DATA
&TIME_DATA1.&COUNTER2
&TIME_DATA2.&COUNTER2
ON NOMATCH INCLUDE
DATA
&TIME_DATA1.&COUNTER2 &TIME_DATA2.&COUNTER2
END

-SET &COUNTER2=&COUNTER2 +1;
-MY_LOOP
-EXIT
 



but when updating the table i get an error as
(FOC415)TRANS 1 REJECTED NOMATCH SEG01

could anybody help me on this .. y am getting this error... and how can i overcome it?

Thanks in advance

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


714
 
Posts: 21 | Location: bangalore | Registered: December 18, 2008Report This Post
Virtuoso
posted Hide Post
Two things are wrong with this procedure.
First is that you will also get a foclist in your new time_sht file. You don't want that, because it is automatically part of the key - which you do not supply.
You get rid of the foclist field when you do a SUM and a BY ID in the first table request.
Second is the syntax of the modify which is wrong.
You can have only ONE data statement.
It should read:
MODIFY FILE TIME_SHT
FREEFORM ID PYRAMID CATEGORY PROJECT REPORT ACTIVITY WEEK_END_DT SUNDAY MONDAY TUESDAY WEDNESDAY THURSDAY FRIDAY SATURDAY
MATCH ID
ON MATCH UPDATE PYRAMID CATEGORY PROJECT REPORT ACTIVITY WEEK_END_DT SUNDAY MONDAY TUESDAY WEDNESDAY THURSDAY FRIDAY SATURDAY
ON NOMATCH INCLUDE
DATA
&TIME_DATA1.&COUNTER2 &TIME_DATA2.&COUNTER2
END

Hope this helps ...


GamP

- Using AS 8.2.01 on Windows 10 - IE11.
in Focus since 1988
 
Posts: 1961 | Location: Netherlands | Registered: September 25, 2007Report This Post
<JG>
posted
quote:
MODIFY FILE TIME_SHT
FREEFORM ID PYRAMID CATEGORY PROJECT REPORT ACTIVITY WEEK_END_DT SUNDAY MONDAY TUESDAY WEDNESDAY THURSDAY FRIDAY SATURDAY
MATCH ID
ON MATCH UPDATE PYRAMID CATEGORY PROJECT REPORT ACTIVITY WEEK_END_DT SUNDAY MONDAY TUESDAY WEDNESDAY THURSDAY FRIDAY SATURDAY
DATA
&TIME_DATA1.&COUNTER2
&TIME_DATA2.&COUNTER2
ON NOMATCH INCLUDE
DATA
&TIME_DATA1.&COUNTER2 &TIME_DATA2.&COUNTER2
END

You can only use 1 DATA statement in your MODIFY
MODIFY FILE TIME_SHT
FREEFORM  ID PYRAMID CATEGORY PROJECT REPORT ACTIVITY WEEK_END_DT SUNDAY MONDAY TUESDAY WEDNESDAY THURSDAY FRIDAY SATURDAY
MATCH  ID
ON MATCH  UPDATE  PYRAMID CATEGORY PROJECT REPORT ACTIVITY WEEK_END_DT SUNDAY MONDAY TUESDAY WEDNESDAY THURSDAY FRIDAY SATURDAY
ON NOMATCH INCLUDE
DATA
&TIME_DATA1.&COUNTER2
&TIME_DATA2.&COUNTER2
END
  

Start by writing the modify correctly and you may get somewhere.
 
Report This Post
Member
posted Hide Post
Thank you very much for the quick response.
It's working fine now Smiler


714
 
Posts: 21 | Location: bangalore | Registered: December 18, 2008Report 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] (FOC415)TRANS 1 REJECTED NOMATCH SEG01

Copyright © 1996-2020 Information Builders