Created
October 17, 2014 15:34
-
-
Save EkremGungormez/2eb783b05107a7c0a07d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT * from mara INTO TABLE gt_mara WHERE matnr in s_matnr. | |
IF gt_mara[] IS NOT INITIAL. | |
SELECT matnr werks kwmeng vrkme | |
INTO TABLE gt_vbap | |
from vbap | |
FOR ALL ENTRIES IN gt_mara | |
WHERE matnr = gt_mara-matnr. | |
SELECT vbeln posnr matnr werks kwmeng vrkme | |
INTO TABLE gt_vbap2 | |
from vbap | |
FOR ALL ENTRIES IN gt_mara | |
WHERE matnr = gt_mara-matnr. | |
ENDIF. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment