i found and experimented with the included examples contained within %othome%\module\webform_9_7_2\examples. i also read 'using web forms-examples' from the OT KC.
i am using oracle 10g r2 and have created a web forms database connection from the admin.index
what i'm trying to formulate are my lookups
we are using web forms throughout a lengthy workflow. the master form is initiated and cycled through several workflow steps. each step should render a different web form, based on a database lookup and the results of the lookup query.
from the master form, the initiator will punch in PAF Number (text box) and select how many managers (drop-down) are required to approve. when this information is plugged in, it is written to a table called LL_PAF_FORM. this table contains a few columns such as PAF_Number and Mgr_Required
i need my first lookup to query PAF_Number, this way i can lock in this row and pull additional information into my second db lookup.
PAF_Number is contained within a text box called [LL_FormTag_1_1_3_1 /]
QUESTION ONE: can i pull the value from LL_FormTag_1_1_3_1 into my first lookup query? once i have this value i need to read values within the same row.
now, for my SECOND lookup:
select Mgr_Required from LL_PAF_FORM where PAF_Number = ***ValueFromLookupOne***
QUESTION TWO: how do i pull in the value from LOOKUP1 into LOOKUP2?
make sense? i can explain further if needed. i appreciate everyone's help!