pMe | (Object) Reference to the PmaCommGroup object where the event rises. |
---|---|
pEvent | (Object) Reference to object describing detailed information about the specific event.
pEvent.Items - (Array) [for reading] Each item of this array represents the "data extension ExtComm object" of the variable that is defined either in the PmaCommGroup object or in the PmaData object.
There is only one item in this array (for now). |
var aItems = pEvent.Items;
Pm.Debug("PmaCommGroup.onDataSend: Size=" + aItems.GetSize(1) + ", ErrorCount=" + pEvent.ErrorCount);
var oItem = aItems.GetItem(0);
Pm.Debug(" Name=" + oItem.Var.Name);
Pm.Debug(" ItemId=" + oItem.ItemId);
Pm.Debug(" LastSendValue=" + oItem.LastSendValue);
Pm.Debug(" LastSendError=" + oItem.LastSendError);