cancel
Showing results for 
Search instead for 
Did you mean: 

UI element with default value

Former Member
0 Kudos

background: ........ then bind the internal table to a node in the context, then display in IE.

here is my problem:

I want to display data which is not default value, for example: I don't want the value "0.00" to be displayed in UI, which has the type "P(12, 2)".

is there any resolution.....

Accepted Solutions (1)

Accepted Solutions (1)

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

Perhaps you need to supply some details here because I am unclear on what you are asking. Do you just not want the intial edit mask to display? In your example would just want the input field to be blank instead of 0.00?

Former Member
0 Kudos

yes, as you said, I just want to display blank instead of "0.00",

is there any way to achieve this?

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

You would probably have to create your own custom domain and then write a field conversion exit to acomplish such a task. You would be overriding the default output characteristics of the P data type.

http://help.sap.com/saphelp_nw70ehp1/helpdata/en/cf/21ee19446011d189700000e8322d00/frameset.htm

Answers (1)

Answers (1)

former_member226203
Active Contributor
0 Kudos

i guess one way is like to code it in such a way that..ON_LOAD chk if this particular cell of the component is having a value 0.If so clear it n make it blank or use field conversion here.Hope this helps.