2010 Jan 11 7:16 AM
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
2010 Jan 11 7:36 AM
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
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
2010 Jan 11 7:36 AM
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
2010 Jan 11 7:57 AM
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.
2010 Jan 11 8:04 AM
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.
2010 Jan 11 8:04 AM
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.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |