Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ABAP 0.29 KB | None | 0 0
  1. REPORT  ZKA718.
  2.  
  3. DATA: ls_cars TYPE ZKACARS18,
  4.       lt_cars TYPE STANDARD TABLE OF ZKACARS18.
  5.  
  6. SELECT SINGLE * FROM ZKACARS18 INTO ls_cars WHERE SPZ = 'SK003KE'.
  7.  
  8. SELECT * FROM ZKACARS18 INTO TABLE lt_cars.
  9.  
  10. DELETE ZKACARS18 WHERE SPZ = 'SK002KE'.
  11.  
  12. INSERT ls_cars INTO ZKACARS18.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement