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

SCAT Error

Former Member
0 Likes
617

ShrtText

More than one radio button is active.

What happened?

The current screen processing was terminated, since a situation

occurred from which it could not continue processing.

This is probably due to an error in the current screen of the ABAP

program.

The system determined that more than one radio button was selected

as it was trying to prepare screen display for screen "SAPICCTW" 0100.

What can you do?

Make a note of the actions and input which caused the error.

To resolve the problem, contact your SAP system administrator.

You can use transaction ST22 (ABAP Dump Analysis) to view and administer

termination messages, especially those beyond their normal deletion

date.

Error analysis

Only one field may be selected in each group of radio buttons

(value 'X').

If this is not the case, on of the following situations occurs:

a.) Multiple fields in the group are selected at the same time.

This is an error and the application is terminated and the current

short dump displayed.

b.) No field is selected in the group.

In this case, the system sets the first radio button of the group

as a default value. This may be an irresponsible way to program,

however, no error is generated.

How to correct the error

In this case, the selection field in question is:

"XSTAT_2"

from screen

"SAPICCTW" 0100 .

Another field (or multiple fields) is/are selected in the corresponding

group of radio buttons.

Application program

"SAPICCTW"

needs to be corrected so that only one radio button is set in each

group (selected = value 'X'). Fields that are not selected have the

value SPACE.

Message was edited by:

Christopher Jansz

3 REPLIES 3
Read only

franois_henrotte
Active Contributor
0 Likes
568

I guess you submit program SAPICCTW from an external point and you specify X_STAT2 = 'X' ?

If this is the case, you should also specify X_STAT1 = ' ' because default value of this parameter is set to 'X'

If not the case, explain a little bit more the context

Read only

Former Member
0 Likes
568

Hi,

You selected more than 1 Radio button in a Single Group ... Just select only 1 Radio button in a single group

Regards

Sudheer

Read only

Former Member
0 Likes
568

the ABAP team solved it... no idea how