of_UpdatesPending


pfcmain.pbl   >   pfc_u_dw   >   of_UpdatesPending   

Full name pfc_u_dw.of_UpdatesPending
Access public
Extend of integer
Return value integer
Prototype public function integer of_UpdatesPending()

Name Datatype
No Data

Name Datatype
li_rc integer

public function integer of_UpdatesPending ();//////////////////////////////////////////////////////////////////////////////
//	Public Function:	of_UpdatesPending
//	Arguments:		None
//	Returns:			Integer
//						1 = Updates are pending.
//						0 = No updates are pending
//	Description:	Determine if any updates are pending on this datawindow or its linked details.
// 					Note:	Specific UpdatesPending logic should be coded in descendant pfc_UpdatesPending event.
//////////////////////////////////////////////////////////////////////////////
//	Rev. History	Version
//						6.0   Initial version
//////////////////////////////////////////////////////////////////////////////
//	Copyright © 1996-1999 Sybase, Inc. and its subsidiaries.  All rights reserved.  Any distribution of the 
// PowerBuilder Foundation Classes (PFC) source code by other than Sybase, Inc. and its subsidiaries is prohibited.
//////////////////////////////////////////////////////////////////////////////
integer	li_rc

if IsValid(inv_Linkage) then
	li_rc = inv_Linkage.of_GetUpdatesPending()
else
	li_rc = this.Event pfc_UpdatesPending()
end if

return li_rc
end function

     
Name Owner
No Data

     
Name Owner
systemfunctions.isvalid systemfunctions
pfc_n_cst_dwsrv_linkage.of_getupdatespending pfc_n_cst_dwsrv_linkage
pfc_u_dw.pfc_updatespending pfc_u_dw

     
Full name
No Data

     
Name Scope
No Data