2009 Jan 09 9:13 AM
Dear all,
I have developed a modal dialog screen and succesfully invoked it with CALL SCREEN command in the main screen. Unfortunately, it always returns "Invalid field format (screen error)" when clicking on the dialog's GUI control such as button or radio button. Anyone encountered this before??
Regards,
KK
2009 Jan 09 9:18 AM
hello KK
this error for invalid field format comes when there is a mismatch betwwn the datatypes of the screen elements and the variables taken in abap for that element .
For that check the datatype of the screen element from its properties and change it to the type you wanted for that variable.
both the datatypes should be same for that variable.
hope this helps.
geeta gupta
Dear all,
I have developed a modal dialog screen and succesfully invoked it with CALL SCREEN command in the main screen. Unfortunately, it always returns "Invalid field format (screen error)" when clicking on the dialog's GUI control such as button or radio button. Anyone encountered this before??
Regards,
KK
2009 Jan 09 9:18 AM
hello KK
this error for invalid field format comes when there is a mismatch betwwn the datatypes of the screen elements and the variables taken in abap for that element .
For that check the datatype of the screen element from its properties and change it to the type you wanted for that variable.
both the datatypes should be same for that variable.
hope this helps.
geeta gupta
2021 Feb 23 10:26 PM
An answer coming from 12 years ago and from a former member, saved my hours. Thank you!
2009 Jan 09 9:18 AM
Hi,
You might have input fields longer than what it is supposed to be.
2009 Jan 09 9:19 AM
Hi,
You might have input fields longer than what it is supposed to be.
2009 Jan 09 9:21 AM
Hi KK,
Just make sure that the fields take on the screen are also declared in the top module of your program.
And also match their data-types and size i.e., declared in top module and on the screen in their respective attributes.
Hope this solves your problem.
Thanks & Regards,
Tarun Gambhir
2009 Jul 24 4:43 AM
Hi,
I have faced a similar situation.
I was trying to create a radio button group with 2 buttons.
mistake i was doing is i was putting the name as RAD1 & 2 .
then what i have done is i hae created two data type
RAD1 like table name- fieldname (of char 1)
RAD2 like table name- fieldname (of char 1).
and have used them in my radio buttons.
2009 Aug 01 1:18 PM
i ALSO FACED SAME PROBLEM ..
and I also define
DATA: INPUT1(80) type c.
Thanks to all.
2009 Nov 26 5:47 AM
HI KK,
Specify Ur filed data type in the Programm also.
With BEst Regards,
Rajesh S
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |