PL/SQL Developer is not showing the correct user name of the package it creates. The package IS created as USER_B in the example below.
When inside of command window logged in as USER_A, we see the following:
SQL> ALTER SESSION SET CURRENT_SCHEMA=USER_B
2 /
Session altered
> @my_package.sql"
Package body created
No errors for PACKAGE BODY USER_A.EAI_PARTY_MERGE
PL/SQL procedure successfully completed
When inside of command window logged in as USER_A, we see the following:
SQL> ALTER SESSION SET CURRENT_SCHEMA=USER_B
2 /
Session altered
> @my_package.sql"
Package body created
No errors for PACKAGE BODY USER_A.EAI_PARTY_MERGE
PL/SQL procedure successfully completed