I have the attached Perl script that calls information from a database and should populate 6 different fields in a db. The issues is, the script works fine calling each individual field but when I attempt to call them all at the same time I get a "com.interwoven.ui.formspub.datacapture.dct.InlineCallout$InlineCalloutException:" error. I can get it to work by calling 4 of the items (the non commented out one):
my
@area = load_strat_table();
my
@interest = load_interest_table();
#my
@services_2 = load_services_table();
#my
@lifeevt = load_life_table();
my
@topic = load_topic_table();
my
@personas = load_personas_table();
But it if add either/or both of the other two I get the same error.
BTW: I’m calling the script in the datacapture.cfg file with this line of code (I took out the open and close brackets:
inline command="c:/iw-home/iw-perl/bin/iwperl c:/iw-home/custom/callouts/metadata_callout_p3.pl"
Thank you for any light you can shed on this!!!!