Re: Make page break and prined from web page




<andyho99@xxxxxxxxx> wrote in message
news:1138390556.518515.275720@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
>I just click "View Output" in Oracle Applications and it'll display
> output file in browser. Can PL/SQL interact with CSS? I've never used
> CSS.
>
> Thanks,
>
> Andrew
>

i'm not an apps guy, so i don't know what your options are

to use CSS pagebreaks, you have to include CSS style definitions in an HTML
document, i.e.

<style type="text/css">
h1{
page-break-before: always;
}
</style>
or include style definitions in HTML tags:
<DIV style="page-break-after:always"></DIV>

it's also been a little while since i've used Oracle Reports (assuming the
you can modify your report in Oracle Reports); i don't remember if there's
an option/property that you can set to include HTML code -- but that might
be an option

++ mcs




.



Relevant Pages