Skip to content

Instantly share code, notes, and snippets.

@softy12
Created May 21, 2019 12:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save softy12/1de35350e72d64bfea30f056494676eb to your computer and use it in GitHub Desktop.
Save softy12/1de35350e72d64bfea30f056494676eb to your computer and use it in GitHub Desktop.
Find SAP BW APD processes which have Performance Settings set to Process Data in Memory
SELECT * FROM rsant_process INTO TABLE @DATA(lt_apd) WHERE objvers = 'A'.
LOOP AT lt_apd ASSIGNING FIELD-SYMBOL(<fs>).
FIND 'PROCESS_DATA_IN_MEMORY="X"' IN <fs>-xml.
IF sy-subrc = 0.
WRITE: / <fs>-process.
ENDIF.
ENDLOOP.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment