cancel
Showing results for 
Search instead for 
Did you mean: 

Field KNVV-CHSPL does not exist in field status tables (TMOD*)

former_member358181
Active Participant
0 Kudos

Hi,

We recently upgraded ECC 5.0 server from support pack 14 to 19 (SAP_APPL). After that when we wanted to created the master data for customer in XD01, it has system giving the message Field KNVV-CHSPL does not exist in field status tables (TMOD)*

Can any body tell me what is problem?

Pl provide the solution for above requirement

Useful answers duly rewarded

Regards,

Devendra

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

I checked now the problem in your system.

Please insert the following entry in table tmodu with a report like

this:

REPORT Z_INSERT_TMODU .

TABLES: TMODU.

tmodu-FAUNA = 'T077D-FAUSV'.

tmodu-MODIF = '018'.

tmodu-TABNM = 'KNVV'.

tmodu-FELDN = 'CHSPL'.

tmodu-KOART = 'D'.

tmodu-UMSKS = ' '.

tmodu-XRELE = ' '.

clear TMODU.

INSERT INTO TMODU VALUES TMODU.

TABLES: TMODU.

tmodu-FAUNA = 'T077K-FAUSA'.

tmodu-MODIF = '040'.

tmodu-TABNM = 'KNVK'.

tmodu-FELDN = 'NAME1'.

tmodu-KOART = 'K'.

tmodu-UMSKS = ' '.

tmodu-XRELE = ' '.

INSERT INTO TMODU VALUES TMODU.

clear TMODU.

tmodu-FAUNA = 'T077D-FAUSA'.

tmodu-MODIF = '040'.

tmodu-TABNM = 'KNVK'.

tmodu-FELDN = 'NAME1'.

tmodu-KOART = 'D'.

tmodu-UMSKS = ' '.

tmodu-XRELE = ' '.

INSERT INTO TMODU VALUES TMODU.

We are just creating a note for this but it is still in process.

The note number will be: 1164920.

Answers (1)

Answers (1)

hueychin_liew
Active Participant
0 Kudos

Hi Devendra,

You may consider to insert the following entry in table TMODU manually with a report like this:

REPORT Z_INSERT_TMODU .

TABLES: TMODU.

tmodu-FAUNA = 'T077D-FAUSA'.

tmodu-MODIF = '014'.

tmodu-TABNM = 'KNA1'.

tmodu-FELDN = 'SPRAS'.

tmodu-KOART = 'D'.

tmodu-UMSKS = ''.

tmodu-XRELE = ''.

INSERT INTO TMODU VALUES TMODU.

IF SY-SUBRC = 0.

WRITE: / 'TMODU-entry successfully inserted.'.

ELSE.

WRITE: / 'TMODU-entry already exists'.

ENDIF.

This may help & I wish to inform you that this is a modification & will not be supported by SAP.

Hope this could be helpful to you.

Thank you.

Best regards,

HC.