AU Class
AU Class
class - AU

Customizing Vault Reports

共享此课程
在视频、演示文稿幻灯片和讲义中搜索关键字:

说明

This course will examine how to create custom Vault reports from user templates. Sometimes we need to modify existing Vault reports to user/company needs. This modification may range from something as simple as jazzing the report up with the company header to the more complex task of specializing with multifiltered tables and a detailed header with Vault metadata shown. All of this is possible with Vault reporting and Visual Studio 2015 software. You don't have to be a programmer to make these changes and to wow your company with professional report features in Vault.

主要学习内容

  • Learn how to identify and modify existing report templates based on user needs
  • Learn how to write coded expressions for filtering purposes
  • Learn how to use graphs and charts to visually represent Vault metadata
  • Learn how to group and filter information in a clean and creative way

讲师

  • Tiffany Hayden 的头像
    Tiffany Hayden
    My name is Tiffany Hayden, and I am a passionate application developer specializing in CAD and process automation. Currently based in Arkansas, I work remotely at KETIV Technologies, Inc., an esteemed automation solutions provider located in Brea, California. I hold a Bachelor of Science in Mechanical Engineering with a minor in Mathematics from Arkansas Tech University in Russellville, Arkansas. With over 14 years of experience in the field of material handling, I have dedicated a significant portion of my career to both development and leadership roles, primarily focusing on automating engineering processes. My deep-rooted interest in creating and enhancing automation processes has always been a driving force in my professional journey. Drawing upon my extensive mechanical engineering background, I possess valuable insights into the intricate mechanics of individual components and their seamless integration within larger systems. This perspective has proven invaluable in my transition to the world of software development and has further fueled my passion for optimizing automation processes.
Video Player is loading.
Current Time 0:00
Duration 34:55
Loaded: 0.00%
Stream Type LIVE
Remaining Time 34:55
 
1x
  • Chapters
  • descriptions off, selected
  • en (Main), selected
Transcript

TIFFANY HAYDEN: Hello, my name is Tiffany Hayden. I'm an application developer with material handling systems out of Louisville, Kentucky. Today, we will be discussing customizing vault reports with Visual Studio 2015. This class is important to me, because there doesn't seem to be much documented on editing vault reports with Visual Studio, and I created this class to help users navigate that process.

Some of our learning objectives that were going to go over today are how to identify and modify existing report templates, how to use graphs and charts in Visual Studio 2015. How to group and filter information on those charts, and how to write coded expressions for filtering purposes. So the first objective we just went over was identifying and modifying existing report templates.

When we get started, I'm going to give a brief introduction to Microsoft Visual Studio 2015. I'm going to create a report project, clean that project up a little, and then add reports to that project. Once we do that, we're going to create a class report that will get us started on the reporting process. The next section we're going to cover after we do that is a brief introduction to Autodesk report utility.

We're going to open a class report, edit a few properties, and then save over the report that we created. So let's go to Visual Studio, and we'll get started. So this is Visual Studio 2015, and to create a new project, I'm going to File, New, Project, and then if you're not familiar or you haven't dealt with reporting in the past, this may not be set to reporting.

So you'll want to go to Templates, Visual Basic, and then click on the Reporting and. What you're looking for is a reports application. You'll just select that, and then what we'll do is we'll name the project. Name the project au2021_customizingvaultreports.

And then we're going to put it in just a shortened folder structure. I'm going to name it code/au2021. And we're going to leave this solution name the name of the project. And then click OK.

So when you're creating a project in Visual Studio, especially a reporting one, it's going to ask to import that data set. For Autodesk reports, we don't actually need a data set. We are going to use Autodesk vault data set for that report itself. The data set for the reporting is the list of properties that is associated with that report.

So for Visual Studio, we're not going to actually import one. So I'm going to hit Cancel and then hit Cancel, and then yes to confirm the wizard. For this class, I don't need a form one and a report RDLC file, so I'm going to select both of those and delete them. And then the next process is I need to import the already existing report templates from-- import them from the directory that Autodesk stores them.

So I need to right click on the VB line and then hit Add Existing Item, and then it's going to default to the project location, and I need I need to go to where the templates are stored. So that is the C drive program files Autodesk Vault Client 2021 Explorer, and then you want to go to Report Templates. Don't be alarmed if this folder is completely empty for you.

For Visual Studio, it's looking for a VB code file. And what we're doing here is we're actually going to import our DLC file, and the filter down here is designated as a VB code file. So I just need to change this filter to either RDLC file or an all files filter. I'm just going to change it to RDLC since that's what we're looking for. And then just select all those, and then hit Add.

And then they will pop in to the Visual Studio. And so we have the list of every template that exists so far for 2021 vault. I'm going to choose the item-- no, the file table. The file table, and then I need to make a copy of this file, this RDLC file, so I'm going to right click and hit Copy, and then I'm going to click in the space right here and go down to the Control or go down into keyboard and do Control-V, and that will make a copy of that file.

The next thing we'll do is rename the RDLC file we just copied, and the name that we're going to give it is au2021_customizingvaultreport. Yeah. That's right. Customizing vault.

And it's going to pop up at the top of the RDLC file or at the top of the list. And if you go over to the left near the data sets, you'll see a list of properties associated with this report. And this is just the list of properties associated with this specific report.

And the next thing, I need to open up the Autodesk vault utility. The report template utility. This is saved-- this utility is saved in this location. And if you just type a report, it will be one of the top ones that pops up, and you just double click on that.

It's going to prompt you to log into Vault, so you'll just need to add your credentials and your server name and your vault name and walk in, and then you will see this utility pop up. So the next thing I'm going to do is I need to open up the report that we just created in Visual Studio. And when you hit Open, it's going to default to the report template location.

I need to change it to where-- I need to change it to the project location. This is where our-- our project is in this location, and that is the file that we're going to edit. So you can either double click on this or you can select it and then hit Open. And when it pops in, you will see all of the properties associated with your vault.

This list will not be the list that you see when you open your vault or your template utility. The I properties that are checked are the I properties that are in the data set for the report. So the properties that are unchecked are not in the data set. I need to add three new properties to this report to be included in the data set.

And currently, their file extension isn't in here. Path and vault status, so those are the three that we're going to add. So I'm going to check on File Extension and just scroll down, check on path, and scroll down and check on vault status. And then I need to Save As and select the report from the project location and hit Save.

And yes, I do want to replace it. So at this point, we are done with the utilities. So I'm going to close it down or just minimize it. And then come back to Visual Studio, and I get this notification, because Visual Studio senses that a report has been edited outside of Visual Studio.

So it's going to ask, do you want to reload it, and then you just hit Yes, and once you do that, I usually click away from the report and then click on the report again, and the data set properties should be updated. So now it includes file extension, path, and vault status. The next objective I'm going to cover is using charts and graphs in Visual Studio 2015.

I'm going to cover how to place charts, resize charts, duplicate charts, and add a few names to the charts that we place. So for Visual Studio, I need to expand the report size, so I'm just going to grab the bottom of this report and just drag it down. You can always minimize it later if you need it. For this class, I need to delete this table out, because I don't actually need a table, so I'm just going to right click and delete.

To add charts, just right click in the white space, hit Insert, then Chart, and then the first chart we're going to add is the 3D stacked cylinder chart. And then I'm going to add another chart and do a pie chart. And now, I need to resize the charts, because they're much too small right now. So I'm going to just resize them a little bit, and you can do it however you see fit.

However you want your report to look. So this is up to you. OK, so I need to duplicate these two charts, because I need two charts. So I'm going to select both of these charts, and then on a keyboard, hit Control-C, And then click in the white space and do Control-B and it will duplicate the charts for you.

You can also do a right click, go to Chart, Add, and then Charts, just like we did before, or you can duplicate it using the keyboard. Either way. And like I just did there, you can multi-select, keep them multi-selected and weave them all together so they align with each other. With Visual Studio, it actually creates-- it tells you how far away each feature is away from each other.

So right now, it's 5 points away, 2 points away. You're looking for 0 points if you want them all aligned with each other. I do, so I'm going to make them 0 points away from each other.

Now, I'm going to add a few names to these charts. So this chart is going to be-- this one is going to be a drawing. Dates. Then the pie charts are going to show vault status, so we're going to do model vaults, Students, and I'm drawing what's set.

The next objective I'm going to cover is grouping and filtering of chart information. So the next task is to add charts-- or add chart groups, clean up those charts, organize chart information to improve readability. After we do that, we're going to add a few filters, both model and drawing extension filters, and then add a null state filter.

This is simply how to ignore empty data. So we need to add filters. So you just click twice, so I'm going to click away, and then just click twice, and it will add this chart data. Since we're filtering or grouping by lifecycle states, I need to add lifecycle state, which is just states.

And then to the category groups, I'm going to add state and the same for this one. And then for the two pie charts, I'm going to be grouping by vault status. So for both of those, I need to add vault status. OK, and then on the two life cycle states, since the lifecycle states are in the chart as an axes, I do not need it in the legend, so I'm going to delete the legend out.

And then I need to rename some axes. This is going to be model [INAUDIBLE]. Lifecycle. And I was doing it kind of fast, but to edit these, you just slow click them twice and then you can edit the text box.

And then I am going to-- sometimes you want to show information in the charts more accurate information not looking at a specific column and going over to the axes. So I'm going to add some chart labels. So show labels. You just right click on one of the bars and do show data labels, and I'm going to do that for both of the bar charts.

I'm also going to do it for the pie chart. Just right click on the pie chart and go to Show Data Labels. And for a little bit of contrast, I want to change the data labels to white. So just click right click on the data labels and do Series Label Properties. And go to Font, and change it white. And I'm going to do that for all four charts.

OK, for the two pie charts, I need to change the label data to percent. I want to show I want it to show me how much of a is checked out versus checked in. For this purpose, you want to change the label data to percent, and then when you do this, it's going to prompt you, whether you want to change the use value as label to false, and you do, so yes and then hit OK, and you'll do that for both of the pie charts. And then I am going to move the legend for the two pie charts down to the lower center.

That just makes it a little bit-- that'll make the pie chart a little bigger, because this legend won't be this big. And then I want to add model and drawing filters and middle state filters that we discussed earlier. So in the white space around the chart, just right click and go to Chart Properties. And go to Filters, and I need to add two filters to this one.

This one is going to represent model information, so I need to go to File Extension equals IN, and then state doesn't equal nothing. And then for the drawing, the only thing that's different about what we were doing is going to be that file extension equals DWT and then state doesn't equal-- no. And we're just going to duplicate the process for these two charts.

File extension equals IN, and then state. State doesn't equal-- OK. And for the last one-- All right, and all of our filters are added. So the next objective I'm going to cover is how to add coded expressions.

Some ways for you to clean up information or to organize information on charts is to add label expressions. I'm going to add label expressions, group on expressions, and then I'm going to show you a contrast of why I'm doing this. Why do this versus just leaving it by itself, and I'm going to show you the before and after. And so I'm going to right click in the white or slow click twice for the data charts to show up, and then right click on the Category Groups, and then Category Group Properties.

And then I'm going to go to the label and then the expression for the label. The expression for the label, I'm just going to paste in here, and then I'm going to explain it. So for this, it's going to say if the left 13 characters of the vault status, that value, is not checked out all in one word, then I want the legend to-- the label legend to say not checked out.

If it doesn't say not checked out all in one word, I want you to say checked out. And because I'm going to use this several times, I'm going to copy this and also use it on the group on expression. And then do it again for the drawing ball properties. And group on for the drawing.

And then I'm going to-- let me open up and show you a before and after of this picture. So this picture shows adding that expression as a filter, and then this shows if you don't add that expression. So if you need certain information in this vault status, then this may not work for you. But for me, all I needed to show was whether a file was checked out versus a file checked in, and that was the only real way for me to capture that information is to use the left feature or the left parameter function.

The left function that will grab the left 13 characters. Some of the bonus content that I have is it hits on some of the hard lessons that I learned while I was learning the report process. The resizing of the report was a hard lesson for me. It threw me a curveball trying to remember or trying to figure out why, when I exported the report to the PDF, why it wasn't exporting correctly, and that is all to do with the size of the report.

So I'm going to show how to add the report ruler, how to resize the features, resize the report, report, and then make some report header adjustments. And then after that, I'm going to show you how to export the report, how to run the report in vault, and then show you a few examples of some live data. So how to add the report ruler.

You go up to the Report tab, and then View, and then Ruler, and then you'll see the ruler show up over here. So you see that this report is almost 11 inches wide, which is far too wide for 8 and 1/2 by 11 vertical page. So I need to decrease the size of my features and how I'm going to do that is I'm going to select both of them, and I need them to be approximately 5 and 1/2 inches wide, so I'm just going to decrease it down to that size, and then I'm going to move these two to move that one.

And then decrease the size of this down to about eight inches. And once you do that, then the report size actually will decrease down to 8 and 1/2. I need it to be on the list the left side of 8 and 1/2 inches. Just shy of 8 and 1/2 inches, and then I need to change the report properties. So go to Report Properties, and I need to change the size of the report. I'm going to do 8 and 1/2.

OK, and then I need to rename the report title. So just right click where your expression will show up. So I need the expression and the vault title or the report title will be my cycle state, and vault status dashboard. So hit OK.

And then I'm going to add the expression for the folder name. The folder name is pretty much the pack name of where you're running. So I'm going to use the Split function to split the folder name value with all the forward slashes into a zero based array, and then I'm going to pick the last number always.

So it doesn't matter if you have five folders or 10 folders, it's going to only pick the parent of that folder that you're going to run the report from. And then I'm going to add a expression for the generated by, and what this is going to do is it's going to split the username with a backslash and pick the first of those. So it's going to split the username.

The username is usually the domain backsplash the username. And I want to grab that username from the-- the actual username not with the domain. So I'm going to just grab the username. And then I need to export the report, but firstly, I need to save this.

And then I'm going to export the report from the project location. So I'm going to get another. Now it's worse, I can show you side by side.

So what I'm going to do is I'm going to copy this vault report that we're creating, and I'm going to put it into the template supports. So you do need admin privileges to do this. So hit Continue, and then it is in the location that you need to run the reports from vault. So I'm going to go into vault, and I have a few shortcuts of reports that I'm going to show you.

So you need to select them folder you want to run and hit Report. Since I ran this report several times, it automatically has mine loaded. But to do that, you just hit Browse, and it should browse to the report templates. So I'm going to select that, hit Open. And I don't want it to run subfolders.

If you do want it to run subfolders, go ahead and select it. I don't need it to for the information I want to show you. You can see that the name has been changed. The folder that I'm running it is called installation, the generated by is me, T. Hayden, and then here are some of the data.

And it looks like I didn't fix something, so just make sure that your lines are lined up when you're doing this. Actually, we have a little bit of time. I'll fix it. Let's export it again.

I'll just copy it again. and paste it into report support. And we'll run the report. So let's find a different one. So click on a folder, find a report, and then hit OK.

So you see this one has many different lifecycle states. 0.1 is not checked out or it is checked out. The rest is checked in, and then this one has many lifecycle states of different quantities. Let's look at one.

So that's another one. Well, this last one just to show you a little bit different. Here we go. So just to recap over our learning objectives, we identified and modify some existing report templates.

We use charts and graphs to visually represent data, vault metadata. We learned how to filter information in those charts. We also learned how to write coded expressions, and we even covered a little bit of bonus content. I really think that, if you want to dive further into the coded expressions, I do go through those a little bit more in detail in the handout, so I would recommend you going through the handout and trying these yourself.

Again, thank you for watching customizing vault reports with me, Tiffany Hayden. I really appreciate it. Thank you.

______
icon-svg-close-thick

Cookie 首选项

您的隐私对我们非常重要,为您提供出色的体验是我们的责任。为了帮助自定义信息和构建应用程序,我们会收集有关您如何使用此站点的数据。

我们是否可以收集并使用您的数据?

详细了解我们使用的第三方服务以及我们的隐私声明

绝对必要 – 我们的网站正常运行并为您提供服务所必需的

通过这些 Cookie,我们可以记录您的偏好或登录信息,响应您的请求或完成购物车中物品或服务的订购。

改善您的体验 – 使我们能够为您展示与您相关的内容

通过这些 Cookie,我们可以提供增强的功能和个性化服务。可能由我们或第三方提供商进行设置,我们会利用其服务为您提供定制的信息和体验。如果您不允许使用这些 Cookie,可能会无法使用某些或全部服务。

定制您的广告 – 允许我们为您提供针对性的广告

这些 Cookie 会根据您的活动和兴趣收集有关您的数据,以便向您显示相关广告并跟踪其效果。通过收集这些数据,我们可以更有针对性地向您显示与您的兴趣相关的广告。如果您不允许使用这些 Cookie,您看到的广告将缺乏针对性。

icon-svg-close-thick

第三方服务

详细了解每个类别中我们所用的第三方服务,以及我们如何使用所收集的与您的网络活动相关的数据。

icon-svg-hide-thick

icon-svg-show-thick

绝对必要 – 我们的网站正常运行并为您提供服务所必需的

Qualtrics
我们通过 Qualtrics 借助调查或联机表单获得您的反馈。您可能会被随机选定参与某项调查,或者您可以主动向我们提供反馈。填写调查之前,我们将收集数据以更好地了解您所执行的操作。这有助于我们解决您可能遇到的问题。. Qualtrics 隐私政策
Akamai mPulse
我们通过 Akamai mPulse 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. Akamai mPulse 隐私政策
Digital River
我们通过 Digital River 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. Digital River 隐私政策
Dynatrace
我们通过 Dynatrace 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. Dynatrace 隐私政策
Khoros
我们通过 Khoros 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. Khoros 隐私政策
Launch Darkly
我们通过 Launch Darkly 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. Launch Darkly 隐私政策
New Relic
我们通过 New Relic 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. New Relic 隐私政策
Salesforce Live Agent
我们通过 Salesforce Live Agent 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. Salesforce Live Agent 隐私政策
Wistia
我们通过 Wistia 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. Wistia 隐私政策
Tealium
我们通过 Tealium 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. Tealium 隐私政策
Upsellit
我们通过 Upsellit 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. Upsellit 隐私政策
CJ Affiliates
我们通过 CJ Affiliates 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. CJ Affiliates 隐私政策
Commission Factory
我们通过 Commission Factory 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. Commission Factory 隐私政策
Google Analytics (Strictly Necessary)
我们通过 Google Analytics (Strictly Necessary) 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. Google Analytics (Strictly Necessary) 隐私政策
Typepad Stats
我们通过 Typepad Stats 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. Typepad Stats 隐私政策
Geo Targetly
我们使用 Geo Targetly 将网站访问者引导至最合适的网页并/或根据他们的位置提供量身定制的内容。 Geo Targetly 使用网站访问者的 IP 地址确定访问者设备的大致位置。 这有助于确保访问者以其(最有可能的)本地语言浏览内容。Geo Targetly 隐私政策
SpeedCurve
我们使用 SpeedCurve 来监控和衡量您的网站体验的性能,具体因素为网页加载时间以及后续元素(如图像、脚本和文本)的响应能力。SpeedCurve 隐私政策
Qualified
Qualified is the Autodesk Live Chat agent platform. This platform provides services to allow our customers to communicate in real-time with Autodesk support. We may collect unique ID for specific browser sessions during a chat. Qualified Privacy Policy

icon-svg-hide-thick

icon-svg-show-thick

改善您的体验 – 使我们能够为您展示与您相关的内容

Google Optimize
我们通过 Google Optimize 测试站点上的新功能并自定义您对这些功能的体验。为此,我们将收集与您在站点中的活动相关的数据。此数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID 等。根据功能测试,您可能会体验不同版本的站点;或者,根据访问者属性,您可能会查看个性化内容。. Google Optimize 隐私政策
ClickTale
我们通过 ClickTale 更好地了解您可能会在站点的哪些方面遇到困难。我们通过会话记录来帮助了解您与站点的交互方式,包括页面上的各种元素。将隐藏可能会识别个人身份的信息,而不会收集此信息。. ClickTale 隐私政策
OneSignal
我们通过 OneSignal 在 OneSignal 提供支持的站点上投放数字广告。根据 OneSignal 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 OneSignal 收集的与您相关的数据相整合。我们利用发送给 OneSignal 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. OneSignal 隐私政策
Optimizely
我们通过 Optimizely 测试站点上的新功能并自定义您对这些功能的体验。为此,我们将收集与您在站点中的活动相关的数据。此数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID 等。根据功能测试,您可能会体验不同版本的站点;或者,根据访问者属性,您可能会查看个性化内容。. Optimizely 隐私政策
Amplitude
我们通过 Amplitude 测试站点上的新功能并自定义您对这些功能的体验。为此,我们将收集与您在站点中的活动相关的数据。此数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID 等。根据功能测试,您可能会体验不同版本的站点;或者,根据访问者属性,您可能会查看个性化内容。. Amplitude 隐私政策
Snowplow
我们通过 Snowplow 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. Snowplow 隐私政策
UserVoice
我们通过 UserVoice 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. UserVoice 隐私政策
Clearbit
Clearbit 允许实时数据扩充,为客户提供个性化且相关的体验。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。Clearbit 隐私政策
YouTube
YouTube 是一个视频共享平台,允许用户在我们的网站上查看和共享嵌入视频。YouTube 提供关于视频性能的观看指标。 YouTube 隐私政策

icon-svg-hide-thick

icon-svg-show-thick

定制您的广告 – 允许我们为您提供针对性的广告

Adobe Analytics
我们通过 Adobe Analytics 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. Adobe Analytics 隐私政策
Google Analytics (Web Analytics)
我们通过 Google Analytics (Web Analytics) 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. Google Analytics (Web Analytics) 隐私政策
AdWords
我们通过 AdWords 在 AdWords 提供支持的站点上投放数字广告。根据 AdWords 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 AdWords 收集的与您相关的数据相整合。我们利用发送给 AdWords 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. AdWords 隐私政策
Marketo
我们通过 Marketo 更及时地向您发送相关电子邮件内容。为此,我们收集与以下各项相关的数据:您的网络活动,您对我们所发送电子邮件的响应。收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、电子邮件打开率、单击的链接等。我们可能会将此数据与从其他信息源收集的数据相整合,以根据高级分析处理方法向您提供改进的销售体验或客户服务体验以及更相关的内容。. Marketo 隐私政策
Doubleclick
我们通过 Doubleclick 在 Doubleclick 提供支持的站点上投放数字广告。根据 Doubleclick 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 Doubleclick 收集的与您相关的数据相整合。我们利用发送给 Doubleclick 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. Doubleclick 隐私政策
HubSpot
我们通过 HubSpot 更及时地向您发送相关电子邮件内容。为此,我们收集与以下各项相关的数据:您的网络活动,您对我们所发送电子邮件的响应。收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、电子邮件打开率、单击的链接等。. HubSpot 隐私政策
Twitter
我们通过 Twitter 在 Twitter 提供支持的站点上投放数字广告。根据 Twitter 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 Twitter 收集的与您相关的数据相整合。我们利用发送给 Twitter 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. Twitter 隐私政策
Facebook
我们通过 Facebook 在 Facebook 提供支持的站点上投放数字广告。根据 Facebook 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 Facebook 收集的与您相关的数据相整合。我们利用发送给 Facebook 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. Facebook 隐私政策
LinkedIn
我们通过 LinkedIn 在 LinkedIn 提供支持的站点上投放数字广告。根据 LinkedIn 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 LinkedIn 收集的与您相关的数据相整合。我们利用发送给 LinkedIn 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. LinkedIn 隐私政策
Yahoo! Japan
我们通过 Yahoo! Japan 在 Yahoo! Japan 提供支持的站点上投放数字广告。根据 Yahoo! Japan 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 Yahoo! Japan 收集的与您相关的数据相整合。我们利用发送给 Yahoo! Japan 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. Yahoo! Japan 隐私政策
Naver
我们通过 Naver 在 Naver 提供支持的站点上投放数字广告。根据 Naver 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 Naver 收集的与您相关的数据相整合。我们利用发送给 Naver 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. Naver 隐私政策
Quantcast
我们通过 Quantcast 在 Quantcast 提供支持的站点上投放数字广告。根据 Quantcast 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 Quantcast 收集的与您相关的数据相整合。我们利用发送给 Quantcast 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. Quantcast 隐私政策
Call Tracking
我们通过 Call Tracking 为推广活动提供专属的电话号码。从而,使您可以更快地联系我们的支持人员并帮助我们更精确地评估我们的表现。我们可能会通过提供的电话号码收集与您在站点中的活动相关的数据。. Call Tracking 隐私政策
Wunderkind
我们通过 Wunderkind 在 Wunderkind 提供支持的站点上投放数字广告。根据 Wunderkind 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 Wunderkind 收集的与您相关的数据相整合。我们利用发送给 Wunderkind 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. Wunderkind 隐私政策
ADC Media
我们通过 ADC Media 在 ADC Media 提供支持的站点上投放数字广告。根据 ADC Media 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 ADC Media 收集的与您相关的数据相整合。我们利用发送给 ADC Media 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. ADC Media 隐私政策
AgrantSEM
我们通过 AgrantSEM 在 AgrantSEM 提供支持的站点上投放数字广告。根据 AgrantSEM 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 AgrantSEM 收集的与您相关的数据相整合。我们利用发送给 AgrantSEM 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. AgrantSEM 隐私政策
Bidtellect
我们通过 Bidtellect 在 Bidtellect 提供支持的站点上投放数字广告。根据 Bidtellect 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 Bidtellect 收集的与您相关的数据相整合。我们利用发送给 Bidtellect 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. Bidtellect 隐私政策
Bing
我们通过 Bing 在 Bing 提供支持的站点上投放数字广告。根据 Bing 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 Bing 收集的与您相关的数据相整合。我们利用发送给 Bing 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. Bing 隐私政策
G2Crowd
我们通过 G2Crowd 在 G2Crowd 提供支持的站点上投放数字广告。根据 G2Crowd 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 G2Crowd 收集的与您相关的数据相整合。我们利用发送给 G2Crowd 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. G2Crowd 隐私政策
NMPI Display
我们通过 NMPI Display 在 NMPI Display 提供支持的站点上投放数字广告。根据 NMPI Display 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 NMPI Display 收集的与您相关的数据相整合。我们利用发送给 NMPI Display 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. NMPI Display 隐私政策
VK
我们通过 VK 在 VK 提供支持的站点上投放数字广告。根据 VK 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 VK 收集的与您相关的数据相整合。我们利用发送给 VK 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. VK 隐私政策
Adobe Target
我们通过 Adobe Target 测试站点上的新功能并自定义您对这些功能的体验。为此,我们将收集与您在站点中的活动相关的数据。此数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID 等。根据功能测试,您可能会体验不同版本的站点;或者,根据访问者属性,您可能会查看个性化内容。. Adobe Target 隐私政策
Google Analytics (Advertising)
我们通过 Google Analytics (Advertising) 在 Google Analytics (Advertising) 提供支持的站点上投放数字广告。根据 Google Analytics (Advertising) 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 Google Analytics (Advertising) 收集的与您相关的数据相整合。我们利用发送给 Google Analytics (Advertising) 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. Google Analytics (Advertising) 隐私政策
Trendkite
我们通过 Trendkite 在 Trendkite 提供支持的站点上投放数字广告。根据 Trendkite 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 Trendkite 收集的与您相关的数据相整合。我们利用发送给 Trendkite 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. Trendkite 隐私政策
Hotjar
我们通过 Hotjar 在 Hotjar 提供支持的站点上投放数字广告。根据 Hotjar 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 Hotjar 收集的与您相关的数据相整合。我们利用发送给 Hotjar 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. Hotjar 隐私政策
6 Sense
我们通过 6 Sense 在 6 Sense 提供支持的站点上投放数字广告。根据 6 Sense 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 6 Sense 收集的与您相关的数据相整合。我们利用发送给 6 Sense 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. 6 Sense 隐私政策
Terminus
我们通过 Terminus 在 Terminus 提供支持的站点上投放数字广告。根据 Terminus 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 Terminus 收集的与您相关的数据相整合。我们利用发送给 Terminus 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. Terminus 隐私政策
StackAdapt
我们通过 StackAdapt 在 StackAdapt 提供支持的站点上投放数字广告。根据 StackAdapt 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 StackAdapt 收集的与您相关的数据相整合。我们利用发送给 StackAdapt 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. StackAdapt 隐私政策
The Trade Desk
我们通过 The Trade Desk 在 The Trade Desk 提供支持的站点上投放数字广告。根据 The Trade Desk 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 The Trade Desk 收集的与您相关的数据相整合。我们利用发送给 The Trade Desk 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. The Trade Desk 隐私政策
RollWorks
We use RollWorks to deploy digital advertising on sites supported by RollWorks. Ads are based on both RollWorks data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that RollWorks has collected from you. We use the data that we provide to RollWorks to better customize your digital advertising experience and present you with more relevant ads. RollWorks Privacy Policy

是否确定要简化联机体验?

我们希望您能够从我们这里获得良好体验。对于上一屏幕中的类别,如果选择“是”,我们将收集并使用您的数据以自定义您的体验并为您构建更好的应用程序。您可以访问我们的“隐私声明”,根据需要更改您的设置。

个性化您的体验,选择由您来做。

我们重视隐私权。我们收集的数据可以帮助我们了解您对我们产品的使用情况、您可能感兴趣的信息以及我们可以在哪些方面做出改善以使您与 Autodesk 的沟通更为顺畅。

我们是否可以收集并使用您的数据,从而为您打造个性化的体验?

通过管理您在此站点的隐私设置来了解个性化体验的好处,或访问我们的隐私声明详细了解您的可用选项。