Saved search for saved searches with tags and email body in the results tab

I am trying to create a saved search for saved searches to see which saved search sends this email. Now that I have 100 automatic emails from saved requests in netsuite, I would like to organize them.

For example, I would like to have all active saved search results with the results:

  • Search Name
  • Search id
  • Email subject
  • Email
  • Receipt

At the moment I can find 1 (Name), 2 (Internal identifier) ​​and 5 (SearchSchedule: Recipient).

And just to mention that the saved searches I'm looking for are scheduled with a daily or weekly event that will trigger the sending of an email.

Is there any way to get 3 and 4?

+4
source share
2 answers

You can search for type Analytics Audit Trail with the following criteria:

  • Record Type - Search AND
  • (A detailed name is an item or a Detailed name is a Body) And
  • Saved search: Planned correctly

and results:

  • Post title
  • Component name
  • Detailed name
  • New value

This gives you a Subject and Body history (Detailed Name values) for each search (record title value). Hope this helps.

+1
source

Try using Netsuite Email Plugin

function process(email) {
        // log all information in email
        var fromAddress = email.getFrom();
        var recipientemail = email.getTo();
          log('replyTo', email.getReplyTo());
            log('sent', email.getSentDate());
            log('subject', email.getSubject());
            log('text body', email.getTextBody());
            log('html body', email.getHtmlBody());
}

Forward or save cc email to netsuite mailbox id

+1
source

Source: https://habr.com/ru/post/1694994/


All Articles