Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

CATT Error Message

Former Member
0 Likes
557

Hello Guru's,

New condition records were created for some items (590 – 690) the following error log appeared after the upload was complete. Will anyone guide me what is this issue.

Error message:

Z_MM_ME32K_OA_PRICE_CIND12_19B/00001 00:00:09 ME2K change contract price w/validity dates 12_1 RUSSELS

H:\CATT\OA PRICE Mods\OA 46_2999 updates VD26 Testing.txt

Error in application transation ATT377

Control data is obsolete, record(VERBS-NAME: CreateObject CATT <none>

<REMOVED BY MODERATOR>

Edited by: Alvaro Tejada Galindo on Mar 12, 2008 6:33 PM

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
479

Hi,

Please check in your input flat file.whether the corresponding screen field (VERBS-NAME) value is there or not.if it is not there you have to give.if it is there pls check the value is correct or not.

2 REPLIES 2
Read only

Former Member
0 Likes
479

hi ,

check this....check the error log may it helps u,

goto sm35.

select the session.In the appl. toolbar press log.

it will take u to log overview. pressdisplay,u can see all the errors during that session.

check this code to display the error mesgs.

CALL TRANSACTION 'MM02' USING IT_BDCDATA MODE 'A' update 'S'

MESSAGES INTO IT_MESSAGES.

CLEAR IT_BDCDATA.

REFRESH IT_BDCDATA.

LEAVE TO LIST-PROCESSING and return to screen 0.

WRITE:/ SY-SUBRC.

PERFORM MESGS.

FORM MESGS .

DATA: V_MSG(100) TYPE C.

LOOP AT IT_MESSAGES.

CALL FUNCTION 'FORMAT_MESSAGE'

EXPORTING

ID = SY-MSGID

LANG = 'EN'

NO = SY-MSGNO

V1 = SY-MSGV1

V2 = SY-MSGV2

V3 = SY-MSGV3

V4 = SY-MSGV4

IMPORTING

MSG = V_MSG

EXCEPTIONS

NOT_FOUND = 1

OTHERS = 2.

IF SY-SUBRC 0.

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

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

ENDIF.

WRITE:/ V_MSG.

clear v_msg.

ENDLOOP.

http://help.sap.com/saphelp_nw04/helpdata/en/d7/e2143b408e11d1896b0000e8322d00/frameset.htm

regards,

venkat.

Read only

Former Member
0 Likes
480

Hi,

Please check in your input flat file.whether the corresponding screen field (VERBS-NAME) value is there or not.if it is not there you have to give.if it is there pls check the value is correct or not.