Hello, I'll be glad to help. I see two main issues based on your comments and code sample so far:
1. Since Types 3, a new post relationships system is available. If you migrate to the new post relationships system, post relationships will no longer be stored using the _wpcf_belongs_{slug}_id meta key. After migration, you can no longer rely on this meta key/value pair to get the parent post, given the child post ID. I would need to know whether or not your site has migrated to the new post relationships system to determine whether or not this code will get the parent ID in a reliable way:
$parent_id = get_post_meta($post_id, '_wpcf_belongs_unit_id', true); // unit = your parent post type name
If you are unsure about whether or not your site has migrated to the new system, please go to Toolset > Relationships. If your site has already migrated to the new relationships system, you should see a list of all the post relationships you have currently set up on the site like the screenshot attached here relationships.png. If your site has not migrated yet, you should see a screen explaining the migration process and the steps you would need to take to migrate to the new system. Please take a screenshot of your screen at Toolset > Relationships and include it in your next reply, then I can give you some additional feedback about the best method for determining the parent post ID using PHP.
2. The standard WordPress post author information is not a custom field value, rather it is part of the post object itself. The function update_post_meta will not help you modify the standard post author, as it is only intended for modifying custom field values. I assume you want to update the standard WordPress post author, not a separate custom field like a User field created in Toolset Types. If this assumption is correct, you must change this line:
update_post_meta($parent_id, 'post_author', $user_id); // wpcf-status = your field name
Instead you must use the function wp_update_post to set the post author programmatically, since the post author is not stored in a custom field value. An example showing how to update the standard post author information:
$my_post = array(
'ID' => 123,
'post_author' => 789
);
wp_update_post( $my_post );
You would replace 123 with the ID of the post (or more likely a variable representing that ID) whose author you would like to change. You would replace 789 with the ID of the User (again, more likely a variable representing that ID) you would like to set as the post author.
I'll stand by for your update and give you some additional feedback after reviewing your comments.