cancel
Showing results for 
Search instead for 
Did you mean: 

Material Memo Details in MRP 4

Former Member
0 Kudos

Hi

I would like to know if there is any way to extract the details Material Memo maintained/entered in MRP4.

I could see the details using READ_TEXT functional module but i dont find a way to extract these to a spreadsheet say material memo details for all materials in a plant.

I would like to know if it possible to extract these details or not? If so can please let me know how it can be done.

Thanks

Vithal

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Dear,

Enter the following data in read_text in SE37

ID-LTXT

LANGUAGE -EN

NAME-MMMMMMMMMMMMMMMMMMPPPP

OBJECT -MDTXT

M - 18 char material number and P- 4 char plant number

In this way you can get the details of Meterial memo of MRP4 view.

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Vithal,

Hope the below code helps

CALL FUNCTION 'READ_TEXT'

EXPORTING

ID = 'LTXT'

LANGUAGE = 'E'

NAME = material # + blank + plant

OBJECT = 'MDTXT'

TABLES

LINES = T_TLINE

EXCEPTIONS

ID = 1

LANGUAGE = 2

NAME = 3

NOT_FOUND = 4

OBJECT = 5

REFERENCE_CHECK = 6

WRONG_ACCESS_TO_ARCHIVE = 7

OTHER = 8.

If helpful award points.

Rgrds,

Vivek