of_validation


pfcmain.pbl   >   pfc_u_lvs   >   of_validation   

Full name pfc_u_lvs.of_validation
Access public
Extend of integer
Return value integer
Prototype public function integer of_validation()

Name Datatype
No Data

Name Datatype
lpo_pending powerobject[]
lpo_updatearray powerobject[]
lpo_validatearray powerobject[]

public function integer of_validation ();//////////////////////////////////////////////////////////////////////////////
//
//	Function:	of_validation
//
//	Access:		public
//
//	Arguments:  none
//
//	Returns:  integer
//	 1 = All validation passed
//	-1 = validation failed
//
//	Description:
//	Validate the datasources on the listview
//
//////////////////////////////////////////////////////////////////////////////
//	
//	Revision History
//
//	Version
//	6.0   Initial version
//
//////////////////////////////////////////////////////////////////////////////
//
//	Copyright © 1996-1997 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.
//
//////////////////////////////////////////////////////////////////////////////

powerobject lpo_updatearray[]
powerobject lpo_validatearray[]
powerobject lpo_pending[]

// Make sure there is something to take action on.
If Not of_IsUpdateable() Then Return NO_ACTION

If ib_alwaysvalidate Then
	// Don't need to know the objects with updatespending.
	this.of_GetObjects(lpo_validatearray)
Else
	If UpperBound(ipo_pendingupdates) > 0 Then
		// Should be part of a SUO unit.
		lpo_pending = ipo_pendingupdates
	Else
		// Might not be part of an SUO unit.  Need to know what objects had updatespending. 
		this.of_GetObjects(lpo_updatearray)

		If this.Event pfc_UpdatesPending(lpo_updatearray, lpo_pending) < 0 Then
			Return -1
		End If
	End If
	lpo_validatearray = lpo_pending
End If

Return this.Event pfc_validation(lpo_validatearray)
end function

     
Name Owner
No Data

     
Name Owner
systemfunctions.upperbound systemfunctions
pfc_u_lvs.of_isupdateable pfc_u_lvs
pfc_u_lvs.of_getobjects pfc_u_lvs
pfc_u_lvs.pfc_updatespending pfc_u_lvs
pfc_u_lvs.pfc_validation pfc_u_lvs

     
Full name
No Data

     
Name Scope
No Data