2018 Jun 18 1:29 PM
Hi All,
In Main window using Table i am displaying Line items. Requirement is if a particular field, say 'Page_Break' is set value 'X', then print it in fresh page. I can able to do that using Command Node.
Issue is, if suppose first line item (either in first page or subsequent page), is having that Page Break flag, then i should not trigger explicit page break, which will results in blank main window page.
How to achieve this?
2018 Jun 18 2:26 PM
You should save the last page processed in some variable ("last_page = sfsy-page.") during item processing, only trigger new page (at start of item processing, condition "last_page = sfsy-page.") when the page has already processed one item.
2018 Jun 19 4:49 AM