‎2009 Jan 16 12:39 PM
Dear Expert,
I am getting runtime error while using J2IUN,
In Aug08 & Sep 08 I have some Excise value which is suppose to pay to government, for that i am using J2IUN, inside the J2IUN transaction when i am selecting ECS duties screen & clicking select duty tab ,system is throwing following error.
please help me to resolve this error.
With Regards
Manoj Singh
Runtime Errors DYNPRO_FIELD_CONVERSION
Date and Time 16.01.2009 17:03:25
Short text
Conversion error
What happened?
The current screen processing action was terminated since a situation
occurred where the application could not continue.
This is probably due to an error in the ABAP program or in the current
screen.
Error analysis
The program has been interrupted and cannot resume.
Program "J_1IRUTZN" attempted to display fields on screen 9000.
An error occurred during the conversion of this data.
Trigger Location of Runtime Error
Program J_1IRUTZN
Include J_1IUPBON
Row 142
Module type (MODULE PBO)
Module Name UTIL_CONTROL_CHANGE_TC_ATTR
Source Code Extract
Line SourceCde
112
113 ENDMODULE. " fill_disptab1 OUTPUT
114 &----
115 *& Module fill_util_rules OUTPUT
116 &----
117 * text
118 -
119 MODULE fill_util_rules OUTPUT.
120 if rules is initial.
121 perform fill_util_rules.
122 endif.
123
124 ENDMODULE. " fill_util_rules OUTPUT
125 &----
126 *& Module fill_screen_values OUTPUT
127 &----
128 * text
129 -
130 MODULE fill_screen_values OUTPUT.
131
132 PERFORM fill_util_table.
133 PERFORM set_screen_values.
134
135 ENDMODULE. " fill_screen_values OUTPUT
136
137 *&spwizard: output module for tc 'UTIL_CONTROL'. do not change this
138 *line!
139 *&spwizard: update lines for equivalent scrollbar
140 module UTIL_CONTROL_change_tc_attr output.
141 describe table UTIL1 lines UTIL_CONTROL-lines.
endmodule.
143
144 *&spwizard: output module for tc 'DUTIES'. do not change this line!
145 *&spwizard: update lines for equivalent scrollbar
146 module DUTIES_change_tc_attr output.
147 describe table PAYABLE lines DUTIES-lines.
148 endmodule.
149 &----
150 *& Module DUTIES_change_field_attr OUTPUT
151 &----
152 * text
153 -
154 MODULE DUTIES_change_field_attr OUTPUT.
155
156 if payable-amt = payable-pmnt.
157 payable-icon = ICON_GREEN_LIGHT.
158 else.
159 payable-icon = ICON_RED_LIGHT.
160 endif.
161 if payable-row = tcntr.
‎2009 Jan 16 12:48 PM
You might be moving some char data to a numeric field. Please check.
Make sure the field UTIL_CONTROL-lines is integer type.
data gv_lines type i.
describe table UTIL1 lines gv_lines.regards,
Jinson