I assume that you mean: there is a tmp table in the database, sp1 populates the table, can sp2 access (read or modify) this data?
Yes it will. (If sp1 does not have a "commit" before invoking sp2, of course).
Oracle temporary tables are used to store data for the duration of a session or transaction. Sp1 and sp2 working in the same session.
source
share