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

Regarding smart forms

Former Member
0 Likes
381

Hi all,

How to create table within table in smart forms?

I have created table and i want to create a rows and columns in a particular cell.

Thanks in advance

Brunda

3 REPLIES 3
Read only

Former Member
0 Likes
360

Hi,

A table type describes the structure and functional attributes of an internal table in ABAP. In ABAP programs you can reference a table type TTYP defined in the ABAP Dictionary with the command DATA <inttab> TYPE TTYP. An internal table <inttab> is created in the program with the attributes defined for TTYP in the ABAP Dictionary.

A table type is defined by:

its line type, that defines the structure and data type attributes of a line of the internal table

the options for managing and accessing the data ( access mode) in the internal table

the key ( key definition and key category) of the internal table

The row type is defined by directly entering the data type, length and number of decimal places or by referencing a data element, structured type ( structure, table or view) or other table type. Or the row type can be a reference type.

for more info : http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb366d358411d1829f0000e829fbfe/content.htm

Thanks,

Reward If Helpful.

Read only

varma_narayana
Active Contributor
0 Likes
360

Hi..

In the Table Node :

Select the DATA Tab. Enter the Internal Table name.

In the TABLE tab . Details button .Create the <b>Line types</b>

Note: Line type defines the Structure of the columns.

Under the Table Node Create <b>Table Line </b>.

Assign the Line type to the TABLE LINE.

Under the Table Line Cells will be created automatically based on the Line type.

Then Create the TEXT NODE under each Cell where you can display the Fields of internal table.

<b>REWARD IF HELPFUL.</b>

Read only

0 Likes
360

Hi Varma,

I cannot see table line under table node.

thanks!

Brunda