Hi,
is there a automatic method for extracting the source tables of a documents ?
For example I have the load script in my document:
.....
AnagraficaCampagne:
sql select PCMSTAB || trim(to_char(PCMANNO,'0000')) || PCMCIMP ||
TRIM(TO_CHAR(PCMPROG,'000')) as CampagnaLaminazione,
PCMSTAB || trim(to_char(PCMANNO,'0000')) || PCMCIMP ||
TRIM(TO_CHAR(PCMPROG,'000')) as CampagnaLaminazioneAnag,
PCMFLGVERS as FlagVersato,
PCMFLGNC as FlagNonConforme,
PCMACAM as CodiceAmbitoCampagna
from VAMPCAM;
....
I would like to extract the VAMPCAM table.
Thanks
Giovanni