cancel
Showing results for 
Search instead for 
Did you mean: 

Error while creating so "Text 0000001025 ID 0012 language EN not found

Former Member
0 Kudos

Dear Sirs,

I am creating sales order but when i enter the material i am getting an error message

"Text 0000001025 ID 0012 language EN not found

Message no. TD600

Diagnosis

You want to read a text which does not exist in the data base (or update memory).

System Response

Reading could not be carried out.

Procedure

You need to create this text:

1. Initialization (module INIT_TEXT)

2. Save (module SAVE_TEXT)"

Can any one please let me know what i am doing wrong?

Thank & regards,

Sameer

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

I hope its an error related to ABAP developements,either smartforms or reports related so you consult your abaper to resolve it.

Here is an sample ABAP code using the READ_TEXT function module without Exceptions uncommented.

This sample ABAP code is taken from a SAP Smartform which is created for SAP invoice output document.

CALL FUNCTION 'READ_TEXT'

EXPORTING

  • CLIENT = SY-MANDT

id = 'ZI01' " Billing Item Text

language = 'I'

name = lv_name " Invoice

object = 'VBBP' " Billing

  • ARCHIVE_HANDLE = 0

  • LOCAL_CAT = ' '

*IMPORTING

  • HEADER =

tables

lines = lt_lines

*EXCEPTIONS

  • ID = 1

  • LANGUAGE = 2

  • NAME = 3

  • NOT_FOUND = 4

  • OBJECT = 5

  • REFERENCE_CHECK = 6

  • WRONG_ACCESS_TO_ARCHIVE = 7

  • OTHERS = 8

.

IF sy-subrc <> 0.

  • MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO

  • WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.

ENDIF.

Thank you

gomatheeswaran_palaniappa
Active Contributor
0 Kudos

Hi,

Pl go to VOTXN transaction. Select sales document item texts and click Text types button at the top. You can see what text ID is 0012. You have to maintain that text. Pl check and let us know.

Regards,

P Gomatheeswaran

Former Member
0 Kudos

Dear Sir,

I checked in VOTXN transaction, the text id 0012 is in sales document header and it is for shipping instructions.Can you please let me know where i have to maintain that text?

Thanks & regards,

Sameer

gomatheeswaran_palaniappa
Active Contributor
0 Kudos

Hi

Please check this thread and let us know if this solution helps.

Regards,

P Gomatheeswaran