Default Printer in APPL

lisachew

Active Member
Hello List,

Currently, I am designing an application. Problem is that I am desgining a checkbox in a FIND/BROWSE Form in the FORM part. When user click on the checkbox, a report should run. But instead of that, it prompt me for default printer.

I didnt have much ER in it so the APPL is quite simple. Did I left anything important? Or is there any way to solve this? PLease help anyone.

Thank you.

Best regards;
Lisa
OneWorld XE B733.3
SP 13
Intel NT4-service pack 6A
SQL 7
Service Pack 2
 
Let's see - I think (I can't remember) that the only way to lauch
and not get the printer box it to launch from a BSFN and set a
flag in the pUBEVar called something like "bBatch". Does this sound
familiar to anyone?
 
Yes Segfault, it sounds pretty familiar (at least the "launch" word :), I found an appropriate answer here, on The JDEList, and I make it an honouring task to re-compile it now:
As our friend Wannes was saying, one may use the B91300C Launch Batch Application. I've used it successfully, passing on the following parameters:
Launch Batch Application
"R55BCRPTMS" -> szReport
"XMFP01" -> szVersionJDE
"1" -> cSynch
"1" -> cPrintPreview
UNDEFINED -> szDataSourceOverride
UNDEFINED <- mnServerJobNumber
UNDEFINED <- cReturn
"<Zero>" -> cJDELogging
"<Zero>" -> cTracing
"<Zero>" -> cUBELoggingLevel
"<Blank>" -> szJobQueue
a) Use your szReport & szVersionJDE;
b) The cPrintPreview enabled (1) takes your Report output to Acrobat. <Zero> will skip it (to the printer directly).
c) The Logging flags are helpful in troubleshooting, if needed :)
Warm regards,

Xe U3 SP17, Oracle 806, Citrix, HTML, FormScape 2.1 Ent RS/6000, AIX 4.2, Dep NT4
 
Back
Top