Community
Vault Customization
Share your knowledge, ask questions, and explore popular Vault API, Data Standard, and VBA topics related to programming, creating add-ins, or working with the Vault API.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

How to find an item, a document is linked to as primary file

1 REPLY 1
Reply
Message 1 of 2
ewcv
668 Views, 1 Reply

How to find an item, a document is linked to as primary file

How can I find the item, when I only know the file ID of the file in the project folder (for example by

CheckinFileEvents_GetRestrictions, where the masterid of a file is given)

I suspect an item has only 1 primary linked file (is this true?) and did it by the following code (Vault 2012):

 

long nItemId = 0;

long nFileMasterId = 2241;   // for example

Autodesk.Connectivity.WebServices.File[] allFiles = m_serviceManager.DocumentService.GetFilesByMasterId(nFileMasterId);

if (allFiles != null && allFiles.Length > 0)

{

  IEnumerable<long> fileIds = from file in allFiles select file.Id;

  long[] fileIdArray = fileIds.ToArray();

  Item[] itemsAll = m_serviceManager.ItemService.GetAllLatestItems();

  if (itemsAll != null && itemsAll.Length > 0)

  {

     IEnumerable<long> ids = from item in itemsAll select item.Id;

     long[] itemIdArray = ids.ToArray();

     ItemFileAssoc[] associations = m_serviceManager.ItemService.GetItemFileAssociationsByItemIds(itemIdArray, ItemFileLnkTypOpt.Primary);

     if (associations != null && associations.Length > 0)

     {

        bool bFound = false;

        foreach (ItemFileAssoc assoc in associations)

        {

           if (bFound == false)

           {

              foreach (long id in fileIdArray)

              {

                 if (id == assoc.CldFileId)

                 {

                    nItemId = assoc.ParItemId;

                    bFound = true;

                    break;

                  }

               }

            }

          }

        }

     }

  }

 

Is this the only one possibility or is there a better way?

 

By the way, in my test, the linked primary file has not the newest version as you can see in the attachment.

is this a fact?

Have I to resolve the link and reassign to the newest version manually?

How to do this by Api?

Erika

 

1 REPLY 1
Message 2 of 2
Redmond.D
in reply to: ewcv

Yes, there is an easier way.  Starting with the file master ID, you should be able to get what you want in 2 API calls.

 

1. Call GetLatestFileByMasterId to get a File object.

2. Call GetItemsByFileIdAndLinkTypeOptions passing in the ID of the File.  Even if the item was created from an older file version, this function will still find the related items.

 

To answer your other question:  Yes, it's true that an item will have no more than one primary link to a file.  But you don't need to use that fact in this case.

 

 

 

 



Doug Redmond
Software Engineer
Autodesk, Inc.

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report