one quick thing to check is the Batch Limit in your report suite setup in mobilemarketing.adobe.com (or in your json file). That is how many requests the app will batch up before sending them. If that number is too high then maybe you just haven't gotten to that limit in the version of the app you h...
I don't understand that you have to move data from one worksheet to another after it comes back via email,.Is your workbook too big to send to adobe. I did have some issues on one workbook I had. Adobe does have a 5MB limit on the size you can schedule.but a 5MB or bigger workbook is had to manage a...
One thing you can try if your excel gets locked up is to schedule the sheet to run immediately which sends it up to Adobe to run and then it emails back to you.Some report builder requests do take a long time to run depending on how much data you are requesting and how your request(s) are formatted.
If you have 8 offers and they are out of a pool of more than 8 then use a list variable to hold them.s.list1=offer1,offer2,offer3,offer4,"key offer"; etcs.events=eventxx; // offer impression eventthen when you report all revenue will go equally to each offer in the list variable but and you would al...
also if you create the segment in one tab and datawarehouse in another tab your segments will be out of sync. you need to either use the tab where you created the segment and then go into data warehouse or login (again in a new tab, usually just opening the new tab will update everything but sometim...
There is a way but not for data already collected.first you need to create 2 new variables.1) using the s.getVisitNum plugin for day get the 'daily session number' that can go into a prop or evar (you record this on every server call you make)s.eVarxx=s.getVisitNum('d');2) using a counter evar you i...
Hi folks,does anyone have anything that will create a 'large' number of login accounts (say training1 through training40) with the same groups, passwords, expiration etc?I have in the past done these by hand for individuals attending a training class but usually need to delete the accounts a few mon...
I'd use s.apl call rather than the += you suggested..var xx = cookie value c_w(_) s.events=s.apl(s.events,xx,',',2);that way the , delimiter gets added if needed between existing events and the one from the cookie.