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

Value before IEQ

former_member242166
Participant
0 Likes
1,456

Hi experts,

i have a field company code (s_bukrs FOR bsik-bukrs OBLIGATORY DEFAULT '1000').

My company code is 1000 only.. But it shows like IEQ1000. Why this IEQ is coming before the 1000. I dont want this IEQ. I want only 1000.

I hope u can help me friends. Thanks in Advance.

Regards,

Linganthan.

Moderator message: very basic, please search for information before posting.

Message was edited by: Thomas Zloch

Hi experts,

i have a field company code (s_bukrs FOR bsik-bukrs OBLIGATORY DEFAULT '1000').

My company code is 1000 only.. But it shows like IEQ1000. Why this IEQ is coming before the 1000. I dont want this IEQ. I want only 1000.

I hope u can help me friends. Thanks in Advance.

Regards,

Linganthan.

Moderator message: very basic, please search for information before posting.

Message was edited by: Thomas Zloch

4 REPLIES 4
Read only

Former Member
0 Likes
933

Hi

use CONVERSION_EXIT_ALPHA_INPUT .

Regards

Ajit

Read only

0 Likes
933

Can you please explain about that?

Read only

RaymondGiuseppi
Active Contributor
0 Likes
933

(Basic/FAQ) Read the Abap documentation for the definition of RANGES or SELECT-OPTIONS this is a structure, your value is in subfield LOW.

(LOOP AT s_bukrs. and use s_bukrs-low)

Regards,

Raymond

Read only

Former Member
0 Likes
933

ranges bukrs for bsis-bukrs.
at selection-screen.
    bukrs-sign = 'I'.
    bukrs-option = 'EQ'.
    bukrs-low = '1000'
.   or your can use s_bukrs-low
    append bukrs.

now in your report you can use bukrs insted of s_burks.