Unable to commit in BIM360 file

Unable to commit in BIM360 file

RnD_PIS
Participant Participant
209 Views
1 Reply
Message 1 of 2

Unable to commit in BIM360 file

RnD_PIS
Participant
Participant

Hi,

I have one tool to update some parameter values. However, while its going to update the same parameter into BIM360 shared model its throwing an error ..

 

Please, help how to manage this:

RnD_PIS_0-1686811203687.png

 

 

After that Applied this:

    class SurveyElevationCommitPreprocessor : IFailuresPreprocessor
    {
        public FailureProcessingResult PreprocessFailures(FailuresAccessor failuresAccessor)
        {
            IList<FailureMessageAccessor> failList = new List<FailureMessageAccessor>();
            failList = failuresAccessor.GetFailureMessages();
            foreach (FailureMessageAccessor failure in failList)
            {
                FailureDefinitionId failID = failure.GetFailureDefinitionId();
                if (failID == BuiltInFailures.RoomFailures.RoomTagNotInRoom ||
                    failID == BuiltInFailures.RoomFailures.RoomTagNotInRoomToArea ||
                    failID == BuiltInFailures.RoomFailures.RoomTagNotInRoomToRoom ||
                    failID == BuiltInFailures.RoomFailures.RoomTagNotInRoomToSpace)
                {
                    failuresAccessor.DeleteWarning(failure);
                }
            }

            return FailureProcessingResult.ProceedWithCommit;
        }
    }

 

Not, getting expected result.

0 Likes
210 Views
1 Reply
Reply (1)
Message 2 of 2

moturi.magati.george
Autodesk
Autodesk

Hi @RnD_PIS,

This seems like a duplicate question to 
https://forums.autodesk.com/t5/revit-api-forum/unable-to-relinquish-in-bim360-file/td-p/12035377

We can track one question so that we can get insightful and elaborate answers on the above link 

  Moturi George,     Developer Advocacy and Support,  ADN Open
0 Likes