Entering content frame

Background documentation How do I get a blank line using the iterator? Locate the document in its SAP Library structure

Question

I would like to insert a blank cell in my TableView with help of the Iterator. Blanks have no meaning in HTML, though. How do I proceed?

Answer

The solution for BSP is the rendering of   sequences (non-breaking space).

Use the following simple approach when working with the Iterator:

DATA: nbsp_bee TYPE REF TO CL_BSP_BEE_HTML.

CREATE OBJECT nbsp_bee.

nbsp_bee->ADD( html = ` ` ).

Return this BEE as replacement BEE for all cells, that should be blank. As this BEE is very simple, you can create it once and use it again as return parameter in Iterator calls for replacement BEEs whenever you need to.

selectionMode: LINEEDIT MULTISELECT MULTILINEEDIT

 

 

Leaving content frame