Search found 16 matches

by mdemerick@dow.com
Mon May 12, 2008 7:46 am
Forum: IBM QualityStage
Topic: MNS Table Not Found
Replies: 5
Views: 4264

MNS Table Not Found

I'm getting the following set of errors when using MNS: MNS_13,1: Convert table not found MNS_13,1: Error occurred on line 8620 of file \D=\IBM\InformationServer\Server\PXEngine\bin\Apps\MNV\Controls\COUNTRY\US\USMNAD.PAT Pattern File line: OVERRIDE_D Text @$APPCLIB/USMNAD.ITO Return VALUE MNS_13,1:...
by mdemerick@dow.com
Thu May 01, 2008 7:06 am
Forum: IBM QualityStage
Topic: CLS Conversion
Replies: 3
Views: 2150

I fixed the problem by running an explicit conversion every time. If I didn't, then the CLS file aparently didn't do anything.
by mdemerick@dow.com
Tue Apr 29, 2008 3:00 pm
Forum: IBM QualityStage
Topic: Recognizing $
Replies: 2
Views: 1865

That did indeed work.
by mdemerick@dow.com
Tue Apr 29, 2008 2:49 pm
Forum: IBM QualityStage
Topic: Recognizing $
Replies: 2
Views: 1865

Addition: With the $ added to SEPLIST, the pattern I get for $1000 is $^. Obviously, I cannot simply use $ to match it, since that is the end of field specifier. I tried \$, but it is still seen as $ for some reason. I can use ~ for $1000 but not 1000$. 1000$ currently get recognized as ^$. If I tak...
by mdemerick@dow.com
Tue Apr 29, 2008 2:04 pm
Forum: IBM QualityStage
Topic: Recognizing $
Replies: 2
Views: 1865

Recognizing $

I'm writing rules that recognize currency (American only, for now). So far, I have two rules that recognize the $ at both the beginning and the end of the input. Yes, some of the entries have the $ at the end. Right now, I have the $ in the SEPLIST so that it is pulled out and turned into a separate...
by mdemerick@dow.com
Tue Apr 29, 2008 1:10 pm
Forum: IBM QualityStage
Topic: Invalid V_UCHAR in Condition
Replies: 2
Views: 2024

Invalid V_UCHAR in Condition

I'm receiving the following error: Standardization process failed. (In buildConditionStruc: Invalid V_UCHAR in condition. [month = 4,6,9,11] | [day > 30] I've tried various changes, including add quotes around each of the numbers. Is it that I cannot use a list of calues witha user variable? Or migh...
by mdemerick@dow.com
Thu Apr 24, 2008 12:23 pm
Forum: IBM QualityStage
Topic: CLS Conversion
Replies: 3
Views: 2150

CLS Conversion

I created a rule set for standardizing weights into the ISO standard. However, my output shows that it sometimes doesn't convert it. An entry in my CLS files is as follows: IN INH T The way I understand it, if it sees IN, it converts it to INH and gives it type T, which can be referred to in the PAT...
by mdemerick@dow.com
Wed Apr 09, 2008 2:25 pm
Forum: IBM QualityStage
Topic: Default WAVES DB Location
Replies: 2
Views: 2118

Default WAVES DB Location

I'm trying to use the WAVES stage for the first time, but need to figure out the WAVES DB location. I'm running a search, but there's a lot to go through.

Can anyone here tell me the default location?
by mdemerick@dow.com
Tue Apr 08, 2008 6:04 am
Forum: IBM QualityStage
Topic: Invalid Lookup Table Names
Replies: 3
Views: 2821

I tried taking out all references to the tables in the PAT file, but the 'files' are still there. I may try exporting it.
by mdemerick@dow.com
Tue Apr 08, 2008 6:01 am
Forum: IBM QualityStage
Topic: CONVERT Error
Replies: 4
Views: 3134

Re: CONVERT Error

[quote="stuartjvnorton"]

Do you have AMP listed twice in the lookup table?[/quote]

That was my first thought as well. Turns out I had it set up as a lookup table instead of a convert table. First time using a convert table, and it threw me off a bit.
by mdemerick@dow.com
Mon Apr 07, 2008 2:59 pm
Forum: IBM QualityStage
Topic: Increasing the number of tokens
Replies: 2
Views: 2737

Increasing the number of tokens

This should be an easy one for most of you. Unfortunately, it's not mentioned in the documentation. I have a pattern with one recognized token. It is a mix of numbers followed by letters. I know I can separate them using (n) and (-c), but I need to get them into their own tokens for further processi...
by mdemerick@dow.com
Mon Apr 07, 2008 1:11 pm
Forum: IBM QualityStage
Topic: CONVERT Error
Replies: 4
Views: 3134

I found a quasi-workaround for this. It's now split into two rules. The first sets it to + while the second rule uses the CONVERT action. It's ugly, but it works. And yes, I did notice I was using temp instead of tempnum. That is also fixed. I'm still having a few problems, but need to go through th...
by mdemerick@dow.com
Mon Apr 07, 2008 1:08 pm
Forum: IBM QualityStage
Topic: Debugging QualityStage
Replies: 2
Views: 2872

Debugging QualityStage

Is there any way to really debug QuailtyStage? Specifically for the rule sets.
by mdemerick@dow.com
Mon Apr 07, 2008 12:44 pm
Forum: IBM QualityStage
Topic: CONVERT Error
Replies: 4
Views: 3134

I found a partial solution, but it still doesn't address my main concern. "> | . COPY [1](n) tempnum COPY [1](-c) tempalpha RETYPE [1] ^ temp CONVERT tempalpha @MEASUREMENTS.TBL TKN T RETYPE [2] + tempalpha" This works much better, along with a correctly made converson table. But I still h...
by mdemerick@dow.com
Mon Apr 07, 2008 9:19 am
Forum: IBM QualityStage
Topic: CONVERT Error
Replies: 4
Views: 3134

CONVERT Error

I have the following rule in a pattern file: "> | . COPY [1](n) tempnum COPY [1](-c) tempalpha RETYPE [1] ^ temp RETYPE [2] + tempalpha CONVERT [2] @MEASUREMENTS.TBL TKN T" This should turn 5IN. into 5 IN with IN set to class T (since IN is found in the table). Instead, I get an error: &qu...