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

data element

Former Member
0 Likes
645

i want to give data element as input and get the discription of data element as out put can i get this plz

5 REPLIES 5
Read only

Former Member
0 Likes
613

hi,

create a global data element and create a variable of that data element and using WRITE st print it on screen.

if helpful reward some points.

with regards,

Suresh Aluri.

Read only

Former Member
0 Likes
613

Hi,

Here is the function moduel, TB_DATAELEMENT_GET_TEXTS

Regards

Sudheer

Read only

seshatalpasai_madala
Product and Topic Expert
Product and Topic Expert
0 Likes
613

Hi,

Use the class CL_ABAP_ELEMDESCR.

Use Method describe_by_name.

Then on the instance that is returned by the method call

GET_DDIC_FIELD.

Regards,

Sesh

Read only

Former Member
0 Likes
613

u can use the program 'RSMODWRD' .Enter the dataelement name and execute it u wil be getting the description.In case of any dbts pls revert back

Message was edited by:

aruna ch

Read only

former_member188827
Active Contributor
0 Likes
613

parameters:p_dataelement type dd04t-rollname.

select ddtext from dd04t where rollname = p_dataelement and ddlanguage = 'E'.

endselect.

plz reward points if dis helps