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
852

Hi,

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

Regards,

Hema

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
824

Even this is also good in single line code

tables: ekko.

SELECT-OPTIONS S_EBELN FOR ekko-ebeln DEFAULT '0049' SIGN I.

reward points if it is usefull ....

Girish

9 REPLIES 9
Read only

Former Member
0 Likes
824

tables: ekko.

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

Read only

Former Member
0 Likes
824

hi,

By using MEMORY ID pid u can do this.

Read it..

... DEFAULT g TO h Effect

Proposes the range from g to h when the report is called.

... MEMORY ID pid Effect

On the selection screen, the SET/GET ID pid is assigned to the left range limit of the selection criterion. Note

You must specify the memory ID without quotation marks. It can be up to 3 characters long.

Reward if useful.

Regards,

Swati Garg

Read only

Former Member
0 Likes
824
tables : vfkp.

select-options : s_ebeln for vfkp-ebeln.

initialization.

s_ebeln-sign = 'I'.
s_ebeln-option = 'BT'.
s_ebeln-low = '0049'.
append s_ebeln.

Message was edited by:

Chandrasekhar Jagarlamudi

Read only

Former Member
0 Likes
824

Hi,

SELECT-OPTIONS S_EBELN FOR mseg-ebeln DEFAULT '0049'

OPTION GE SIGN I.

Hope this helps.

Reward if helpful.

Regards,

Sipra

Read only

Former Member
0 Likes
824

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'.

<b>

Please do rememeber to close your threads when ur problem is solved !!

reward all helpful answers !!</b>

regards,

sai ramesh

Read only

Former Member
0 Likes
824

TABLES: EKKO.

SELECT-OPTIONS: S_EBELN FOR EKKO-EBELN VALUE '0049'.

REGARDS

PRADEEP

Read only

Former Member
0 Likes
824

hi,

try this,

tables ekpo.

select-options s_ebeln for ekpo-ebeln.

initilaization.

s_ebeln-low = '0049'.

append s_ebeln.

it works.

reward points if useful,

regards,

seshu.

Read only

Former Member
0 Likes
824
report zaseqa .
tables: ekko.

select-options: s_ebeln for ekko-ebeln .  "  default '0049'.

initialization.
s_ebeln-sign = 'I'.
s_ebeln-option = 'EQ'.
s_ebeln-low = '0049'.
  APPEND s_ebeln  TO s_ebeln .

reward points if it is usefull...

Girish

Read only

Former Member
0 Likes
825

Even this is also good in single line code

tables: ekko.

SELECT-OPTIONS S_EBELN FOR ekko-ebeln DEFAULT '0049' SIGN I.

reward points if it is usefull ....

Girish