Problem with Overriding

2006-10-05 Thread Gopala Krishna Peela
if Column1 got the value X The problem is Filter B could not identify value X in Column1 of Form F1 in push filed if condition (I think the problem with overriding but I need to have overriding in my workflows) How to overcome the above problem Any help would be appreciated Thanks

Re: Problem with Overriding

2006-10-05 Thread Carter, Craig J Civ ARPC/DPD
Sent: Thursday, October 05, 2006 5:44 AM To: arslist@ARSLIST.ORG Subject: Problem with Overriding Hi, Problem Description Overridden Filter A submits a record in Form F1 with value X in Column1 Filter B executes on submit of Form F1 and checks the push field if condition (Column1=X

Re: Problem with Overriding

2006-10-05 Thread Gopala Krishna Peela
, October 05, 2006 5:44 PM To: arslist@ARSLIST.ORG Subject: Re: Problem with Overriding Are you using the transaction value for Form F1? You may want to try TR.Column1 since that checks the transaction value being pushed to F1. CRAIG J. CARTER From: Action Request System discussion list

Re: Problem with Overriding

2006-10-05 Thread Gopala Krishna Peela
: Thursday, October 05, 2006 6:04 PM To: arslist@ARSLIST.ORG Subject: Re: Problem with Overriding The TR and DB qualifiers are used in the main filter condition. On submit to form F1, filter B condition would be TR.Column1 = X. You would then just use your push field to update form F2

Re: Problem with Overriding

2006-10-05 Thread Carter, Craig J Civ ARPC/DPD
@ARSLIST.ORG Subject: Re: Problem with Overriding In filter Run If qualifications only (not Set Field or Push Field If qualifications), the qualification can access values for the current record from the current transaction or from the database. This makes it possible for you to check state

Re: Problem with Overriding

2006-10-05 Thread Gopala Krishna Peela
@ARSLIST.ORG Subject: Re: Problem with Overriding You are correct (as is the manual)you cannot use those in the push field and set field qualifications and Im not recommending that You simply have filter B check whether TR.Column1 = X and if it does, your true condition will be push the value