Input list of Google usernames and output suspended status - google-admin-sdk

To ensure reliable offboarding i would like to generate a report using a list of usernames that should have been offboarded in past 7 days and pull the account status field for them. Is this possible/easy?

Related

Pentaho_send mail to different groups based on columns

I have a requirement to send mail to different users with list of based on two columns in DB table (System Owner and System Owner Email)
Table will contain columns like ProcessID,SystemOwner,Email
Once in every month, Pentaho need to read the Table and group all ProcessID's that belongs to specific system owner and send email .
There are more than 300+ system owners and creating Filter rows loop for every system Owner is challenging for 300+ system Owners
Any suggestion to perform the above with looping with creating filter rows and sending mail
I have prepared a solution for you. You can download all ktr & job from Here
The main job name is 'mainJOb.ktr'. You should modify your smtp credentials.

How to create a workflow in 2013 to send multiple email in a month

I want to create a Designer Workflow in 2013 which will trigger the email automatically for 5 times in a month. List is same but the calculation and logic is different for every email. First time, i can initiate the process to send the email (ex-creating a button to initiate) then email will be sent after 2 days then after 4 days resp
For this, i used 2 things-
HTTP Web Service call- but it is giving me unexpected error. Even I am not able to fetch the list records.
created a JavaScript with set Timeout function. But the problem is How and where to deploy and schedule this script so it will run till the last email and trigger it automatically after some days based on the logic.
can anyone help me please?
or if there are any other solution, please share.
You cannot put JavaScript into a workflow. SharePoint Designer 2013 Workflows have two built-in actions that will allow you to make it wait for a specified time.
Pause for Duration - allows you to specify a length of time to wait before executing the next step.
Pause until Date - allows you to specify a specify date/time in the future that the workflow should pause until that that date/time is reached.

Opencart Marketing Campaign is not tracking number of orders

I have created a marketing campaign in the Opencart (from Marketing/Marketing/add Champain) and I have used the URL correctly to order a product. but it seems only track the number of clicks, and it's not tracking number of ordered products, using the tracking ID in the URL. How to enable ordered product tracking using this marketing campaign?
there is same questions without any answer:
here and here
when you have an order in Sales/Orders, you should change the status to "Completed" at end. if you set the status to something else, it will not count into the campaign!!
seems it's a bug!

Testing Firebase Funnels

I wanted to know a simple question regarding setting up my first funnel in Firebase. If we wanted to know which unique users (on a specific day) first opened the app and removed it, would the below simple funnel be sufficient ? Note: On the filter date, I selected "Yesterday".
Question:
Would this selection enable me then to view only those users that did "First Open" (my base) AND "App removal" on the same day (on D0) ? or is this an open funnel of a wider base: i.e. users that somewhere in the past did first_open and did a app_remove yesterday ?
I read that Firebase is only considering open funnels by default, and if we want to make funnels more "closed", we would have to log separate custom properties and filter to form closed funnels (Source: How do you create a closed funnel?). So, there is a bit confusion of how open this funnel really is.
Thanks!
As you mentioned, Firebase Analytics funnels are open; meaning that completion of the first step is not strictly a prerequisite of the second step. In this case, your sequence of events is a strict sequence (i.e. you can't log an app_remove without first having logged a first_open), but still, the query for each step is independent for "Yesterday". In other words, the funnel is effectively as you suspect : step 1 shows users who have logged first_open yesterday and step 2 shows users who have logged app_remove yesterday (regardless of when they first opened the app).
Your options are :
Use the "Last 7 days" date range instead of Yesterday and filter the funnel by the built-in "New users" user property.
Create an audience of users who log app_remove whose First Open Time user property = [some future day] and then after that day passes, use this audience as a filter on your funnel.
Perform this analysis in BigQuery instead.

Set Sharepoint task due date based on workflow status

I'm new to SharePoint but most of it seems pretty straight forward but I've hit a problem and haven't been able to find a way around it so far.
I'm trying to set/enforce Service Level Agreements (SLA's) for different departments based on the department the task is assigned to. I was going to do this based on the workflow status that generates the task but am open to any other suggestions.
My workflow for requesting funds for an approved project goes through several stages (Project management validation, Finance Admin validation; Finance manager validation, Fixed assets authorization) and each one has a slightly different SLA. For this reason, I cant just add an arbitrary value to the start date for the calculated column associated to the task.
Any suggestions?
The option I'd go with here is to use If/Then blocks in my workflow code based on the current stage. Something like this:
If Stage = Project Management Validation Then
Set DueDate to Today+5
Else If Stage = Finance Admin Validation Then
Set DueDate to Today+3
etc.
Hope this helps!