PiRemovalTaskLogItem.message

Note:

The content in this help topic pertains to SuiteScript 2.0.

Property Description

Log item text message.

The message specifies if the record type is not set, or if one of record, field, or workflow IDs do not exist.

Type

string (read-only)

Module

N/piremoval Module

Parent Object

piremoval.PiRemovalTaskLogItem

Sibling Object Members

PiRemovalTaskLogItem Object Members

Since

2019.2

Syntax

Important:

The following code sample shows the syntax for this member. It is not a functional example. For a complete script example, see N/piremoval Module Script Sample.

            // Add additional code
...
var myPiRemovalTask = piremoval.createTask({
    recordType: 'customer',
    recordIds: [95],
    fieldIds: ['email'],
    historyReplacement: 'removed_value'
});

myPiRemovalTask.save();
var myId = myPiRemovalTask.id;

var myStatus = piremoval.getTaskStatus({
    id: myId
});

var theLogList = myStatus.logList;
for (var i = 0; i < theLogList.length; i++) {
    var theLogListMessage = theLogList[i].message;

    // Do something with the log list message here
}
...
// Add additional code 

          

Related Topics

piremoval.PiRemovalTaskLogItem
N/piremoval Module
Personal Information (PI) Removal

General Notices