JmgEmplSignedInForm Class [AX 2012]
The JmgEmplSignedInForm class is the supportive class for the shop floor control attendance.
| Method | Description | |
|---|---|---|
| absenceRegisteredValue | Retrieves the integer value, which corresponds to registered absence. |
| cancelTimeOut | Cancels a previous method call to the setTimeOut method. (Inherited from Object.) |
| clockedInValue | Retrieves the integer value that corresponds with the clocked in value. |
| clockedOutValue | Retrieves the integer value that corresponds to the clocked out value. |
| equal | Determines whether the specified object is equal to the current one. (Inherited from Object.) |
| getAbsenceSums | Retrieves the number of absent workers at the specified date and calculation group. |
| getRecordSet | Retrieve information about clocked in workers and their current activity. |
| getTimeOutTimerHandle | Returns the timer handle for the object. (Inherited from Object.) |
| handle | Retrieves the handle of the class of the object. (Inherited from Object.) |
| new | Initializes a new instance of the Object class. (Inherited from Object.) |
| notify | Releases the hold on an object that has called the wait method on this object. (Inherited from Object.) |
| notifyAll | Releases a lock on the object that was issued by the wait method on this object. (Inherited from Object.) |
| objectOnServer | Determines whether the object is on a server. (Inherited from Object.) |
| owner | Returns the instance that owns the object. (Inherited from Object.) |
| setTimeOut | Sets up the scheduled execution of a specified method. (Inherited from Object.) |
| toString | Returns a string that represents the current object. (Inherited from Object.) |
| usageCount | Returns the current number of references, that is, the value of the reference counter, that the object has. (Inherited from Object.) |
| wait | Pauses a process. (Inherited from Object.) |
| xml | Returns an XML string that represents the current object. (Inherited from Object.) |
| ::addWorker | Adds a record that contains the worker attendance information to the JmgTmpEmplSignedIn temporary buffer that is specified. |
| ::getData | Retrieves attendance data for a calculation group and date. |
| ::getDataFromQuery | Retrieves attendance data from a specified query. |
The following example demonstrates the use of this class.
// From \Forms\JmgEmplSignedIn\methods\changeGroup
void changeGroup()
{
Dialog dialog;
DialogField dialogField;
dialog = new Dialog("@SYS38468");
dialogField = dialog.addField(extendedTypeStr(JmgGroupCalcId));
dialogField.value(jmgGroupCalcId);
if (dialog.run())
{
jmgGroupCalcId = dialogField.value();
jmgTmpEmplSignedIn.setTmpData(JmgEmplSignedInForm::getData(
jmgGroupCalcId,
JmgProfileSeconds::getSysDate()));
jmgTmpEmplSignedIn_ds.executeQuery();
xSysLastValue::saveLast(this);
}
}
Community Additions
ADD
Show: