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: 

how to input alpha numerics for a customer p.o in the from and to ranges

Former Member
0 Kudos

customer p.o "from" "to " range where alpha numeric are inputted

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

Whats the issue. Can u clarify it.

As if u are trying to input Alphanumerics in the selection screen field of ur Report program then u need not do much.

Just define a select-option for Po as follows :

Tables : EKKO.

Select-options : S_EBELN FOR EKKO-EBELN.

This will give u an input field on the screen where u can enter To and From range.

Regards,

Himanshu

3 REPLIES 3

Former Member
0 Kudos

Hi,

Whats the issue. Can u clarify it.

As if u are trying to input Alphanumerics in the selection screen field of ur Report program then u need not do much.

Just define a select-option for Po as follows :

Tables : EKKO.

Select-options : S_EBELN FOR EKKO-EBELN.

This will give u an input field on the screen where u can enter To and From range.

Regards,

Himanshu

Former Member
0 Kudos

Hi Ram,

Firstly u clear up ur question,i does not sounds good.

and if u want to give 'to' & 'from' condition then simply u will try select-option.

Reward if useful.

Thanks

Sanket.

Former Member
0 Kudos

here you have to use the <b> alpha to numeric conversion as input or ou</b>tput


select-options:   s_eblen  for ekko-eblen

CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
    EXPORTING
      input  = s_eblen-low 
    IMPORTING
      output = g_count1-low.

<b>OR</b>

CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
    EXPORTING
      input  = s_eblen-low 
    IMPORTING
      output = g_count1-low.

reward points if it is usefull ...

Girish