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

Dump from FM AC_SYSTEM_FLUSH

Former Member
0 Likes
3,662

Hi All ,

We are creating a report in which we display Materials , inspection lot and few other information . We create a summary report ( ALV ) and a tree report ( list Hierarchical report ).

The Issue is when we run the program to display output in Hierarchical then the system goes to dump and the error comes from FM AC_SYSTEM_FLUSH ( Standard SAP ) .

We are using custom container to display data on our own screen . The program goes to dump as soon we leave PBO module i.e after ENDMODULE.

PBO Module Code :

MODULE status_0100 OUTPUT.

SET PF-STATUS 'MAIN'.

SET TITLEBAR 'TITLE_100' .

IF v_custom_container IS INITIAL.

*--- The Tree Control has not been created yet.

PERFORM create_and_init_tree.

ENDIF.

ENDMODULE.

i have checked that this issue is other users also so i rule out SAPGUI problem we all have same GUI . There are no duplicate records either , which someone suggested to remove .

Can anyone help me on this issue and advice why this Dump is coming ?

Below is the Dump Details :

Short text

The current application triggered a termination with a short dump.

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.

Hi All ,

We are creating a report in which we display Materials , inspection lot and few other information . We create a summary report ( ALV ) and a tree report ( list Hierarchical report ).

The Issue is when we run the program to display output in Hierarchical then the system goes to dump and the error comes from FM AC_SYSTEM_FLUSH ( Standard SAP ) .

We are using custom container to display data on our own screen . The program goes to dump as soon we leave PBO module i.e after ENDMODULE.

PBO Module Code :

MODULE status_0100 OUTPUT.

SET PF-STATUS 'MAIN'.

SET TITLEBAR 'TITLE_100' .

IF v_custom_container IS INITIAL.

*--- The Tree Control has not been created yet.

PERFORM create_and_init_tree.

ENDIF.

ENDMODULE.

i have checked that this issue is other users also so i rule out SAPGUI problem we all have same GUI . There are no duplicate records either , which someone suggested to remove .

Can anyone help me on this issue and advice why this Dump is coming ?

Below is the Dump Details :

Short text

The current application triggered a termination with a short dump.

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.

4 REPLIES 4
Read only

Former Member
2,624

Solved by mysellf.

Problem with program logic . Incorrect sequence of nodes were created .

Thanks ....

Read only

0 Likes
2,624

Dear Vikas.

Could you give me more information about how you has resolve that issue ?.

I've got the same problem with a Z program.

Thanks and king regards.

Read only

0 Likes
2,624

Dear Jose ,

You need to make sure that Hierarchy of the nodes that you build is correct. If we insert wrong nodes at wrong location i believe this dump will come.

Check your Nodes and see if Parent and Child relationship is maintained.

Regards

Vikas...

Read only

0 Likes
2,624

Dear Vikas.

Thanks for that. You are absolutely rigth on it, because the creation of nodes is not correct. Sometimes there are duplicated keys and that becomes to create a dump.

King regards.