Se è un pacchetto, puoi ottenerne il codice con:
select text from all_source where name = 'PADCAMPAIGN'
and type = 'PACKAGE BODY'
order by line;
Oracle non memorizza il codice sorgente di un sottoprogramma separatamente, quindi devi cercare nel codice sorgente del pacchetto.
Nota:presumo che tu non abbia utilizzato le virgolette durante la creazione del pacchetto, ma se l'hai fatto, usa
select text from all_source where name = 'pAdCampaign'
and type = 'PACKAGE BODY'
order by line;