Get the windows registry value
from ABAP
* * Written by : SAP Basis, ABAP Programming and Other IMG Stuff * http://www.sap-img.com * * To get the windows registry value * * First get the windows keys with REGEDIT * * Find value iexplore.exe and filled in the key path * REPORT ZREGISTRY. DATA: X_REG(50). call function 'REGISTRY_GET' EXPORTING KEY = 'Applications\iexplore.exe\shell\open\command' * SECTION = ' ' IMPORTING VALUE = X_REG. WRITE: / X_REG. *-- End of Program All product names are trademarks of their respective companies. The site www.sap-img.com is in no way affiliated with SAP AG. Every effort is made to ensure the content integrity. Information used on this site is at your own risk. The content on this site may not be reproduced or redistributed without the express written permission of www.sap-img.com or the content authors. |