of_setexclude


pfcapsrv.pbl   >   pfc_n_cst_lvsrv_sort   >   of_setexclude   

Full name pfc_n_cst_lvsrv_sort.of_setexclude
Access public
Extend of integer
Return value integer
Prototype public function integer of_setexclude(string[])

Name Datatype
No Data

Name Datatype
No Data

public function integer of_setexclude (string as_excludecols[]);//////////////////////////////////////////////////////////////////////////////
//
//	Function:  		of_SetExclude
//
//	Access:    		Public
//
//	Arguments:
//	as_excludecols:  An array of columnnames to be excluded from sorting
//
//	Returns:   		Integer
//   					1 if it succeeds and -1 if an error occurs.
//
//	Description:  	Establishes a list of columns to be excluded from
//					  	the sorting.
//
//////////////////////////////////////////////////////////////////////////////
//
//	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.
//
//////////////////////////////////////////////////////////////////////////////

If upperbound(as_excludecols) < 1 Then
	Return -1
End If

is_excludecolumns = as_excludecols

Return 1
end function

     
Name Owner
No Data

     
Name Owner
systemfunctions.upperbound systemfunctions

     
Full name
No Data

     
Name Scope
No Data