‎2007 Mar 21 1:07 PM
Hi,
I need a Table or a Structure which will have the fields LOW HIGH SIGN and OPTION (the table/Structure will have only these 4 fields)
Regards
Sudheer
‎2007 Mar 21 1:12 PM
‎2007 Mar 21 1:12 PM
HI sudheer..
I think You want the same structure as select-options..
did you tried with Ranges..
if you declare any variable under Ranges then these variables will contain the same structure as select-options but these does n't have any relation with screens..
regards Rk
Message was edited by:
Rk Pasupuleti
‎2007 Apr 19 10:55 AM
Hi Pasupathi,
Can you please tell me how to use Ranges and how to populate data manually into the variables using ranges ? Urgent
‎2007 Apr 19 1:29 PM
Hi,
you can do like this using Ranges statement.
G/L Number Hard coded
RANGES : raw_mat FOR bseg-hkont,
wip_mat FOR bseg-hkont,
fin_mat FOR bseg-hkont.
*
raw_mat-sign = 'I'.
raw_mat-option = 'BT'.
G/L Number Hard coded
raw_mat-low = 0000000001.
raw_mat-high = 0000000002.
APPEND raw_mat.
*
wip_mat-sign = 'I'.
wip_mat-option = 'BT'.
G/L Number Hard coded
wip_mat-low = 0000000003.
wip_mat-high = 0000000004.
APPEND wip_mat.
*
fin_mat-sign = 'I'.
fin_mat-option = 'BT'.
G/L Number Hard coded
fin_mat-low = 000000005.
fin_mat-high = 0000000006.
APPEND fin_mat.
Hope it will work.
Regards,
-->Suresh
‎2007 Mar 21 1:12 PM
‎2007 Mar 21 1:14 PM
Hi sudheer,
You can get from table TZR96 , but there are some other fields also along with these , will search and let u know
‎2007 Mar 21 1:16 PM