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-options

Former Member
0 Likes
644

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
618

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

4 REPLIES 4
Read only

Former Member
0 Likes
619

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

Read only

Former Member
0 Likes
618

let so_basrt be ur select option and pr_basrt be your variable

pr_basrt = so_basrt-low.

ll meet ur requirement.

Read only

Former Member
0 Likes
618

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

Read only

Former Member
0 Likes
618

thanks point has been given