Conditional Sections

johndanter

johndanter

Legendary Poster
Hi Guys,

I'm creating an invoice template over the F03B11 and have a wish for a few conditional sections.

I've created 2 so far:
EXRATE to show exchange rate
IBAN to show banking info

I then use the <?call:IBAN?> to display it

Does anyone know how I can get the template to condition my call to IBAN if no banking info exists?

I've been tinkering with Insert conditional region but it seems to fall over

Any help please?
 
This can be done. You can use choose statement instead.
<?choose:?>
<?when:(ChequeField!='')!=’’?>
Print Value
<?end when?><?otherwise:?>
Print Value
<?end choose?>
 
Back
Top