SAP R/3 форум ABAP консультантов
Russian ABAP Developer's Club

Home - FAQ - Search - Memberlist - Usergroups - Profile - Log in to check your private messages - Register - Log in - English
Blogs - Weblogs News

Работа с реестром Windows из ABAP



 
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> ABAP
View previous topic :: View next topic  
Author Message
rudeman
Специалист
Специалист



Joined: 21 Sep 2007
Posts: 55
Location: Киев

PostPosted: Tue Jan 22, 2008 2:50 pm    Post subject: Работа с реестром Windows из ABAP Reply with quote

Подскажите пожалуйста, возможна прямая работа с реестром Windows из ABAP? Мне необходимо проверить, есть ли раздел(!) (не ключ) в реестре с необходимым названием.
Т.е. н-р существует ли
HKEY_CLASSES_ROOT\CLSID\{54CE48AC-74F9-4081-AEED-31685EC27FE9}
, где {***} как параметр.

_________________
Приятно когда программа из стадии "Блин, она не компилится!" переходит в стадию "Блин, она не работает!"
Back to top
View user's profile Send private message
Lord
Профессионал
Профессионал



Joined: 10 Sep 2007
Posts: 168

PostPosted: Tue Jan 22, 2008 3:55 pm    Post subject: Reply with quote

Для работы с реестром существует класс
CL_GUI_FRONTEND_SERVICES
и методы
REGISTRY_DELETE_KEY
REGISTRY_DELETE_VALUE
REGISTRY_GET_DWORD_VALUE
REGISTRY_GET_VALUE
REGISTRY_SET_DWORD_VALUE
REGISTRY_SET_VALUE

Code:
DATA: reg_value TYPE STRING
CALL METHOD cl_gui_frontend_services=>registry_get_value
    EXPORTING
      root                 = cl_gui_frontend_services=>hkey_current_user
      key                  = 'Software\Microsoft\FTP'
      value                = 'Use PASV'
    IMPORTING
      reg_value            = reg_value
    EXCEPTIONS
      get_regvalue_failed  = 1
      cntl_error           = 2
      error_no_gui         = 3
      not_supported_by_gui = 4
      OTHERS               = 5.
cl_gui_cfw=>flush( ).
write: reg_value.


Last edited by Lord on Tue Jan 22, 2008 4:04 pm; edited 1 time in total
Back to top
View user's profile Send private message
rudeman
Специалист
Специалист



Joined: 21 Sep 2007
Posts: 55
Location: Киев

PostPosted: Tue Jan 22, 2008 4:03 pm    Post subject: Reply with quote

Но это насколько я понимаю именно работа со значениями... а как быть в таком случае с разделом? или по сути раздел это тоже значение? параметр с именем "по умолчанию" типа REG_SZ который в нем есть?
_________________
Приятно когда программа из стадии "Блин, она не компилится!" переходит в стадию "Блин, она не работает!"
Back to top
View user's profile Send private message
Lord
Профессионал
Профессионал



Joined: 10 Sep 2007
Posts: 168

PostPosted: Tue Jan 22, 2008 4:12 pm    Post subject: Reply with quote

Рабочий вариант.
Code:
DATA: reg_value TYPE STRING.
CALL METHOD cl_gui_frontend_services=>registry_get_value
    EXPORTING
      root                 = cl_gui_frontend_services=>HKEY_CLASSES_ROOT
      key                  = 'CLSID\{54CE48AC-74F9-4081-AEED-31685EC27FE9}'
      value                = ''
    IMPORTING
      reg_value            = reg_value
    EXCEPTIONS
      get_regvalue_failed  = 1
      cntl_error           = 2
      error_no_gui         = 3
      not_supported_by_gui = 4
      OTHERS               = 5.
cl_gui_cfw=>flush( ).
write: reg_value.
Back to top
View user's profile Send private message
rudeman
Специалист
Специалист



Joined: 21 Sep 2007
Posts: 55
Location: Киев

PostPosted: Wed Jan 23, 2008 12:20 pm    Post subject: Reply with quote

Ну в принципе оправдалось одно из моих предположений... "по умолчанию" является ключем раздела )
Спасибо большое )

_________________
Приятно когда программа из стадии "Блин, она не компилится!" переходит в стадию "Блин, она не работает!"
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> ABAP All times are GMT + 4 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


All product names are trademarks of their respective companies. SAPNET.RU websites are in no way affiliated with SAP AG.
SAP, SAP R/3, R/3 software, mySAP, ABAP, BAPI, xApps, SAP NetWeaver and any other are registered trademarks of SAP AG.
Every effort is made to ensure content integrity. Use information on this site at your own risk.