We have a few errors occuring in one of our screens but only in the PBD version.
When we run the PBL code via PowerBuilder (with or without debug brekapoints) it never fails.
One of the problems is that a computed field is showing up in the pfc_sort field selection dropdown even though there is explicit code to exclude it.
dw_master Constructor
String ls_exclude[]
ls_exclude[1] = "compute_1"
dw_master.inv_sort.of_SetExclude(ls_exclude)
dw_master.inv_filter.of_SetExclude(ls_exclude)
The other problem is an actual application crash when opening another window via OpenSheetWithParm().
I am looking for tips and/or pointers on how to approach this.
When we run the PBL code via PowerBuilder (with or without debug brekapoints) it never fails.
One of the problems is that a computed field is showing up in the pfc_sort field selection dropdown even though there is explicit code to exclude it.
dw_master Constructor
String ls_exclude[]
ls_exclude[1] = "compute_1"
dw_master.inv_sort.of_SetExclude(ls_exclude)
dw_master.inv_filter.of_SetExclude(ls_exclude)
The other problem is an actual application crash when opening another window via OpenSheetWithParm().
I am looking for tips and/or pointers on how to approach this.