cancel
Showing results for 
Search instead for 
Did you mean: 

Define minu symbol in smartform

Former Member
0 Kudos

how to define a minus symbol in forms and do necessary calculation either addtion or substraction or both?

Accepted Solutions (1)

Accepted Solutions (1)

koolspy_ultimate
Active Contributor
0 Kudos

Hi,

for calculations you need to write your code in smartform editor or in your driver program.

i suggest you to use driver program and you can display '-' symbol also.

Regards,

koolspy.

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Use Program lines and give your req parameters as input(which you need to calculate) and resultant variable as output in it.

write normal abap coding inside the Program lines.

for eg. lv_result = wa_field1 - wa_field2.

Jshree