Registry access with method "registry_get_value"

Question:
Hi everybody
I try to access the registry key HKEY_CURRENT_USER/Network/I to get the network path to a file that's stored on drive I:
I found the method "registry_get_value" in the class "cl_gui_frontend_services", but it doesn't work the way I expected. Did anyone use this function?
Is there another way to get the network path to a drive?
Help very much appreciated!
Seppo
Answer:
Hi Seppo,
I am not sure if this will help you, I find this code long time ago.
*
* Written by : SAP ABAP Programming and Other IMG Stuff
* http://sapabap0.tripod.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
Answer:
Hi Marjok
Thanks for your help. I also tried to use the function module REGISTRY_GET. But still I have a problem to get the registry key HKEY_CURRENT_USER/Network/I. I don't know what to export in the parameter KEY.
Any ideas anyone?
Thx
Seppo

More Articles:

download FROM SAP?
Create Transaction to Call customize Area Menu?
BDC/BAPI/FM/SAP Program for FBL5N?
Creating BATCH Input for Scheduling Agreement?
How to convert display format to internal format?
Batch Input for Billing?