Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Custom print header 1

Status
Not open for further replies.

Mishref

Vendor
Feb 28, 2017
2
KW
Hello,

I am trying to print a header on invoices in Simphony 2.x; I want the invoice to show #XX (two digits cheque id) in large text on the top of the invoice. Can't seem to track down any sim documents after the Oracle acquisition.

Thanks for your help!
 
Specify an ISL print event in the header/trailer descriptors using @@<event_id> (E.g. @@ChequeID)

Then in your ISL file your event would be Event Print_Header : <event_id> or Event Print_Trailer : <event_id>

To write lines to the receipt you use the sys vars @Header[] or @Trailer[]


E.g.

Event Print_Header : CheckID
Var idDigits : A3

// Retreive digits

@Header[1] = idDigits​
EndEvent​


 
Thank you for your help! I will be trying it out on our dev server!

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top