I created a new application and noticed that it was different from my first one.
I have 2 sites on the Magento 2 platform. I want to separately collect data about them.
I had previously created a store for analytics in which I could create views. There I took the Account Number starting with the UK and added it to the settings.
But now I am trying to create a new tracking application and I get a different type of application in which I cannot create views, what am I doing wrong?
How can I connect it?
When you create a new Property in Google Analytics you can find Universal Analytics type Property by clicking on Show advanced options:
So you can obtain and use its ID (UA-XXXXX-X).
Related
I created a PowerApp by connecting to Dynamics365 and choosing the 'Currencies" table. In the tutorial video I watched, the narrator was able to see his app's table in Dynamics365 and was able to add and edit the records in that table, which would then show up on the PowerApp and vice versa.
When I bring up Dynamics365, I only see my PowerApps, I do not see a "Currencies" table. How can I see the Currencies table in Dynamics365? I have an Office365 Developer tenancy.
I am using a canvas app.
I attached images of my PowerApp, my Dynamics365 page, and the screenshot of the video I was watching that shows the presentor's Dynamics365 page which looks very different from mine and has the table with the data in it. He is using the Sales Leads table which I was not able to find in my list of Dynamics365 tables, that's why I used the Currencies table.
[My power apps edit screen][1] [1]: https://i.stack.imgur.com/QTNYe.png
[My Dynamics365 home page ][1] [1]: https://i.stack.imgur.com/WEtxi.png
[Dynamics365 table from video][1] [1]: https://i.stack.imgur.com/WvtKn.png
In that video tutorial - see the browser address bar, it says https://xxxxx.crm.dynamics.com which is Dynamics 365 CRM, you can go there by clicking the Dynamics 365 - custom tile in your https://home.dynamics.com
You are connecting to that Dynamics 365 instance in your canvas app as one of the Datasource connector. I can find it like below.
One more thing, that video shows classic UI whereas you may land in UCI (Model driven PowerApp UI). Read this tip to avoid surprises & confusions.
can you provide some more details on what type of app you're building (Canvas or Model) and where you don't see the currencies table? Would be great if you could send a screenshot of where you're expecting to see it but don't.
I did a really quick test in my environment, and was able to create a canvas app connected to the currencies entity :
In google analytics I can add additional dimension which is named: Direct Sessions which gives two values : yes and no. The problem is that when im making reports in google studio i dont have this kind of dimension.
Maybe there is possible to add this dimension manually?
T.
If you have created a custom dimension in GA it is available in Google Data Studio (I assume that is what you mean by "Google Studio").
Currently the Google Analytics connector only provides access to data
available in custom reports. It does not provide access to
multi-channel funnels or real-time data. However, custom dimensions
and metrics are available in Data Studio.
You can select it like any other dimension (use the search feature and look for the name you gave to your dimension in the GA property settings).
Source
I have created an Application in Codeigniter which list courses on a web interface, let users register via mobile app, see or download free courses, pay for the paid categories to watch or download courses listed in that category. So far it works like a charm. My manager suddenly landed on this thread Two application instance in CodeIgniter and has now come up with an idea that we should separate users for each categories and platforms. What our management is currently insisting is that copy and paste each installation in different sub-folders, copy databases, flush old data, change path variables and database name and fire up each app individually.
You can imagine for a developer how hard it is to digest this kind of solution. I want to ask, if there is a way to instantiate complete CI application by creating some mother class and than passing some parameters to constructors like categories ids etc and do things dynamically. Is it possible to create instances of entire Codeigniter application?
I am uploading video entries through Kaltura Contribution Widget. I would like to allow users to select length of the free preview that will be shown for users who don't have rights to see entire video. I wanted to implement that by creating different AccessControlProfiles (with different preview lengths) and then assigning profile to uploaded video after user selects preview length.
Is there a way to assign access control profile using API? I looked through the docs but couldn't find the answer.
You may have to proxy the api since your users that make upload contributions ( of course ) won't be able to modify the profile. Probably easiest to have a few access control profiles for given times 5, 10, 15, etc. second previews.
The api for access controls is applied on a per entry basis. You can "add" new profiles with: http://www.kaltura.com/api_v3/testmeDoc/index.php?service=accessControlProfile
you can then assign an entry a base access control id from the baseEntry service:
http://www.kaltura.com/api_v3/testmeDoc/index.php?service=baseEntry&action=update
by populating field:
baseEntry:accessControlId
Hope that helps.
I'm creating a solution which will be released as a managed solution for Dynamics CRM Online.
However, the customer will need to put information in when installing the managed solution to allow interaction with outside services.
For example, when you install the LinkedIn solution, you need to add your log in information to allow the CRM to access your LinkedIn account.
How do I add these parameters to the a solution, and then allow the customer to update them if they change?
Cheers
Edit:
To add to my query and following the answer below.
To make sure the process is correct in my head.
Option 1.
I will create a custom entity for storing key/value, or username/password combination.
I would then create a customisation page for the solution using html web resource, which when submitted, javascript would create a single record to hold those values.
I then need to link every record that needs the values stored in the custom record - I'm not sure how this would be done without editing a workflow after the storage record has been created, to link each normal record to the storage one.
Option 2.
Create an xml web resource that stores the values. Create the html/javascript resources to update this using the configuration page.
I can then use a javascript function to obtain that data when the custom entity is created, perhaps to populate hidden fields for storage and use behind the scenes.
I can't find any tutorials on getting started with using xml in this way - can you point me in the right direction?
I typically create a "Configuration" entity that has Name/Value attributes. This is also useful when you have Dev/Test/Prod environments that require different configs (e.g. URLs, credentials, etc).
Another approach is to using Plug-in configurations or Web Resources to store that type of information. The Plug-in configuration is pretty straightforward if you can have the customer use the Plug-in Registration tool to modify the value.