Hi.Calling inline command for getting of select box entries for my datacaputure.cfg file.In my cfg file i had written like this inline command="/iw-home/httpd/iw-bin/aaa.ipl"The above entry i specified in select box tag.The same above inline statements i mentioned in my metata datacapture.cfg file.The entries those are coming in my actual datacaputure.cfg file are not getting in my metadata datacapture.cfg file.Can any one help me for solving of this one?In my ipl file i have statements like this for filling of select box entries.print <<"END"; substitution END if (open(MYFILE, "$filepath")) { $line = ; while($line ne "") { print FLE "$line\n";print <<"END"; option label="$line" END $line = ; } }print <<"END"; substitutionENDHave correct open and end tags for substitution and option tags. When i am posting this i removed those.
Meta Data Capture mechanism differs from DCT. FormAPI and inline are not supported (inlines are simply ignored)You can make a CGI Callout, that will work in MDCT as well
Hi.Calling inline command for getting of select box entries for my datacaputure.cfg file.In my cfg file i had written like this inline command="/iw-home/httpd/iw-bin/aaa.ipl"
I beg to differ there Bo. Inlines work well. I use this to verify that only Admin and Masters can do certain tags: <inline command="d:/iw-home/iw-perl/bin/iwperl.exe d:/iw-home/custom/inline/metadatacapture/datacapture.ipl" />Works great on 6.5.You are certainly correct about FormAPI.
Thanks. I had very brief encounter with 6.1 and was under impression that MDCT inline did not work there, just like 4.x/5.xDid not double-check with 6.5
In my ipl file i have statements like this for filling of select box entries.[html]print <<"END"; substitution END if (open(MYFILE, "$filepath")) { $line = ; while($line ne "") { print FLE "$line\n";print <<"END"; option label="$line" END $line = ; } }print <<"END"; substitutionEND[/html]