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

Oops: Sort Dump

Former Member
0 Likes
726

Dear All,

i have created one program which is Oops based.

Program is based on Tree Diagram with container.

program is running successfuly, but in some cases dump is occured.

i have sending the Error Analysis:

plz. help me, i m new in Oops

**Error analysis**

Short text of error message:

Control Framework : Error processing control

Long text of error message:

Diagnosis

An error occurred when the system tried to process the commands

from the Automation Queue on the presentation server.

There are several possible reasons for this:

- The installation of the SAP GUI on the presentation server is

faulty or obsolete.

- There is an error in the application program

- There is an error in the SAPGUI or an integrated control

Procedure

1. Make sure that you have imported the appropriate Support

Package, the current kernel, and GUI patch for the release of your

system

2. Check whether the error occurs locally on one or a few PCs, or

generally on all PCs. Note whether the error only occurs for some

users, for example because of a specific Customizing setting.

If it only occurs locally, this suggests an installation problem

with the PC. Check the installation; if necessary, reinstall the

software. In the dump, search for the SY-MSGLI field, since it may

point to the cause of the error.

3. Activate the Automation Trace (in accordance with SAP Note

158985).

4.Start the transaction and continue until the screen immediately

before the dump.

5. From the System -> Utilities menu, choose Autom. Queue,

Synchronous Processing.

The status bar of the GUI displays the text:

"Automation synchron flush mode on"

6. If you now proceed with the application, the short dump will

display the ABAP call that caused the error; the Automation Trace

will contain the error on the presentation server.

7. If necessary, load the short dump and trace files on to

sapservX, so that SAP can analyze them.

Technical information about the message:

Message class....... "CNDP"

Number.............. 006

Variable 1.......... " "

Variable 2.......... " "

How to correct the error

Probably the only way to eliminate the error is to correct the program.

-

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:

"MESSAGE_TYPE_X" " "

"SAPLOLEA" or "LOLEAU02"

"AC_SYSTEM_FLUSH"

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

notification to SAP, include the following information:

1. The description of the current problem (short dump)

To save the description, choose "System->List->Save->Local File

(Unconverted)".

2. Corresponding system log

Display the system log by calling transaction SM21.

Restrict the time interval to 10 minutes before and five minutes

after the short dump. Then choose "System->List->Save->Local File

(Unconverted)".

3. If the problem occurs in a problem of your own or a modified SAP

program: The source code of the program

In the editor, choose "Utilities->More

Utilities->Upload/Download->Download".

4. Details about the conditions under which the error occurred or which

actions and input led to the error.

FUNCTION AC_SYSTEM_FLUSH .

*"----


""Lokale Schnittstelle:

*" IMPORTING

*" VALUE(CALLED_BY_SYSTEM) TYPE C OPTIONAL

*" EXCEPTIONS

*" CNTL_SYSTEM_ERROR

*" CNTL_ERROR

*"----


data: sysubrc like sy-subrc.

CALL FUNCTION 'AC_FLUSH_CALL'

EXPORTING

SYSTEM_FLUSH = 'X'

CALLED_BY_SYSTEM = CALLED_BY_SYSTEM

IMPORTING

MESSAGE_NR = sysubrc

MESSAGE_TEXT = SY-MSGLI.

sy-subrc = sysubrc.

CASE SY-SUBRC.

WHEN 0.

WHEN 1.

  • system_error

MESSAGE ID 'CNDP' TYPE 'X' NUMBER 007 RAISING CNTL_SYSTEM_ERROR.

WHEN 2.

  • method_call_error

MESSAGE ID 'CNDP' TYPE 'X' NUMBER 006 RAISING CNTL_ERROR.

WHEN 3.

  • property_set_error

MESSAGE ID 'CNDP' TYPE 'X' NUMBER 006 RAISING CNTL_ERROR.

WHEN 4.

  • property_get_error

MESSAGE ID 'CNDP' TYPE 'X' NUMBER 006 RAISING CNTL_ERROR.

WHEN OTHERS.

RAISE CNTL_ERROR.

ENDCASE.

ENDFUNCTION.

Edited by: Anshuman Singh on Nov 13, 2008 9:57 AM

Edited by: Anshuman Singh on Nov 13, 2008 9:58 AM

3 REPLIES 3
Read only

Former Member
0 Likes
545

How did U solved it?

Read only

Former Member
0 Likes
545

Hello togehter,

i have the same problem while working with gui simple tree! How did you solved it?

Does anyboday has any ideas to handle this 'AC_FLUSH_CALL' problem?

Thx a lot,

Marcel

Read only

0 Likes
545

Hi,

ya i solved this problem.

Due to unique key for tree not generated correctly or duplicate Unique Key is Generated.

Plz check with debugger where u generate the unique key for tree.

Bye.