cancel
Showing results for 
Search instead for 
Did you mean: 

Short dumps in Web Dynpro

Former Member
0 Kudos

Hi Experts,

Problem is:

We created an interactive form with web dynpro abap for one of our client and integrated it into portal sytem. We tested in our development system and it was working fine.

After go live we started getting following short dumps in the production system which we never got in our development system.

For some of the users it is working fine. Where as for some users following short dumps are coming. Is it some thing to do with adobe version the user has or any basis settings? Please suggest me.

Some users getting this error:

u201C$$$/com/adobe/document/xmlform/msg.XFA=Invalid version: The current version of the XFA template model exceeds the capability of Acrobat / Adobe Reader 7.0.5.u201D

1. ASSERTION_FAILED exception in method IF_WDR_UPDATE_SERVER_PEER_DATA~CLOSE_WINDOW of class CL_WDR_CLIENT_APPLICATION.

Error Analysis: The following checkpoint group was used: "No checkpoint group specified"

If in the ASSERT statement the addition FIELDS was used, you can find

the content of the first 8 specified fields in the following overview:

" (not used) "

" (not used) "

" (not used) "

" (not used) "

" (not used) "

" (not used) "

" (not used) "

" (not used) "

2. CX_WDR_RT_EXCEPTION exception in method ADD_VIEW_CONTROLLER of class CL_WDR_COMPONENT.

Error Analaysis:

An exception occurred which is explained in detail below.

The exception, which is assigned to class 'CX_WDR_RT_EXCEPTION', was not caught

and

therefore caused a runtime error.

The reason for the exception is:

Instance of the view WND_EXTENDED_OPTIONS already exists in component

3. OBJECTS_OBJREF_NOT_ASSIGNED exception in method IF_WDR_ADAPTER_EVENT_HANDLER~HANDLE_EVENT of CL_WDR_CONTEXT_MENU_HANDLER class

Error Analysis:

You attempted to use a 'NULL' object reference (points to 'nothing')

access a component (variable: " ").

An object reference must point to an object (an instance of a class)

before it can be used to access components.

Either the reference was never set or it was set to 'NULL' using the

CLEAR statement.

Error in the ABAP Application Program

The current ABAP program "CL_WDR_CONTEXT_MENU_HANDLER===CP" had to be

terminated because it has

come across a statement that unfortunately cannot be executed.

Please let me know what can be the issue and how to fix this at the earliest.

Thanks a lot in advance,

Regards,

Phani.

Accepted Solutions (1)

Accepted Solutions (1)

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

I think your answer is in this part of the error:

u201C$$$/com/adobe/document/xmlform/msg.XFA=Invalid version: The current version of the XFA template model exceeds the capability of Acrobat / Adobe Reader 7.0.5.u201D

That would lead me ot believe that you have some clients with Adobe Reader 7.0.5 - which is too old of a version.

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Shankar,

The NULL object ref error occurs when you try to use an object reference that has not been created.

For example : if you want to bind data to a node and write code some like this

lo_nd_table->bind_table( lt_table ).

if there is no instance of lo_nd_table availabe at this time the program will dump. to avoid this you can code some like this

if not lo_nd_table is initial.

lo_nd_table->bind_table( lt_table ).

endif.

just check ue code to see if any access is made to an obj ref which is not yet created. put a break point in ur code and debug to see where exactly it fails.

Thanks,

Abhishek