cancel
Showing results for 
Search instead for 
Did you mean: 

Display Column headings vertically in adobe forms

Former Member
0 Kudos

Dear Team,

Is there any standard way to disply the column headings vertically (Top to Bottom) and follwed by Column values in adobe forms ?

Please find the attached document or below mentoined format for your referecne.

Could you please check this and do the needful.

Awaiting your reply.

HEADING1Value1Value2Value3Value4Value5Value6
HEADING2Value1Value2Value3Value4Value5Value6
HEADING3Value1Value2Value3Value4Value5Value6
HEADING4Value1Value2Value3Value4Value5Value6
HEADING5Value1Value2Value3Value4Value5Value6
HEADING6Value1Value2Value3Value4Value5Value6
HEADING7Value1Value2Value3Value4Value5Value6
HEADING8Value1Value2Value3Value4Value5Value6
HEADING9Value1Value2Value3Value4Value5Value6
HEADING10Value1Value2Value3Value4Value5Value6
HEADING11Value1Value2Value3Value4Value5Value6
HEADING12Value1Value2Value3Value4Value5Value6

Thanks and regards

Krishna Mohan

+44-7448509565.

Accepted Solutions (1)

Accepted Solutions (1)

SandySingh
Active Contributor
0 Kudos

Hello Krishna,

You have two options:

1. To create this table, you must make the following changes:

  • For the Header subform, set the Content option to Positioned.
  • For the DATA subform, set the Content option to Positioned. 
  • For the DATA subform, turn off the Allow Page Breaks within Content option.

2. Loop through the table programatically and use concatenate operation to write the entire row content to a column.


loop at itab into wa.

  concatenate lv_line wa-value into lv_line seperated by ' space '.

endloop

Regards

Sandy

Former Member
0 Kudos

Hi Sandy,

Thnaks for your reply.

But in the adobe form we need to display it as in TABULAR format of (Columns & ROWS ) as mentioned below.

In the first column i need to have heading and in subsequent columns i need to display the corresponding values.

Please let me know how i can build the internal table and adobe layout to achieve this.

Please do the needful.

Could you please share your mail id so that i can send you the sample output what ever i required.

Thanks and regards

Krishna Mohan

+44-7448509565

Former Member
0 Kudos

Dear Team

Could you please give the udpate on my above post since it is very critical for one of my development.

Please do the needful

Thanks and regards

krishna mohan

ChrisSolomon
Active Contributor
0 Kudos

There are plenty of examples of doing tables on Adobe forms. Look at some of the standard forms that do this. Your usage of subforms, settings on them, bindings, etc. will be what makes the "magic" happen.

SandySingh
Active Contributor
0 Kudos

Hello Krishna,

Have you tried to create the separate subforms for Header and table contents. Refer to my last post.

Or in the Form interface "code Initialisation" tab, you can transpose the existing internal table to swap the rows and columns using by creating dynamic internal table . Refer to links below

Regards

Sandy

Answers (0)