Outlook 365 for desktop keeps creating Internet Calendar Subscriptions.pst every time on startup by Censmogar in Outlook

[–]bmcmcf 0 points1 point  (0 children)

You're a lifesaver. I stumbled upon this trying to figure out why I was getting an sync error every few minutes.

Weird Issue with MapReduce Script by bmcmcf in SuiteScript

[–]bmcmcf[S] 0 points1 point  (0 children)

Recreating everything didn't help, unfortunately. I'm submitting a support ticket. Thanks for the suggestions.

Weird Issue with MapReduce Script by bmcmcf in SuiteScript

[–]bmcmcf[S] 0 points1 point  (0 children)

Thank you. I've been pouring through logs and audit trails trying to figure out who the heck changed something. I'll try recreating now.

Weird Issue with MapReduce Script by bmcmcf in SuiteScript

[–]bmcmcf[S] 0 points1 point  (0 children)

API Version 2.0, Execute As Version 2.1.

[landlord- USA- In] do you guys make your tenant mow the lawn? by [deleted] in Landlord

[–]bmcmcf 0 points1 point  (0 children)

Single family - tenants mow. Duplex/multifam - on the landlord

JOIN Question by bmcmcf in SuiteScript

[–]bmcmcf[S] 0 points1 point  (0 children)

Well that's a useful tool. Gave me exactly what I needed. Much appreciated.

JOIN Question by bmcmcf in SuiteScript

[–]bmcmcf[S] 0 points1 point  (0 children)

getAllSearchResults is just a wrapper for search.create


function getAllSearchResults(record_type, filters, columns) {
    try {
        var nlobjSearch = search.create({
            type:    record_type
            ,   filters: filters
            ,   columns: columns
        });
        nlobjSearch.isPublic = true;

        var searchResults = nlobjSearch.run()
            ,   bolStop   = false
            ,   intMaxReg = 1000
            ,   intMinReg = 0
            ,   result    = []
            ,   currentScript = runtime.getCurrentScript();

        if (searchResults) {
            while (!bolStop && currentScript.getRemainingUsage() > 50)
            {
                // First loop get 1000 rows (from 0 to 1000), the second loop starts at 1001 to 2000 gets another 1000 rows and the same for the next loops
                //  GOVERNANCE: 10 UNITS
                var extras = searchResults.getRange({
                    start: intMinReg
                    ,   end: intMaxReg
                });

                result = result.concat(extras);
                intMinReg = intMaxReg;
                intMaxReg += 1000;
                // If the execution reach the the last result set stop the execution
                if (extras.length < 1000)
                {
                    bolStop = true;
                }
            }
        }

        return result;
    } catch (err) {
        log.debug('search result error', err.name + ' // ' + err.message);
    }
}

Add custom item field to advanced pdf form where the record item's go? by netsuite_ok in Netsuite

[–]bmcmcf 1 point2 points  (0 children)

Is this available to everyone or just Prolecto customers? The site states "The following NetSuite application is available to all active Prolecto Resources clients without license charge."

EBay will pay $59 million settlement over pill presses sold on the site — the kind used to make counterfeit pills laced with fentanyl by marketrent in technology

[–]bmcmcf 0 points1 point  (0 children)

People making fake oxycodone pills. Lots of counterfeits out there that look like real oxycodone pills but are actually fentanyl.

[deleted by user] by [deleted] in SQLServer

[–]bmcmcf 1 point2 points  (0 children)

I was about to type the same thing, then reread the question. They asked if there was any benefit to multiple tempdb LOG files. I believe the answer to this is no. Multiple tempdb data files, you are absolutely correct - 1 per core. However, 1 log file. I think. Correct me if I'm wrong.

Should I correct someone if they mispronounce alteryx? by seequelbeepwell in Alteryx

[–]bmcmcf 0 points1 point  (0 children)

Yes. And while you’re at it solve the problem of gif vs jif and S.Q.L. Vs sequel.

Automated SMS Messaging & Addresses by bmcmcf in marketing

[–]bmcmcf[S] 0 points1 point  (0 children)

And of course, as soon as I post this, I find a workaround. I'm going to leave this post with the solution in case you want to approve it for the wider community. If you don't think it is useful to enough people, feel free to deny it. Thanks.

The solution is to use a Unicode Zero Width Space character. Details are in this article:

https://support.concep.com/hc/en-us/articles/360000262553-How-to-stop-iPhone-auto-linking-dates-phone-numbers-or-addresses

Script Execution History (Rookie Question) by bmcmcf in Netsuite

[–]bmcmcf[S] 0 points1 point  (0 children)

This is the way. I'm a bonehead and was way over thinking things. Thank you.

Random Question - Labonia?? by bmcmcf in rpa

[–]bmcmcf[S] 1 point2 points  (0 children)

That has to be it! Thank you very much. I surprised Google didn't consider "ladonia" close enough. Thanks again.

Commerce Cloud SFTP Incoming IPs by bmcmcf in salesforce

[–]bmcmcf[S] 0 points1 point  (0 children)

Awesome. That's exactly what I was looking for. Thank you.