No, they don't show up for the service program source either.
Thanks for the link. I've looked at that article before; it explains, verbally, the steps that Ortwin showed in his Word document. By the way, it would be very helpful if that article had pictures, too. 0-)
Also, regarding the INT return restriction, my pcml file has an error in it regarding that, and none of our procedures return integers. Will this affect linking to the service program procedure? Below is an example from my pcml file.
<pcml version="4.0"> <program name="GETPACKINGLIST" entrypoint="GETPACKINGLIST" returnvalue=" "> <!-- Error: return value must have type="int" and length="4". (E) --> <data name="ORDERNO" type="int" length="2" precision="15" usage="input" /> <data name="INVOICENO" type="int" length="2" precision="15" usage="input" /> <struct name="DOCUMENTPATH" outputsize="514" usage="inputoutput"> <data name="length" type="int" length="2" precision="16" usage="inherit" /> <data name="string" type="char" length="length" usage="inherit" /> </struct> <data name="MSG" type="struct" struct="SYSMSGINFO" usage="inputoutput" /> </program> </pcml>
Walt1968