Hello,
I've built an infomaker page in an effort to display elements in the front end of gui system. Using a query and updating all fields to be no edit.
Code pulls a handful of elements from a series of joined tables with the where clause ..
select
a.customer,
season,
performance_date,
performance_name,
seats = count(m.seat_no) ,
amount = cast (sum(m.paid_amt) as money)
...
WHERE A.event_date > ISNULL(D.cancellation_dt, '01/01/2901')
AND d.inactive = 'N'
AND event_code = 7
AND a.customer_no = :customer_no
with a group by
-----------------------------
The following error is generated when i go to the front end of the interface and select the customer_no
Last Error: Invalid DataWindow row/column specified at line 4 in rowfocuschanged event of object dw_panel of uo_panel_custom_constituent.
--------------------------------------
Whenever i search for errors pertaining to sybase, infomaker, powerbuilder i find nothing. Please advise.