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

Test for DD Table Field

sap_cohort
Active Contributor
0 Likes
914

Hi, I have a list of field names in a table and want to test if the field actually exists in the DD Table. What's the quickest way to test if the field name exists in the table?

Thank!

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
848

Hi,

Use the table DD03L..

Thanks,

Naren

Hi, I have a list of field names in a table and want to test if the field actually exists in the DD Table. What's the quickest way to test if the field name exists in the table?

Thank!

4 REPLIES 4
Read only

Former Member
0 Likes
849

Hi,

Use the table DD03L..

Thanks,

Naren

Read only

Former Member
0 Likes
848

Go to SE11, and you can see that.

Programitacally, GET_COMPONENT_INFO will give you the details.

Or you can look at the DD03L in the dictionary.

Regards,

Ravi

Note- Please mark all the helpful answers

Read only

uwe_schieferstein
Active Contributor
0 Likes
848

Hello Kenneth

You can call function module <b>DDIF_FIELDINFO_GET</b> and provide table name and fieldname. If the field does not exist the function module will raise an exception.

Regards

Uwe

Read only

Former Member
0 Likes
848

You can do a where-used list for the data elements attached to that field.

Or is your requirement to check if the field names are used in someother table.

In that case, it would be possible that it is attached to a different data element.

So at what level do u want to search? Field or data element level?

Regards

Meera