• RE: Data type

    Oh, DOUBLE is for decimal numbers. Forgot that one. i don't usually use it. Also, beware the trap of thinking somethine will always be a number, you'll get burned when it suddenly isn't (for example, US Zip codes suddenly adding a -#### to the end of…
  • RE: Data type

    The data types are specific to the database server you are using. If you are using SQL Server as your database most of the data types are here: https://docs.microsoft.com/en-us/sql/t-sql/data-types/data-types-transact-sql?view=sql-server-ver16 there…
  • RE: Comment Panel

    A developer can add additional tabs to the document or project property dialogs in ProjectWise Explorer using the PW SDK. Take a look at these samples provided with the PW SDK: I'm not sure what is possible with the Web based clients. As for "interested…
  • RE: New version behavior

    These settings produce the effect you're seeing of adding (1), (2), (3) to the end of file/document name, however i don't see a way to cause this without it prompting me. With these settings I just click OK and it does what you're seeing. Default action…
  • RE: Create a note field as attribute

    1000 is what I typically give them. 500 if there are a lot of other long attributes. can't remember if Bentley worked around it but SQL Server has a limit of 8000 bytes per row, and a row for environments is all the attribute lengths added together…
  • RE: Projectwise revit advance integration

    Hi Luc, Both those folders could be used when eTransmitting a Revit file. Their roles however differ as they should be used for different purposes. The difference between them is that eTransmit location can have an environmental binding assigned to…
  • RE: Civil 3d integration question

    Hello, Currently, such functionality does not exist. You may generate a Project Content report which includes the path to the source files locations and you may count the number of the source documents used being used by counting the unique paths…
  • RE: Weird PW behavior

    Check the user's setting: Folder > Show folder hierarchy Turning that off in my test user made the documents folder disappear
  • RE: DmsAfpEngine

    stop the ProjectWise Orchestration Framework Service. If you just kill the processes that service will respawn them.
  • RE: What is ProjectWise?

    ProjectWise is brand of many products and services. What's been described so far is ProjectWise Design Integration. It sounds like that's not what you are looking for. If you need a simple file sharing service with file locking, Project Share may be the…
  • Global Program Association Guide for Class Names

    Below you will see Class names for some AutoDesk Application types. These names can be used to create Global Program Associations for a Datasource in the ProjectWise Admin module. However, please note: The separate MEP, Architecture and Structure are…
  • RE: Convert system.string to .....

    hmmm, I think you need a bit more info on objects and properties. In Powershell an object is a type of data. In this case user data. Objects have properties associatied with them. These properties are accessed via dot notation. of If you got data…
  • RE: Export to excel

    Give this a try # Create datatable and add desired columns. $dt = New-Object Data.Datatable ('Users') $dt.Columns.Add("GroupName") $dt.Columns.Add("MemberType") $dt.Columns.Add("UserName") $Groups = Get-PWGroupNames foreach ($Group in $Groups…
  • need examples of circular reference .. Civil 3D with Project Wise

    Hello, We are battling to use Civil 3D with Project Wise (Civil 3D versions 2013, 2014 and 2015). We experience gradual longer waits for drawings to open as more data shortcuts are created and sometimes the data shortcuts become broken (reason unknown…
  • RE: Physically print PDF

    I believe this has been a long standing enhancement, to be able to use the "send to printer" when selecting more than one document. Have you looked at using InterPlot Organizer? We use that, in a workflow: ICS Creates the PDFs, --> Right click the PDFs…