cancel
Showing results for 
Search instead for 
Did you mean: 

Zero fill and max length VC7 Compile to WebDynpro not working

0 Kudos

Hi,

i try to call Customer get list and set the attributes zero fill and max length to the input table form.

But the user has to put in the exact length and zero filled.

Any idea what to do

Thanks

Uwe

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Uwe,

if I understand your question you need something like an alpha conversion.

You can use a formula, therefore is an textfunction called LPAD(text,len,pad).

You can use it like this:

LPAD(@yourtext, 18, "0")

@yourtext contains the input, the length is 18 and filling values is 0 like a alpha conversion.

Best Regards,

Marcel