‎2007 Sep 06 12:01 PM
i want to give data element as input and get the discription of data element as out put can i get this plz
‎2007 Sep 06 12:04 PM
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.
‎2007 Sep 06 12:05 PM
Hi,
Here is the function moduel, TB_DATAELEMENT_GET_TEXTS
Regards
Sudheer
‎2007 Sep 06 12:06 PM
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
‎2007 Sep 06 12:10 PM
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
‎2007 Sep 06 12:14 PM
parameters:p_dataelement type dd04t-rollname.
select ddtext from dd04t where rollname = p_dataelement and ddlanguage = 'E'.
endselect.
plz reward points if dis helps