2008 Jan 09 6:11 AM
hi ranges in new sap
i found the way we code ranges is obsolete
i have s_date select options on screen
i want to retrieve is in an internal table. advise please
2008 Jan 09 6:35 AM
Hi,
Ex:
select-options : s_date for sy-datum.
ranges: sr_date for sy-datum.
sr_date[[] = s_date[[].
Ex:
select-options : s_date for sy-datum.
DATA: BEGIN OF sr_date OCCURS 10,
SIGN(1),
OPTION(2),
LOW LIKE f,
HIGH LIKE f,
END OF sel.
sr_date[[] = s_date[[].
hi ranges in new sap
i found the way we code ranges is obsolete
i have s_date select options on screen
i want to retrieve is in an internal table. advise please
2008 Jan 09 6:25 AM
Hai,
Just chek it.
REPORT ZTEST111111.
data : begin of i_dat,
dat type date,
end of i_dat.
select-options s_date for i_dat-dat.
i_dat is internal table ans s_date is variable shown on the screen.Execute it.it may help u.
With Regards.
B.sowjanya
2008 Jan 09 6:35 AM
Hi,
Ex:
select-options : s_date for sy-datum.
ranges: sr_date for sy-datum.
sr_date[[] = s_date[[].
Ex:
select-options : s_date for sy-datum.
DATA: BEGIN OF sr_date OCCURS 10,
SIGN(1),
OPTION(2),
LOW LIKE f,
HIGH LIKE f,
END OF sel.
sr_date[[] = s_date[[].
2008 Jan 09 7:13 AM
Hi
how do you delete internal table with data in a select option
selection screen
select-option: s_budat
2008 Jan 09 7:16 AM
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |