Friday, November 23, 2007

sap abap program for Get the windows registry value from ABAP

* 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

No comments:

Blog Archive