‎2007 Jul 05 7:57 AM
Hi,
I want to display purchase document(EBELN) as select-option field starting with value '0049'.How can i do this?
Regards,
Hema
‎2007 Jul 05 7:59 AM
Hi
you can initialize the value in INITIALIZATION event block.
sel_opt-low = '09'.
append sel_opt.
Regards,
Sumit
‎2007 Jul 05 8:01 AM
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
‎2007 Jul 05 8:01 AM
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
‎2007 Jul 05 8:03 AM
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
‎2007 Jul 05 8:04 AM
Hi,
u can do like this..
select-options:s_ebeln for w_ebeln default 0049.
Reward if helpful.
Karthick.
‎2007 Jul 05 8:05 AM
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
‎2007 Jul 05 8:14 AM
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.
‎2007 Jul 05 9:41 AM
Hi
U can do select-options:ebeln for ekko-ebeln default '0049'.
‎2007 Jul 05 10:38 AM
Hi Hema,
This code will help you,
TABLES:EBAN.
SELECT-OPTIONS EBELN FOR EBAN-EBELN DEFAULT '0049' TO '0080'.
IF USEFULL REWARD