‎2006 Jun 29 11:23 AM
the scenario is:
i have got a table control with three columns like "Est mat cost var $", "Act mat cost var $",
"Est labr cost var $".
these columns are declared with 2 decimal places. by default the values for these columns in the respective table is 0.00. when the user enters values like
"1.00" "0.00" "No-values" for the respective columns
then on the ouptut the values are shown as
"1.00" "0.00" "0.00"
but the requirement is whatever the values the user gives in the input field of the table control, the same values should be shown on the output also.
i.e., "1.00" "0.00" "No-Values"
what are the steps to be taken such that the problem can be resolved.
kindly consider this as high priority.
eagerly waiting for the replies soon.
Regards,
Ajay
‎2006 Jun 29 11:27 AM
Hi,
if those 3 fields are of type P , F or I , even if you dont enter any value , it takes the initial value. i.e 0.
So make those fields as of type char. So what ever u enter it will be reflected.
Hope this solves your issue.
Regards,
Madan..
‎2006 Jun 29 11:30 AM
Hi Ajay,
Declare the field 'Est labr cost var $'as char type or else use no_zero if possible.
regards,
Kiran B
‎2006 Jun 29 11:37 AM
in screen painter -> see the attibutes of that field and change the format option and check with various selections.
or
decalre that field tyoe as it is declared in the database table..
Regards,
Ramesh.