JDE BIP BI Publisher

dreu1981

Member
Hi to all. I nedd to know if it is possibile to add a Page Break after the "Last Page Boby" section.

I create an header, a Body then the Section Page Break and then the tag "Last Page Body" (<?start@last-page:body?><?end body?>) with a Summary Table.

I want to print in an additional page, after the "Last page" some additional instrucions.

- This is possibile?
- In negative case, it is possible to add a "First page only" with those instructions?

Tks to all
Regards
Andrea
 
You should be able to create a template (like a section) for what you would like displayed, and the call that template. The code for the template would go something like this:
<?template:afterLastPage?>
Some additional instructions go in here....
<?end template?>

And the call to the template would be :
<?call:afterLastPage?>

You would call the template from your "last page Body" before it ends...
<?start@last-page:body?>
something...
something...
<?call:afterLastPage?>
<?end body?>

======

Haven't tried this, but I think it should work. Let us know.
 
first, tks a lot for your support!

then... in the ER code posted by you, there're not a break page after last-page-body.

I have to create:
- body (created)
- last page body (created)
- break page (missing)
- call template "after last page body" (missing)

1. with <?split-by-page-break?> doesn't work properly, the bip doesn't split
2. I tried to import a template with <?import:file:xxx?>. in this template there's a "page break (by section)" inserted with Word option, but doesn't work properly
3. I tried to make a page break in the imported template, but the instruction found in the manual didn't work properly

IE:
File B.rtf: <?template:B?><?split-by-page-break?>TEST<?end template:B?>
File A.rtf: <?import:file:xxx/B.rtf?><?call:B?>
BIP Print "TEST" in the first page -_-"

also in this test:
File B.rtf: <?template:B?>TEST<?end template:B?>
File A.rtf: <?import:file:xxx/B.rtf?><?split-by-page-break?><?call:B?>
BIP Print "TEST" in the first page -_-"

have some other ideas for me?
 
Back
Top