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

selet-options

Former Member
0 Likes
532

hi to all,

can i write select-option like this to redude the charecters in output screen

S_vkbur FOR VBAK-vkbur(2) the length of vkbur is 4 but iam taking 2 only can write the select-option as mentioned above.

Thanks&Regards

Kranthi Revuri.

hi to all,

can i write select-option like this to redude the charecters in output screen

S_vkbur FOR VBAK-vkbur(2) the length of vkbur is 4 but iam taking 2 only can write the select-option as mentioned above.

Thanks&Regards

Kranthi Revuri.

3 REPLIES 3
Read only

Former Member
0 Likes
494

Hello,

Instead u can declare like this

data: vkbur(2) type c.

select-options: S_vkbur for vkbur.

If useful rewadr points.

Vasanth

Message was edited by: Vasanth M

Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
494

I don't think that you can do that. You can do something like this instead.


data: vkbur(2) type c.

select-options: S_vkbur FOR vkbur.

Regards,

Rich Heilman

Read only

Former Member
0 Likes
494

Hello Kranthi,

You can reduce the number of characters in the output screen like this..

Select-options s_vkbur for vbak-vkbur visible length 2.

REWARD IF HELPS.

Thanks,

krishna