Gerrit
30th November 2004, 18:16
Hello,
Maybe some of you has a solution for this.
I have no developerskit on a BaanIV-system. I want to print a report on two different devices. Does someone has a solution for this without bying an add-on of course.
Regards,
Gerrit
mark_h
30th November 2004, 20:12
Have you searched the tools forum for other options like this? You can search for ottstpconv or ttstpconv also. This might give you some ideas. I have never bothered to learn what you actually need to develop code in Baan - we just can.
Maybe more information may help others make recommendations.
Mark
robertvg
1st December 2004, 14:07
if your platform is UNIX:
print to a file (e.g. decive ASCIF).
as parameter refer to a script: e.g.: ascii\/baan4c/bse/lib/print2 %s
create the script /baan4c/bse/lib/print2 and print to as many printers as you want (and maybe even send it by email): example:
#
# @(#) print2 - print BAAN reports to various printers
#
#
TMPFILE=/baan4c/bse/tmp/lptmp
#
#First send ascii output by email, then process through filter6.1 and print to 2 printers
cat $TMPFILE | mailx -s "New EDI Orders" -m userxxx
#
filter6.1 -p hp_lj4 -c 2 -f 1 -t 999999 -i $TMPFILE -o $BSE/tmp/outputfile -l 66 -m 1 -n 0 -L ISO-8859-1
lp -d amsictl1 -n $1 $BSE/tmp/outputfile
lp -d amsopel1 -n $1 $BSE/tmp/outputfile
#
regards,
Robert
Gerrit
1st December 2004, 14:37
THanks RObert,
BUt it must be realized on WIndows. Maybe you'll have another suggestion.
Regards,
Gerrit
jvdmunt
4th March 2005, 14:49
Hi Gerrit,
Try this: http://www.andtechnologies.com/mpp.html
We use this also, it works OK.
Regards, Joop