Re: Qualifier Format String truncates on error?
Re: Qualifier Format String truncates on error?
- Subject: Re: Qualifier Format String truncates on error?
- From: Mike Schrag <email@hidden>
- Date: Mon, 17 Mar 2008 11:19:45 -0400
"part = %@ and lotCodeValue = %@ amd manufacturingSchedule = %@"
This is why I build qualifiers with code. In particular, with ERXKey,
this would be:
EOQualifier qualifier =
Item
.PART
.is
(part
).and
(Item
.LOT_CODE_VALUE
.is(lotCodeValue)).and(Item.MANUFACTURING_SCHEDULE.is(schedule))
or if you don't want to go all the way to ERXKey:
EOQualifier qualifier = ERXQ.and(ERXQ.equals(Item.PART_KEY, part),
ERXQ.equals(Item.LOT_CODE_VALUE_KEY, lotCodeValue),
ERXQ.equals(Item.MANUFACTURING_SCHEDULE_KEY, schedule))
ms
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden