Unsupported Function not found

Table 11. Unsupported functions that need no modification

Functions

Calls

Suggestion

dwObject.GetChild

1

Need no modification.


Table 12. Unsupported functions that need no modification

Functions

Calls

Suggestion

dwObject.Print

3

Need modification. Refer to the detailed information below.

DETAILED INFORMATION

Location 1: Pfc_print() event of pfc_u_dw in pfcmain.pbl

Appeon Unsupported Code: Li_rc = lds_selection.Print(true, true)

Line Number: 75

Change the code to:

if IsValid (lds_selection) then
 If AppeonGetClientType( ) = 'PB' then
  li_rc = lds_selection.Print (true, true)
 else
  li_rc = lds_selection.Print (true)
 end if
  destroy lds_selection
else
 If AppeonGetClientType() = 'PB' then
  li_rc = this.Print (true, true)
 else
  li_rc = this.Print (true)
 end if
end if

Location 2: Pfc_print() event of pfc_n_ds in pfcmain.pbl

Appeon Unsupported Code: Li_rc = lds_selection.Print(true, true)

Line Number: 87

Change the code to:

if IsValid (lds_selection) then
 if AppeonGetClientType( ) = 'PB' then
  i_rc =lds_selection.Print (true, true)
 else 
  li_rc = lds_selection.Print (true)
 end if
  destroy lds_selection
else
 If AppeonGetClientType() = 'PB' then
  li_rc = this.Print (true, true)
 else
  li_rc = this.Print (true)
 end if
end if