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

Read_Text Details

Former Member
0 Likes
798

Hi

Can any one tel how to see the material long text details

like textid,name ,object in MM03

iam in MM03 now how to see the longtext details of the material

Thanks

Surendra P

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
749

Hi Surendra,

Goto T-code MM03 , goto the screen or tab of " Purchase order text " ,here you can enter the long text for the material,

below that , you find a button " EDITOR " ,

new screen for editing will be opened , in this screen

menu GOTO --> HEADER ,

all the details of the longtext are maintaned there.

Regards,

Aby

4 REPLIES 4
Read only

Former Member
0 Likes
750

Hi Surendra,

Goto T-code MM03 , goto the screen or tab of " Purchase order text " ,here you can enter the long text for the material,

below that , you find a button " EDITOR " ,

new screen for editing will be opened , in this screen

menu GOTO --> HEADER ,

all the details of the longtext are maintaned there.

Regards,

Aby

Read only

0 Likes
749

Goto T-code MM03 ,

Classification tab - Purchase Order Text (Enter Plant)

You will have Texts maintained in different Languages. Select the required text.

Select the Editor Icon. (Below the text space on the same screen)

An Editable screen for text would be open.

Menu Goto -> HEader. All the text details would be available in a pop-up.

Eg - Text name 000000000000002927

Language EN

Text ID BEST Purchase order text

Text object MATERIAL Material texts, pur./storage

Hope this helps you.

Read only

Former Member
0 Likes
749

hi,

DATA:it_basic type TABLE OF tline,"internal table for long text

wa_basic type tline."work area for long text

data:LV_HEAD TYPE THEAD-TDNAME.

LV_HEAD = wa_marc-matnr.

CALL FUNCTION 'READ_TEXT'

EXPORTING

CLIENT = SY-MANDT

ID = 'GRUN'

LANGUAGE = wa_makt-spras

NAME = LV_HEAD

OBJECT = 'MATERIAL'

TABLES

LINES = it_basic

EXCEPTIONS

ID = 1

LANGUAGE = 2

NAME = 3

NOT_FOUND = 4

OBJECT = 5

REFERENCE_CHECK = 6

WRONG_ACCESS_TO_ARCHIVE = 7

OTHERS = 8.

Read only

Former Member
0 Likes
749

hi,

DATA:it_basic type TABLE OF tline,"internal table for long text

wa_basic type tline."work area for long text

data:LV_HEAD TYPE THEAD-TDNAME.

LV_HEAD = wa_marc-matnr.

CALL FUNCTION 'READ_TEXT'

EXPORTING

CLIENT = SY-MANDT

ID = 'GRUN'

LANGUAGE = wa_makt-spras

NAME = LV_HEAD

OBJECT = 'MATERIAL'

TABLES

LINES = it_basic

EXCEPTIONS

ID = 1

LANGUAGE = 2

NAME = 3

NOT_FOUND = 4

OBJECT = 5

REFERENCE_CHECK = 6

WRONG_ACCESS_TO_ARCHIVE = 7

OTHERS = 8.