cancel
Showing results for 
Search instead for 
Did you mean: 

Error in Webdynpro report after transported to Production server

Former Member
0 Kudos

Hi all,

I have developed webdynpro report ( Shopping Cart Report) using ALV Component and Selectoptions. The report is working fine in DEV server but after transported into UAT is getting floowing error in browser.

The following error text was processed in the system SRU : Exception condition "TYPE_NOT_FOUND" raised.

The error occurred on the application server utsrmapp_SRU_01 and in the work process 0 .

The termination type was: RABAX_STATE

The ABAP call stack was:

Method: DESCRIBE_BY_NAME of program CL_ABAP_TYPEDESCR=============CP

Error code: ICF-IE-http -c: 100 -u: SKUMAR -l: E -s: SRU -i: utsrmapp_SRU_01 -w: 0 -d: 20070604 -t: 113425 -v: RABAX_STATE -e: RAISE_EXCEPTION

<u><b>st22:</b></u>

Error analysis

A RAISE statement in the program "CL_ABAP_TYPEDESCR==========

exception

condition "TYPE_NOT_FOUND".

Since the exception was not intercepted by a superior

program, processing was terminated.

Short description of exception condition:

For detailed documentation of the exception condition, use

Transaction SE37 (Function Library). You can take the called

function module from the display of active calls.

If the error occures in a non-modified SAP program, you may be able to

find an interim solution in an SAP Note.

If you have access to SAP Notes, carry out a search with the following

keywords:

"RAISE_EXCEPTION" " "

"CL_ABAP_TYPEDESCR=============CP" or "CL_ABAP_TYPEDESCR=============CM001"

"DESCRIBE_BY_NAME"

or

"CL_ABAP_TYPEDESCR=============CP" "TYPE_NOT_FOUND"

or

"SAPMHTTP " "TYPE_NOT_FOUND"

If you cannot solve the problem yourself and want to send an error

notification to SAP, include the following information:

Source Code Extract

Line SourceCde

53 read table admin_tab from admin_tab_line into admin_tab_line.

54 if sy-subrc = 0.

55 p_descr_ref ?= admin_tab_line-ref->get( ).

56 if p_descr_ref is bound.

57 return.

58 endif.

59 delete table admin_tab from admin_tab_line.

60 endif.

61 * create new descr object

62 case admin_tab_line-kind.

63 when kind_elem.

64 raise event create_elemdescr

65 exporting xtype = admin_tab_line-xtype.

66 when kind_ref.

67 raise event create_refdescr

68 exporting xtype = admin_tab_line-xtype.

69 when kind_struct.

70 raise event create_structdescr

71 exporting xtype = admin_tab_line-xtype.

72 when kind_table.

73 raise event create_tabledescr

74 exporting xtype = admin_tab_line-xtype.

75 when kind_class.

76 raise event create_classdescr

77 exporting xtype = admin_tab_line-xtype.

78 when kind_intf.

79 raise event create_intfdescr

80 exporting xtype = admin_tab_line-xtype.

81 when others.

82 * all others are erros

>>>>> raise type_not_found.

84 endcase.

85 endcase.

86

87 create object admin_tab_line-ref exporting oref = returning_ref.

88 insert admin_tab_line into table admin_tab.

No error in transport log.

Pls help me out regarding this issue.

Regards,

Kumar S

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Perhaps there is a data error. Check your table admin_tab to see what values are being stored there in production. You're getting an error due to an unexpected value in admin_tab_line-kind. If you can't easily get to the data in the table, try debugging your program by placing a break point in the code just before your CASE statement. Then when it hits that break point, check the values in admin_tab. I hope this helps.

- April King