Skip to Content
0
Former Member
Jan 19, 2011 at 11:56 PM

ABAP Report Text ID FKK0 language EN not found

454 Views

I'm having a problem with my program. I added the following code and Iu2019m getting the below error from u2018FKK0u2019 can anyone help with my problem?

*&---

*& Form DISPLAY

*&---

  • text

*---

  • --> p1 text

  • <-- p2 text

*---

form DISPLAY .

CALL FUNCTION 'READ_TEXT'

EXPORTING

  • CLIENT = SY-MANDT

id = 'FKK0'

language = 'E'

name = opbel

object = 'FKKKO'

  • ARCHIVE_HANDLE = 0

  • LOCAL_CAT = ' '

  • IMPORTING

  • HEADER =

tables

lines = textlines

  • 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.

endform. " DISPLAY

Text IDFKK0 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).

SystemResponse

Reading could not be carried out.

Procedure

You need to create this text:

1. Initialization (module INIT_TEXT)

2. Save (module SAVE_TEXT)