Larry -
Larry -
First - it looks like you have an extra -> in your statement. It should be:
PROPERTY TABLE 'Customer SEARCH->CustNum->' .fTemp_CustNum
If that doesn't do it, try putting your PROPERTY statement into a variable
first:
SET VAR vSearchString = +
('PROPERTY TABLE Customer SEARCH->CustNum->'+(CTXT(.fTemp_CustNum)))
&vSearchString
Sami
____________________________
Sami Aaron
Software Management Specialists
913-915-1971
[EMAIL PROTECTED]
From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of Lawrence
Lustig
Sent: Tuesday, July 15, 2008 4:31 PM
To: RBASE-L Mailing List
Subject: [RBASE-L] - Property Table Search Problem
I'm trying out the PROPERTY command to search a table for the next matching
record.
My code is:
-- PAUSE 2 USING .fCM_SelCustNum
SET VAR fTemp_CustNum = (CTXT(.fCM_SelCustNum))
PROPERTY TABLE 'Customer->SEARCH->CustNum->' .fTemp_CustNum
RETURN
If I uncomment the PAUSE statement I see that fCM_SelCustNum does hold a
correct customer number.
Does anyone have this function working? The column CustNum in type INT, is
that allowed in SEARCH->?
--
Larry