Thanks.
The order of the retrieve of the main dw and the dddw can be
important.
--
Report Bugs to Sybase: http://case-express.sybase.com/cx/welcome.do
Product Enhancement Requests:
http://my.isug.com/cgi-bin/1/c/submit_enhancement
"SPD0060" <sda...@archi-tech-ture.com> wrote in message
news:d07a36c6-980e-4473...@f5g2000yqh.googlegroups.com...
> Quaint. Displaying the data column usually means the
> lookup failed. Hunch: check the data types of the main
> column and DDDW data column. And BTW it's a good idea to
> mention the PB version and build when posting a question.
>
> --
> Report Bugs to Sybase:
> http://case-express.sybase.com/cx/welcome.do Product
> Enhancement Requests:
> http://my.isug.com/cgi-bin/1/c/submit_enhancement
>
>
> "SPD0060" <sda...@archi-tech-ture.com> wrote in message
> news:d07a36c6-980e-4473...@f5g2000yqh.googl
> egroups.com... >I have DW with a tabular dataobject in it
dw_user - pfc_retrieve event:
long ll_ret
ll_ret = this.Retrieve(il_ID)
this.inv_base.of_PopulateDDDW()
return ll_ret
pfc_populatedddw event:
long ll_rc
if not isnull(il_Case_id) then
ll_rc = getchild(as_colname, adwc_obj)
If ll_rc < 0 Then Return -1
ll_rc = adwc_obj.settransobject(sqlca)
If ll_rc < 0 Then Return -1
ll_rc = adwc_obj.retrieve(il_Case_Id)
If ll_rc < 0 Then Return -1
end if
Return 1
or toggle the column with focus.
dw_user.setcolumn("A")
dw_user.SetColumn("B")
dw_user.setcolumn("A")
sounds like the datawindow is note re-drawing itself after the dddw's are
populated.
<SPD0060> wrote in message news:4b4b3e50.234...@sybase.com...
Why did I need to do it here but not somewhere else?
Because I have 2 dws on the window?