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

function module for field name display for a table

Former Member
0 Likes
3,955

Is there any function module to display the fields in a table where we input the table name? urgent

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,881

Hi sathyabama,

1. CLVL_TABLE_FIELDS

2. Input the table name,

it will display the field names,

along with description,

and check box.

3. After selecting thru the checkboxes,

press the button 'Copy Selected Fields',

and we will get the selected fields

in the tables parameter of the fm.

regards,

amit m.

6 REPLIES 6
Read only

Former Member
0 Likes
1,882

Hi sathyabama,

1. CLVL_TABLE_FIELDS

2. Input the table name,

it will display the field names,

along with description,

and check box.

3. After selecting thru the checkboxes,

press the button 'Copy Selected Fields',

and we will get the selected fields

in the tables parameter of the fm.

regards,

amit m.

Read only

Former Member
0 Likes
1,881

You easily get the below information from table DD03L.

DD03L stores information related to the table+fields.

SELECT * from dd03l where tabname = ptable.

Regards

Anurag

Read only

Former Member
0 Likes
1,881

hi,

check the FM <b>DB_GET_TABLE_FIELDS</b>

hope this helps,

do reward if it helps,

priya.

Read only

former_member628175
Active Participant
0 Likes
1,881

Hi Sathyabama ,

you can try FM RV_TABLE_READ . This will give you all the details about the mentioned table .

Hope this helps .

Regards ,

Shounak M.

Read only

andreas_mann3
Active Contributor
0 Likes
1,881

fm RFC_GET_NAMETAB

A.

Read only

uwe_schieferstein
Active Contributor
0 Likes
1,881

Hello Sathyabama

For this purpose I always use DDIF_FIELDINFO_GET. Read the documentation for details about the parameters.

Regards

Uwe