Dynamic Document - unwanted border
Hi all,
I am facing a problem with removing border around Dynamic Document I created.
Below is my coding:
DATA: o_dd_document TYPE REF TO cl_dd_document, o_custom_container type ref to cl_gui_custom_container. CREATE OBJECT o_custom_container EXPORTING container_name = 'DD_CONTAINER' style = cl_gui_control=>ws_* "here whatever style constant I put, I can't hide the border CREATE OBJECT o_dd_document. "here I am adding some elements to document ... "then I am displaying it CALL METHOD o_dd_document->display_document EXPORTING parent = o_custom_container.
I tried with setting style directly on DD, but it isn't working too.
My question is: is there a way I can hide this unwanted border?
Thank you in advance
Marcin