It looks like in your Create Document microflow you are creating NewGenerate_Document, then trying to retrieve over an association from this object to get TA_Communication_Plan_Details_2. I suspect this association hasn’t been set if you’ve only just created the object, so when you try to use it, it is actually empty, and is causing the error you are seeing.
I would suggest putting checks for empty objects after your retrieves to make sure you have data, and if not, fail with a suitable error.
Good luck!