There is a Store list forms which contains Open Date, Store Number.
After the Open Date is updated, I want to open popups like below.
And If I click yes, I want to update the target date which has the same store number as in the Store list.
But I don't know how to connect the store number data from Store list to here.
I use ms access web app.
Related
I would like to get the email address of the current viewer of a google data studio dashboard and use it as a Dimension in every chart so that the user will only be able to view data that is relevant to him/her. Is that possible in Data studio?
It's not straightforward but it's possible using views (see link) in BigQuery and then using Viewer's Credentials in Data Studio when creating the data source (Owners Credentials are selected by default)
Row-level permissions
I'm using SharePoint Services 3.0 and I would like to download from list a simple record, to be specific, a date, beacuse I want to create automatic mailing notification for every record with date. Is there any way to convert this list records to i.e JSON?
I'm building a report generator in ms-access using exported transactions from Xero accounting.
It includes emailing reports to users. I have a default Body Text for the email, but would like it to be editable by the user (rather than code change).
I can hard-code this using vba but I would like the user to be able to edit and save it ,so it's available the next time ms-access is opened.
How can Access save this information from one session to the next?
Create a table with a memo field. Use that as the source for the "body text".
I have deployed birtviewer on tomcat 7. I am using tomcat form based authentication to control users access to the reports. Currently I have come up with a requirement to store to mysql database the user visits counts and the time he spends on each birt report
I have done seme research on how to extract total session time from session variable but the problems I am facing are below
1) A session starts as soon as a user logs in. How do I collect the session info for the subsequent reports? For example I have some bunch of reports that are connected to a main report. If a user logs in, he is taken to the main page. After that, the user is not required to log in to the next reports that user visits. If the user visits other reports, how do I collect the information about the time that user spends on each report?
2) I would also like to collect the visit counts that a user makes to each report? How can I collect this info?
3) How can I send this info from birt reports to the database?
Please let me know if you have any questions or need more explanation. I have googled and could gather information about how to extract info from session variable but I could get any info on how to do it for each birt report separately (even though all the reports user the same session info)
Regards
Arif
you could write a ServletFiler in Java and add the packed jar to the WEB-INF\lib folder of your BIRT Viewer and configure the Filter mapping in the WEB-INF\web.xml of your viewer, so it is triggered every time you call an URL of the BIRT Viewer.
Insider your filter you can read the session time and save the timestamp and a click counter to your database. You can calculate the visited time by substracting it from the next saved timestamp identified by the session ID.
Say I want to know what all operation a box user "x" has performed in last week. Is there any way to acheive this via box api??
Or for that matter given a file id can we get a list of all the activities performed.??
If you are the administrator of a Box enterprise and the user is within your enterprise, you can do one of two things:
Fetch all events in the enterprise within your timespan of interest and manually filter them to the particular user using the event.created_by.login. You can filter to a particular file using the event.source.id property.
Fetch the particular user's events using the On Behalf Of API.
Otherwise, you can only fetch events for the user represented by the Bearer token.