Application Development 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: 

function module for field name display for a table

Former Member
0 Kudos

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

1 ACCEPTED SOLUTION

Former Member
0 Kudos

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

Former Member
0 Kudos

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.

Former Member
0 Kudos

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

Former Member
0 Kudos

hi,

check the FM <b>DB_GET_TABLE_FIELDS</b>

hope this helps,

do reward if it helps,

priya.

former_member628175
Active Participant
0 Kudos

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.

andreas_mann3
Active Contributor
0 Kudos

fm RFC_GET_NAMETAB

A.

uwe_schieferstein
Active Contributor
0 Kudos

Hello Sathyabama

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

Regards

Uwe