‎2007 Mar 10 11:59 AM
Hi SDN,
I am getting a dump DYNPRO_FIELD_CONVERSION.
I have a screen parameter which is a currency field.I am putting a value '1.757.000,00-' to that screen parameter.In my internal table i am getting the value.But when i am transferring to the screen parameter,in my PBO i am getting this dump.
‎2007 Mar 10 12:26 PM
hi,
The field in the dynpro must be a different datatype than the field which is defined in the program itself. Please check that the field on the dynpro is the correct type or defined like its counterpart in the ABAP program.
regards,
pankaj singh
<b>********Reward with points if helpful</b>
‎2007 Mar 10 5:50 PM
Hi,
You get the dump when the default format defined for currency field is different from the format that is being uploaded . First check the default format for decimals in your user data (can check it from su01d) and then change the format of the field that is being filled .
Regards,
Sowmya.
‎2007 Mar 10 10:48 PM
Hi,
need a dynpro field with a domain with the SIGN attribute flagged. Although negative values can be stored and processed, they can not be used on dynpro screen field if the field has no SIGN.
Take another data element, like i.e. BETRW.
Regards,
Clemens
‎2007 Mar 11 6:54 AM
At the very basic level, check if the screen field is big enough to accomodate this value, i have faced this problem in my project where i used to get a short dump if the value in the field is high whereby the space was not sufficient. I increased the size of the screen field and it just worked fine.I
‎2007 Mar 11 8:57 AM
Goto the domain of that screen field and checkout if the checkbox <b>SIGN</b> is checked or not, if not then use other dataelement where that checkbox is checked