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

How to get text fields into reports

Former Member
0 Likes
638

Hi gurus,

I have one query ,

How to take an ALV GRID report with one of field as BASIC DATA TEXT field in MM01 transaction. How to get the data in that text field into ALV GRID REPORT.

Thanks in Advance.

Thanks and Regards

Siri..

Hi gurus,

I have one query ,

How to take an ALV GRID report with one of field as BASIC DATA TEXT field in MM01 transaction. How to get the data in that text field into ALV GRID REPORT.

Thanks in Advance.

Thanks and Regards

Siri..

2 REPLIES 2
Read only

Former Member
0 Likes
484

Hi,

Use this FM READ_TEXT

pass the parameters as below

OBJECT   = 'MATERIAL'
NAME     = '000000000000121111'(material no)
ID       = 'GRUN'
LANGUAGE = sy-langu

the table lines ll have the text.........

Cheers,

jose.

Read only

Former Member
0 Likes
484

HI use like this ,

CALL FUNCTION 'READ_TEXT'

EXPORTING

CLIENT = SY-MANDT

id = '0001'

language = 'E'

name = '0080013778'

object = 'VBBK'

TABLES

lines = lines .

THEN YOU GET THE RESULT.

reward points if useful,

venkat.