Application Development and Automation 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: 
Read only

Report - Remove 0's

Former Member
0 Likes
1,137

Hi,

In My Report, I am facing a problem regarding leading 0's...means in LFA1 table, i can find vendor no. easily like 10120 but in WITH_ITEM table, when i m inserting vendor no. like 10120, it not shows the data...but when i inserting vendor no. "0000010120", it shows the values.

From this, my report not showing the vendor data..

Plz tell me how can i remove this issue..

Any code there or any other thing is required..

Thanks...

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,062

Hello

Please use FM's

CONVERSION_EXIT_ALPHA_INPUT

CONVERSION_EXIT_ALPHA_OUTPUT

Thanks and Regards

Pushkar Joshi

Hi,

In My Report, I am facing a problem regarding leading 0's...means in LFA1 table, i can find vendor no. easily like 10120 but in WITH_ITEM table, when i m inserting vendor no. like 10120, it not shows the data...but when i inserting vendor no. "0000010120", it shows the values.

From this, my report not showing the vendor data..

Plz tell me how can i remove this issue..

Any code there or any other thing is required..

Thanks...

9 REPLIES 9
Read only

former_member585060
Active Contributor
0 Likes
1,062

CONVERSION_EXIT_ALPHA_INPUT

CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'

EXPORTING

input = I_LIFNR

IMPORTING

OUTPUT = I_LIFNR.

Edited by: Bala Krishna on Aug 20, 2008 4:54 PM

Read only

Former Member
0 Likes
1,062

Use conversion_exit_alpha_input.

Edited by: shilpi agarwal on Aug 20, 2008 1:23 PM

Read only

Former Member
0 Likes
1,062

Hi,

U can use FM conversion_exit_alpha_input for convert your input lifnr.

Read only

sachin_mathapati
Contributor
0 Likes
1,062

Hi ,

Use this Fm

CONVERSION_EXIT_ALPHA_INPUT

Regards,

Sachin M M

Read only

Former Member
0 Likes
1,063

Hello

Please use FM's

CONVERSION_EXIT_ALPHA_INPUT

CONVERSION_EXIT_ALPHA_OUTPUT

Thanks and Regards

Pushkar Joshi

Read only

Former Member
0 Likes
1,062

Hi,

Fill with leading zeros.

call function 'CONVERSION_EXIT_ALPHA_INPUT'

exporting

input = lifnr "Whitout leading zeros

importing

output = out "lifnr with leading zeros.

regards

Jaime

Read only

Former Member
0 Likes
1,062

Hi,

Use the CONVERTION_EXIT_ALPHA_INPUT fonction module.

Regards,

Sathish Reddy.

Read only

Former Member
0 Likes
1,062

Hi,

Use this Fm : 'CONVERSION_EXIT_ALPHA_INPUT'.That will solve ur issue.

CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'

EXPORTING

INPUT = VENDOR NO

IMPORTING

OUTPUT = VENDOR NO

.

Hope it is helps.

Regards,

T.D.M.

Read only

Former Member
0 Likes
1,062

Hi ,

Try this.

CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'

EXPORTING

input = ws_vendorno

IMPORTING

output = ws_vendorno.

Regards,

Chitra