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

Dynamic Documents Format cells

Former Member
0 Likes
530

Hi everyone,

I created a Dynamic Document and I had insert a table in it.

Now I want to format some column headers. I want that some of them have Left Alignment and others Center Alignment.

Is it possible to format only the header columns and not the table rows?

The only way that I know to do align format is using the method SET_COLUMN_STYLE but with this I format the entire column and that's not what I want.

Thanks.

Silvia

1 ACCEPTED SOLUTION
Read only

athavanraja
Active Contributor
0 Likes
443

may be you can use the approach as in this program

DD_ADD_TABLE

or you can also just add plain html code which can handle that

<cl_dd_document>->ADD_STATIC_HTML

2 REPLIES 2
Read only

athavanraja
Active Contributor
0 Likes
444

may be you can use the approach as in this program

DD_ADD_TABLE

or you can also just add plain html code which can handle that

<cl_dd_document>->ADD_STATIC_HTML

Read only

0 Likes
443

Thanks Raja,

The only way I could solved it was adding plain html code with <cl_dd_table_area>->ADD_STATIC_HTML, as your advise.

Regards.

Silvia