[ORD/CONNECT] Workset template?

The workspace/workset rabbit hole has no end.

I'm starting with one client. Trying not to edit those client configs. This client comes with a workset template - folder, CFG & DGNWS.
I wanted to see if that template is actually what is used to create new worksets under that client.

Apparently, it's not.

I was able to create a new workset. I selected "Create Workset", gave it a name and selected the template I would like to use. It created a folder, CFG & DGNWS in the proper location. But the folder doesn't include the files from the template folder and the CFG is not the same as the template CFG (far more generic, not even close). It would appear that the template being used is not the template I selected? Or is the CFG file unrelated to the template workset?

I am getting lost in the CFG variables, so I'm sure I have something crossed up. Can anyone make a suggestion to straighten me out?
Thank you.

Parents
  • OK, so the issue is with one specific client, but I'm still running into other issues.

    The rest of the templates that DO appear to give me CFGs from the proper template aren't creating directories. Now, I don't actually need those directories there but...

    As much as I don't want to edit the client configs more than necessary, I did have to add a block to account for they way we store our data. That gets edited after workset creation to the proper project directory, and it includes "placeholders" for files that are about to exist.

    #============================================================================
    # Template for a new WorkSet
    #============================================================================
    
    PROJECT_YEAR = 2022
    PROJECT_NUMBER = WS_Test
    PROJECT_DIRECTORY = $(SHR_PROJECTSDIR)$(PROJECT_YEAR)/$(PROJECT_NUMBER)/
    _USTN_WORKSETROOT = $(PROJECT_DIRECTORY)CADD/Design/
    PROJECT_CADD = $(_USTN_WORKSETROOT)
    
    MS_DEF = $(PROJECT_CADD)Base/
    MS_DEF > $(PROJECT_CADD)Sheet Sets/
    MS_RFDIR = $(PROJECT_CADD)Base/
    MS_RFDIR > $(PROJECT_CADD)Sheet Sets/
    
    %if defined (CIVIL_WORKSET_TEMPLATE_LIBRARY_NAME) && exists ($(PROJECT_CADD)ORD/$(CIVIL_WORKSET_TEMPLATE_LIBRARY_NAME))
      CIVIL_ROADWAY_TEMPLATE_LIBRARY        = $(PROJECT_CADD)ORD/$(CIVIL_WORKSET_TEMPLATE_LIBRARY_NAME)
    %endif
    #----------------------------------------------------------------------------
    
    %if defined (CIVIL_WORKSET_DESIGNSEED) && exists ($(PROJECT_CADD)ORD/$(CIVIL_WORKSET_DESIGNSEED))
      MS_DESIGNSEED                         = $(PROJECT_CADD)ORD/$(CIVIL_WORKSET_DESIGNSEED)
    %endif

    My thought was that, if the workset creation makes a copy of the workset template directory, that copy could be moved into the project to the proper location, renamed "ORD" and be ready for design with the proper files.

    MaryB

    Power GeoPak 08.11.09.918
    Power InRoads 08.11.09.918
    OpenRoads Designer 2021 R2

        

  • I found it.

    #====================================================================================
    #set up workset variables
    _USTN_WORKSETDGNWSTEMPLATE = $(_USTN_WORKSETSROOT)TDOT_RDWY_TEMPLATE.dgnws
    _USTN_TEMPLATEWORKSETNAME = TDOT_RDWY_TEMPLATE
    _USTN_WORKSETTEMPLATE 		= $(USTN_WORKSETSROOT)$(USTN_TEMPLATEWORKSETNAME)
    #====================================================================================
    

    Workset templates were provided, but not defined. Once I found these variables, I was able to get "proper" worksets.

    MaryB

    Power GeoPak 08.11.09.918
    Power InRoads 08.11.09.918
    OpenRoads Designer 2021 R2

        

  • There are also these variables:

    # _USTN_WORKSETSTANDARDSUBDIRS Lists the subdirectories to be created when a new WorkSet is created.
    # Each directory listed is created as a subdirectory of $(_USTN_WORKSETROOT)/<workset name>/Standards.
    #
    # _USTN_WORKSPACESTANDARDSUBDIRS Lists the subdirectories to be created when a new WorkSpace is created.
    # Each directory listed is created as a subdirectory of $(_USTN_WORKSPACEROOT)/<workspace name>/Standards.
    

    But I'm not sure how those get used when you have a set of folders that get created with a template.

    On your MS_RFDIR you use an = for the first path, however most ORD workspaces I'm seeing set that variable to a Sheet Border folder that they ship. If you're sure you'll be copying that into each project (we do) then that'll work, but if you leave them in place then you'll need to add it back in.

     

  • Yes, we will be copying border references into the projects. There is too much project-specific information to put on borders that it's easier to have one, maybe two references to cover all that than to try to manage tags and fields. Over time, I may be able to use DGNWS properties or whatnot, but one step at a time...

    MaryB

    Power GeoPak 08.11.09.918
    Power InRoads 08.11.09.918
    OpenRoads Designer 2021 R2

        

  • I thought that was it, but that actually seems to have removed the template from the list. And now it's not selectable in the Create Workset dialog as a template either. I'm so confused...

    MaryB

    Power GeoPak 08.11.09.918
    Power InRoads 08.11.09.918
    OpenRoads Designer 2021 R2

        

  • I think you only may be missing the underscore in front of USTN for both on Line 5

    Answer Verified By: MaryB 

Reply Children