Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

add blank line to string_table

0 Likes
809

Hi folks,

I have a string_table I use for giving some system status fields in a Web Dynpro application popup (like user, client, etc.).

Now for better usability, I'd like to enter a blank line in my string_table. Does anybody know how to do that?

Kind regards

Ole

Hi folks,

I have a string_table I use for giving some system status fields in a Web Dynpro application popup (like user, client, etc.).

Now for better usability, I'd like to enter a blank line in my string_table. Does anybody know how to do that?

Kind regards

Ole

3 REPLIES 3
Read only

Former Member
0 Likes
649

Hi,

Use this..

APPEND INITIAL LINE TO string_table.

The above statement will append a blank line.

Thanks,

Naren

Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
649

Sure, just add a blank line.

data: xstr type string.
data: istr type table of string.


clear xstr.
append xstr to istr.

Regards,

Rich Heilman

Read only

0 Likes
649

OK, thanks for the answers.

that's what I tried from the start, and it works. The problem is a Web Dynpro method to which I pass this table. They just take away the blank lines...

Best regards

Ole