Discusiones
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
SuiteScript 1.0 > Evento de Usuario > Obtener Registro de Entidad de un Registro de Mensaje Entrante
Se aplica a
Producto: NetSuite 2024.2
Escenario
El cliente quiere saber cómo obtener el registro de entidad específico de un registro de mensaje entrante.
Solución
1. Cree un script de Evento de Usuario para implementarlo en el registro del Mensaje. Consulte el código de muestra a continuación:
var message = nlapiGetNewRecord();
// Getting the ID of the entity associated with the message
var entity = message.getFieldValue('entity');
nlapiLogExecution('DEBUG', 'entity',entity);
// Getting the ID of the message
var incomingId = message.getId();
nlapiLogExecution('DEBUG', 'Incoming ID',incomingId);
// Getting the state of the message if it is incoming
var state = nlapiLookupField('message',incomingId,'isincoming');
¡Hola, Bienvenido/a!
Para ver los detalles completos, inicia sesión.
¿No tienes una cuenta? ¡Haz clic aquí para comenzar!