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

abap

Former Member
0 Likes
398

i want to check how much stock is there for particular material how to write select statement

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
372

select LABST

into w_LABST

from mard

where matnr eq ??

and werks eq ??

and lgort eq ??.

2 REPLIES 2
Read only

FredericGirod
Active Contributor
0 Likes
372

Select <column name> into <field name> from <table name> where <conditions>.

replace with the good values

FRED

ps: RTFM

Read only

Former Member
0 Likes
373

select LABST

into w_LABST

from mard

where matnr eq ??

and werks eq ??

and lgort eq ??.