I'm using one MSSQL server (SQL server 2019 on Linux, to be precise, on Kubernetes) as a distributor and publisher. I tried to configure it as a transactional publication using SSMS. The problem that I'm facing is when I try to configure a new publication. I'm getting an error (as shown in the screenshot).

Here are the errors:
Messages
SQL Server Management Studio could not create article 'Country'. (New Publication Wizard)
------------------------------
ADDITIONAL INFORMATION:
Cannot create if this object represents an existing object in the server. (Microsoft.SqlServer.Rmo)
SQL Server Management Studio could not create article 'Currency'. (New Publication Wizard)
------------------------------
ADDITIONAL INFORMATION:
Cannot create if this object represents an existing object in the server. (Microsoft.SqlServer.Rmo)
SQL Server Management Studio could not create article 'Product'. (New Publication Wizard)
------------------------------
ADDITIONAL INFORMATION:
Cannot create if this object represents an existing object in the server. (Microsoft.SqlServer.Rmo)
SQL Server Management Studio could not create article 'Segment'. (New Publication Wizard)
------------------------------
ADDITIONAL INFORMATION:
Cannot create if this object represents an existing object in the server. (Microsoft.SqlServer.Rmo)
I have only managed to make it work by disabling the tables with names B.Country, B.Currency, B.Product, and B.Segment and only keeping the primary ones A.Country, A.Currency, A.Product, and A.Segment. But I would like to have both A.x and B.x tables.
Do you have any advice on how I can configure it to work with all tables?
I would appreciate your help!