cancel
Showing results for 
Search instead for 
Did you mean: 

about sales text

0 Kudos
45

hi guru,

could you please tell me a transaction code or table name where i can see list of all materials with sales text in different languages, or a work around for it

*requirment*

user wants to list all materials with sales text**

thanks in advance

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Dear Sumanth,

You would need to design a custom report.

Use READ_TEXT function module to retrieve the text. You would need to pass Text ID, Language, Text Name, and Text Object.

Sample Code:

CALL FUNCTION 'READ_TEXT'

EXPORTING CLIENT = SY-MANDT

ID = THEAD-TDID

LANGUAGE = THEAD-TDSPRAS

NAME = THEAD-TDNAME

OBJECT = THEAD-TDOBJECT

IMPORTING HEADER = THEAD

TABLES LINES = EDTEXT

EXCEPTIONS NOT_FOUND = 4

OTHERS = 8.

Hope this will resolve your issue.

Regards,

Naveen.