pfc_postupdate


pfcmain.pbl   >   pfc_u_tab   >   pfc_postupdate   

Full name pfc_u_tab.pfc_postupdate
Access public
Extend of integer
Return value integer
Prototype event integer pfc_postupdate(powerobject[])

Name Datatype
No Data

Name Datatype
No Data

event pfc_postupdate;//////////////////////////////////////////////////////////////////////////////
//
//	Event:  
//	pfc_postupdate
//
//	Arguments:
//	apo_control[]	The controls on which to perform functionality.
//
//	Returns:  integer
//	 1 = success
//  0 = no action
//	-1 = error
//
//	Description:
//	Request the Logical Unit of Work service to perform PostUpdate functionality
//	on the array.
//
//////////////////////////////////////////////////////////////////////////////
//	
//	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.
//
//////////////////////////////////////////////////////////////////////////////

// Make sure there is something to take action on.
If UpperBound(apo_control) = 0 Then Return NO_ACTION

// Let Logical Unit of Work Service perform the functionality (create if necessary).
If IsNull(inv_luw) Or Not IsValid (inv_luw) Then of_SetLogicalUnitofWork(True)
If IsValid(inv_luw) Then
	Return inv_luw.of_PostUpdate(apo_control)
End If

Return -1
end event

     
Name Owner
pfc_u_tab.of_postupdate pfc_u_tab

     
Name Owner
systemfunctions.isnull systemfunctions
systemfunctions.isvalid systemfunctions
systemfunctions.upperbound systemfunctions
pfc_n_cst_luw.of_postupdate pfc_n_cst_luw
pfc_u_tab.of_setlogicalunitofwork pfc_u_tab

     
Full name
No Data

     
Name Scope
No Data