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

select-option

Former Member
0 Likes
1,310

Hi,

I want to display purchase document(EBELN) as select-option field starting with value '0049'.How can i do this?

Regards,

Hema

9 REPLIES 9
Read only

Former Member
0 Likes
1,073

Hi

you can initialize the value in INITIALIZATION event block.

sel_opt-low = '09'.

append sel_opt.

Regards,

Sumit

Read only

Former Member
0 Likes
1,073

Hi..,

tables ekpo.

select-options s_ebeln for ekpo-ebeln default '0049'.

*******************************************************

tables ekpo.

select-options s_ebeln for ekpo-ebeln default '0049' to '0059'.

reward all helpful answers !!

regards,

sai ramesh

Read only

Former Member
0 Likes
1,073

hi

use the following in selection screen

<b>SELECT-OPTIONS: ebeln FOR ekpo-ebeln default '0049' .</b>

reward points if helpful

regards

Aarti

Message was edited by:

Aarti Dhingra

Read only

Former Member
0 Likes
1,073

Hi,

U can do like this.

SELECT-OPTIONS: EBELN FOR EKKO_EBELN [OPTIONS].

INITIALIZATION

EBELN-SIGN = 'I'.

EBELN-OPTIONS = 'EQ'.

EBELN-LOW = '0049'.

APPEND EBELN.

Thanks & Regards

Santhosh

Read only

Former Member
0 Likes
1,073

Hi,

u can do like this..

select-options:s_ebeln for w_ebeln default 0049.

Reward if helpful.

Karthick.

Read only

Former Member
0 Likes
1,073

Hi hema,

try this:

tables: ekko.

*

select-options: s_ebeln for ekko-ebeln.

*

initialization.

*

s_ebeln-sign = 'I'.

s_ebeln-option = 'CP'.

s_ebeln-low = '0049*'.

append s_ebeln.

*

start-of-selection.

*

break-point.

*

end-of-selection.

regards, Dieter

Read only

Former Member
0 Likes
1,073

hi

u can do it in 2 ways.

1.select-options:ebeln for ekko-ebeln default '0049'.

2.SELECT-OPTIONS: EBELN FOR EKKO-EBELN .

INITIALIZATION.

EBELN-SIGN = 'I'.

EBELN-OPTION = 'EQ'.

EBELN-LOW = '0049'.

APPEND EBELN.

reward if useful.

Read only

Former Member
0 Likes
1,073

Hi

U can do select-options:ebeln for ekko-ebeln default '0049'.

Read only

Former Member
0 Likes
1,073

Hi Hema,

This code will help you,

TABLES:EBAN.

SELECT-OPTIONS EBELN FOR EBAN-EBELN DEFAULT '0049' TO '0080'.

IF USEFULL REWARD