Top Method Summary
Options Name Purpose
# AssignFromBuffer (handle) Copies the buffer values to the entity table's properties
Overrides Consultingwerk.OERA.EntityTable:AssignFromBuffer (handle)
# AssignToBuffer (handle) Copies the entity table's properties to the buffer values
Overrides Consultingwerk.OERA.EntityTable:AssignToBuffer (handle)
# HANDLE GetChildRecord (handle, character) Returns the first (and typically only) child record of a to-one relation
Inherited from Consultingwerk.OERA.EntityTable
# GetChildRecords (handle, character, Object, character) Populates a List of child records
Inherited from Consultingwerk.OERA.EntityTable
+ InitializeNewRow () Initializes a New row
Inherited from Consultingwerk.OERA.EntityTable
# OnLanguageGuidChanged (EventArgs) Raises the LanguageGuidChanged event
# OnLanguageIsoCodeChanged (EventArgs) Raises the LanguageIsoCodeChanged event
# OnLanguageNameChanged (EventArgs) Raises the LanguageNameChanged event
# OnLoginCompanyGuidChanged (EventArgs) Raises the LoginCompanyGuidChanged event
# OnLoginCompanyNameChanged (EventArgs) Raises the LoginCompanyNameChanged event
# OnManagerUserFullNameChanged (EventArgs) Raises the ManagerUserFullNameChanged event
# OnManagerUserGuidChanged (EventArgs) Raises the ManagerUserGuidChanged event
# OnManagerUserNameChanged (EventArgs) Raises the ManagerUserNameChanged event
# OnUserEmailChanged (EventArgs) Raises the UserEmailChanged event
# OnUserFullNameChanged (EventArgs) Raises the UserFullNameChanged event
# OnUserGuidChanged (EventArgs) Raises the UserGuidChanged event
# OnUserLastLoginChanged (EventArgs) Raises the UserLastLoginChanged event
# OnUserNameChanged (EventArgs) Raises the UserNameChanged event
# OnUserPasswordChanged (EventArgs) Raises the UserPasswordChanged event
# OnUserPasswordChangedDateChanged (EventArgs) Raises the UserPasswordChangedDateChanged event
+ PopulateList (handle, character, Object, character) Populates a List object with EntityTable objects for buffers
Inherited from Consultingwerk.OERA.EntityTable
+ PopulateList (handle, Object, character) Populates a List object with EntityTable objects for buffers
Inherited from Consultingwerk.OERA.EntityTable
# SetModified () Set's the current row to modified
Inherited from Consultingwerk.OERA.EntityTable

Top Constructor Summary
Options Name Purpose
+ SmartUser_Generated () Constructor of the SmartUser_Generated class
+ SmartUser_Generated (handle) Constructor of the SmartUser_Generated class

Top Event Summary
Options Name Purpose
+ LanguageGuidChanged (Object, EventArgs) Raised when the LanguageGuid property value changes
+ LanguageIsoCodeChanged (Object, EventArgs) Raised when the LanguageIsoCode property value changes
+ LanguageNameChanged (Object, EventArgs) Raised when the LanguageName property value changes
+ LoginCompanyGuidChanged (Object, EventArgs) Raised when the LoginCompanyGuid property value changes
+ LoginCompanyNameChanged (Object, EventArgs) Raised when the LoginCompanyName property value changes
+ ManagerUserFullNameChanged (Object, EventArgs) Raised when the ManagerUserFullName property value changes
+ ManagerUserGuidChanged (Object, EventArgs) Raised when the ManagerUserGuid property value changes
+ ManagerUserNameChanged (Object, EventArgs) Raised when the ManagerUserName property value changes
+ UserEmailChanged (Object, EventArgs) Raised when the UserEmail property value changes
+ UserFullNameChanged (Object, EventArgs) Raised when the UserFullName property value changes
+ UserGuidChanged (Object, EventArgs) Raised when the UserGuid property value changes
+ UserLastLoginChanged (Object, EventArgs) Raised when the UserLastLogin property value changes
+ UserNameChanged (Object, EventArgs) Raised when the UserName property value changes
+ UserPasswordChanged (Object, EventArgs) Raised when the UserPassword property value changes
+ UserPasswordChangedDateChanged (Object, EventArgs) Raised when the UserPasswordChangedDate property value changes

Top Property Summary
Options Name Purpose
+ CHARACTER LanguageGuid
+ CHARACTER LanguageIsoCode
+ CHARACTER LanguageName
+ CHARACTER LoginCompanyGuid
+ CHARACTER LoginCompanyName
+ CHARACTER ManagerUserFullName
+ CHARACTER ManagerUserGuid
+ CHARACTER ManagerUserName
+ RowStateEnum RowState
Inherited from Consultingwerk.OERA.EntityTable
+ CHARACTER UserEmail
+ CHARACTER UserFullName
+ CHARACTER UserGuid
+ DATETIME-TZ UserLastLogin
+ CHARACTER UserName
+ CHARACTER UserPassword
+ DATE UserPasswordChangedDate


Method Detail
Top

PROTECTED AssignFromBuffer (handle)

Overrides Consultingwerk.OERA.EntityTable:AssignFromBuffer (handle)
Purpose: Copies the buffer values to the entity table's properties
Notes:

Parameters:
phBuffer HANDLE
The handle of the record buffer to assign properties from
Top

PROTECTED AssignToBuffer (handle)

Overrides Consultingwerk.OERA.EntityTable:AssignToBuffer (handle)
Purpose: Copies the entity table's properties to the buffer values
Notes:

Parameters:
phBuffer HANDLE
The handle of the record buffer to assign properties from
Top

PROTECTED HANDLE GetChildRecord (handle, character)

Inherited from Consultingwerk.OERA.EntityTable
Purpose: Returns the first (and typically only) child record of a to-one
relation
Notes:

Parameters:
phParentBuffer HANDLE
The handle to the parent buffer
pcDataRelationName CHARACTER
The name of the data-relation to return the child buffer for
Returns HANDLE
The handle of the child record, already located to the first record (if any)
Top

PROTECTED GetChildRecords (handle, character, Object, character)

Inherited from Consultingwerk.OERA.EntityTable
Purpose: Populates a List of child records
Notes: As we currently don't support "generic Interfaces", we can only access
the strong typed Add method of the Generic lists using the DYNAMIC-INVOKE
statement.

Parameters:
phParentBuffer HANDLE
The handle to the parent buffer
pcDataRelationName CHARACTER
The name of the data-relation to return the child buffer for
poList Progress.Lang.Object
The List to populate
pcClassName CHARACTER
The name of the ChildClass
Top

PUBLIC InitializeNewRow ()

Inherited from Consultingwerk.OERA.EntityTable
Purpose: Initializes a New row
Notes: Provides a method to provide initial values when records are added to
differentiate from the Constructor usage when Rows are populate based
on existing DB records
Override this method to provide initial values

Top

PROTECTED OnLanguageGuidChanged (EventArgs)

Purpose: Raises the LanguageGuidChanged event
Notes:

Parameters:
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PROTECTED OnLanguageIsoCodeChanged (EventArgs)

Purpose: Raises the LanguageIsoCodeChanged event
Notes:

Parameters:
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PROTECTED OnLanguageNameChanged (EventArgs)

Purpose: Raises the LanguageNameChanged event
Notes:

Parameters:
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PROTECTED OnLoginCompanyGuidChanged (EventArgs)

Purpose: Raises the LoginCompanyGuidChanged event
Notes:

Parameters:
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PROTECTED OnLoginCompanyNameChanged (EventArgs)

Purpose: Raises the LoginCompanyNameChanged event
Notes:

Parameters:
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PROTECTED OnManagerUserFullNameChanged (EventArgs)

Purpose: Raises the ManagerUserFullNameChanged event
Notes:

Parameters:
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PROTECTED OnManagerUserGuidChanged (EventArgs)

Purpose: Raises the ManagerUserGuidChanged event
Notes:

Parameters:
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PROTECTED OnManagerUserNameChanged (EventArgs)

Purpose: Raises the ManagerUserNameChanged event
Notes:

Parameters:
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PROTECTED OnUserEmailChanged (EventArgs)

Purpose: Raises the UserEmailChanged event
Notes:

Parameters:
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PROTECTED OnUserFullNameChanged (EventArgs)

Purpose: Raises the UserFullNameChanged event
Notes:

Parameters:
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PROTECTED OnUserGuidChanged (EventArgs)

Purpose: Raises the UserGuidChanged event
Notes:

Parameters:
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PROTECTED OnUserLastLoginChanged (EventArgs)

Purpose: Raises the UserLastLoginChanged event
Notes:

Parameters:
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PROTECTED OnUserNameChanged (EventArgs)

Purpose: Raises the UserNameChanged event
Notes:

Parameters:
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PROTECTED OnUserPasswordChanged (EventArgs)

Purpose: Raises the UserPasswordChanged event
Notes:

Parameters:
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PROTECTED OnUserPasswordChangedDateChanged (EventArgs)

Purpose: Raises the UserPasswordChangedDateChanged event
Notes:

Parameters:
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PUBLIC PopulateList (handle, character, Object, character)

Inherited from Consultingwerk.OERA.EntityTable
Purpose: Populates a List object with EntityTable objects for buffers
Notes: Selects the buffer records using an optional Query string
As we currently don't support "generic Interfaces", we can only access
the strong typed Add method of the Generic lists using the DYNAMIC-INVOKE
statement.

Parameters:
phBuffer HANDLE
The Buffer to return add EntityTable instances to the list
pcQueryString CHARACTER
The QueryString to use while populating the list
poList Progress.Lang.Object
The list to add the EntityTable instances to
pcClassName CHARACTER
The name of the class to create EntityTable instances of (child class of the EntityTable)
Top

PUBLIC PopulateList (handle, Object, character)

Inherited from Consultingwerk.OERA.EntityTable
Purpose: Populates a List object with EntityTable objects for buffers
Notes:

Parameters:
phBuffer HANDLE
The Buffer to return add EntityTable instances to the list
poList Progress.Lang.Object
The list to add the EntityTable instances to
pcClassName CHARACTER
The name of the class to create EntityTable instances of (child class of the EntityTable)
Top

PROTECTED SetModified ()

Inherited from Consultingwerk.OERA.EntityTable
Purpose: Set's the current row to modified
Notes: When the RowState is Add or Deleted it will not be changed



Constructor Detail
Top

PUBLIC SmartUser_Generated ()

Purpose: Constructor of the SmartUser_Generated class
Notes:

Top

PUBLIC SmartUser_Generated (handle)

Purpose: Constructor of the SmartUser_Generated class
Notes:

Parameters:
phBuffer HANDLE
A source buffer to copy the values from


Event Detail
Top

PUBLIC LanguageGuidChanged (Object, EventArgs)

Purpose: Raised when the LanguageGuid property value changes
Notes:

Parameters:
sender Progress.Lang.Object
The reference to the object that raised the event
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PUBLIC LanguageIsoCodeChanged (Object, EventArgs)

Purpose: Raised when the LanguageIsoCode property value changes
Notes:

Parameters:
sender Progress.Lang.Object
The reference to the object that raised the event
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PUBLIC LanguageNameChanged (Object, EventArgs)

Purpose: Raised when the LanguageName property value changes
Notes:

Parameters:
sender Progress.Lang.Object
The reference to the object that raised the event
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PUBLIC LoginCompanyGuidChanged (Object, EventArgs)

Purpose: Raised when the LoginCompanyGuid property value changes
Notes:

Parameters:
sender Progress.Lang.Object
The reference to the object that raised the event
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PUBLIC LoginCompanyNameChanged (Object, EventArgs)

Purpose: Raised when the LoginCompanyName property value changes
Notes:

Parameters:
sender Progress.Lang.Object
The reference to the object that raised the event
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PUBLIC ManagerUserFullNameChanged (Object, EventArgs)

Purpose: Raised when the ManagerUserFullName property value changes
Notes:

Parameters:
sender Progress.Lang.Object
The reference to the object that raised the event
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PUBLIC ManagerUserGuidChanged (Object, EventArgs)

Purpose: Raised when the ManagerUserGuid property value changes
Notes:

Parameters:
sender Progress.Lang.Object
The reference to the object that raised the event
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PUBLIC ManagerUserNameChanged (Object, EventArgs)

Purpose: Raised when the ManagerUserName property value changes
Notes:

Parameters:
sender Progress.Lang.Object
The reference to the object that raised the event
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PUBLIC UserEmailChanged (Object, EventArgs)

Purpose: Raised when the UserEmail property value changes
Notes:

Parameters:
sender Progress.Lang.Object
The reference to the object that raised the event
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PUBLIC UserFullNameChanged (Object, EventArgs)

Purpose: Raised when the UserFullName property value changes
Notes:

Parameters:
sender Progress.Lang.Object
The reference to the object that raised the event
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PUBLIC UserGuidChanged (Object, EventArgs)

Purpose: Raised when the UserGuid property value changes
Notes:

Parameters:
sender Progress.Lang.Object
The reference to the object that raised the event
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PUBLIC UserLastLoginChanged (Object, EventArgs)

Purpose: Raised when the UserLastLogin property value changes
Notes:

Parameters:
sender Progress.Lang.Object
The reference to the object that raised the event
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PUBLIC UserNameChanged (Object, EventArgs)

Purpose: Raised when the UserName property value changes
Notes:

Parameters:
sender Progress.Lang.Object
The reference to the object that raised the event
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PUBLIC UserPasswordChanged (Object, EventArgs)

Purpose: Raised when the UserPassword property value changes
Notes:

Parameters:
sender Progress.Lang.Object
The reference to the object that raised the event
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PUBLIC UserPasswordChangedDateChanged (Object, EventArgs)

Purpose: Raised when the UserPasswordChangedDate property value changes
Notes:

Parameters:
sender Progress.Lang.Object
The reference to the object that raised the event
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event


Property Detail
Top

PUBLIC CHARACTER LanguageGuid


Returns CHARACTER
Top

PUBLIC CHARACTER LanguageIsoCode


Returns CHARACTER
Top

PUBLIC CHARACTER LanguageName


Returns CHARACTER
Top

PUBLIC CHARACTER LoginCompanyGuid


Returns CHARACTER
Top

PUBLIC CHARACTER LoginCompanyName


Returns CHARACTER
Top

PUBLIC CHARACTER ManagerUserFullName


Returns CHARACTER
Top

PUBLIC CHARACTER ManagerUserGuid


Returns CHARACTER
Top

PUBLIC CHARACTER ManagerUserName


Returns CHARACTER
Top

PUBLIC RowStateEnum RowState

Inherited from Consultingwerk.OERA.EntityTable

Returns RowStateEnum
Top

PUBLIC CHARACTER UserEmail


Returns CHARACTER
Top

PUBLIC CHARACTER UserFullName


Returns CHARACTER
Top

PUBLIC CHARACTER UserGuid


Returns CHARACTER
Top

PUBLIC DATETIME-TZ UserLastLogin


Returns DATETIME-TZ
Top

PUBLIC CHARACTER UserName


Returns CHARACTER
Top

PUBLIC CHARACTER UserPassword


Returns CHARACTER
Top

PUBLIC DATE UserPasswordChangedDate


Returns DATE


©2006-2023 Consultingwerk Ltd.         info@consultingwerk.de         http://www.consultingwerk.de       15.04.2024 05:55:56