Showing posts with label Use the selection criteria. Show all posts
Showing posts with label Use the selection criteria. Show all posts

Friday, November 23, 2007

Use the selection criteria in sap abap

SELECT * FROM SBOOK.                 
CHECK: SBOOK-CARRID = 'LH' AND
SBOOK-CONNID = '0400'.
ENDSELECT.
SELECT * FROM SBOOK                   
WHERE CARRID = 'LH' AND
CONNID = '0400'.
ENDSELECT.

Blog Archive