‎2007 Oct 01 11:02 AM
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
‎2007 Oct 01 3:17 PM
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
‎2007 Oct 01 3:30 PM
Hi,
You selected more than 1 Radio button in a Single Group ... Just select only 1 Radio button in a single group
Regards
Sudheer
‎2007 Oct 08 1:17 PM