‎2008 Feb 15 9:04 AM
in select option i want to assigne it to different variable but when i use it it show following
pr_basrt = IEQZFNB
i dont want like this,
I want it shoudl be
pr_basrt = ZFNB
how to remove IEQ from it.
Thanks in advanc.
Point is assurd
‎2008 Feb 15 9:08 AM
Just assign the low to pr_basrt
then U'll get ZFNB ..
if p_basrt is your select option ..
then pr_basrt = p_basrt-low ...
‎2008 Feb 15 9:08 AM
Just assign the low to pr_basrt
then U'll get ZFNB ..
if p_basrt is your select option ..
then pr_basrt = p_basrt-low ...
‎2008 Feb 15 9:09 AM
let so_basrt be ur select option and pr_basrt be your variable
pr_basrt = so_basrt-low.
ll meet ur requirement.
‎2008 Feb 15 9:11 AM
hi,
Declare intrnal table with
signn(1),
option(2),
low(3),
high(3),
fields...
loop at s_opt into s_opt.
append s_opt to i_tab.
endloop.
u will be having all the values in ur internal table in the respective fields...
u can assign ur low and high values to any variables/...
i hope it servs u...
Regards...........
‎2008 Feb 15 9:13 AM