Application Development 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: 

How should I declare my select-options for this?

Former Member
0 Kudos

In select-options. We need to put a table field like this.

SELECT-OPTIONS so_VTWEG FOR WA_VBAK-VTWEG.

If I have a field like this

STATUS(1) TYPE C

How should I declare my select-options?

Moderator message : Not enough re-search before posting, discussion locked.

Message was edited by: Vinod Kumar

1 REPLY 1

Former Member
0 Kudos

Hi

Declare a variable like

Data : V_ststus type c.

Select-options : s_status for v_status.

Thanks

Chandra