Hi Guru,
I am displaying one ALV in which I am displaying top of page.
I am using class cl_dd_document for that.
then I am calling add_text method but it si not displaying any thing in header.
So could you pls tell me is there any thing which I have to incorporate in this.
Thanks.
Sample code-
FORM html_top_of_page .
DATA: text TYPE sdydo_text_element.
DATA: top_page type ref to cl_dd_document .
create object top_page.
text = 'Company Code Data'.
CALL METHOD top_page->add_text
EXPORTING
text = text
Please tell me apart from this I have to do any thing.