Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

smartforms

Former Member
0 Kudos

how can we supress the leading zero's for a field/page no in smart forms?

1 ACCEPTED SOLUTION

Former Member
0 Kudos

i think we can use formatting option (Z)...like field(z)

4 REPLIES 4

Former Member
0 Kudos

i think we can use formatting option (Z)...like field(z)

Former Member
0 Kudos

Hi

See Below....

Write the field as it_mara-matnr(I)

I supresses the initial values.,

Try This..

reward All Helpfull Answers..........

Former Member
0 Kudos

Hi,

use the fm conversion_exit_alpha_output in the driver prgm,then leading zeroes will be supressed.

First pass the field name to this fm and after that print the field in form.

plz reward if useful.

regards,

lakshmi.

Former Member
0 Kudos

Hi

<b>conversion_exit_alpha_output</b>

ALPHA conversion is used especially with account numbers. During conversion from the external to the internal format, the system checks to see if input in the INPUT field is purely numeric, that is, if this input consists only of numbers, possibly with spaces before and after them. If this is the case, then the number string is inserted right- justified in the display field OUTPUT and all spaces to the left of the value are filled with zeroes ('0'). If the input is not purely numeric, it is inserted in the display field from left to right and all extra spaces are filled with blanks.

Example:

(Input field and output field are both eight characters in length)

1. '1234 ' --> '00001234'

2. 'ABCD ' --> 'ABCD '

3. ' 1234 ' --> '00001234'

Conversion from the internal to the external format (function module CONVERSION_EXIT_ALPHA_OUTPUT) is undertaken in exactly the opposite manner.

<b>CONVERSION_EXIT_ALPHA_INPUT</b>

vice versa for CONVERSION_EXIT_ALPHA_OUTPUT.

reward points if helpful,

Regards

Raghunath.S