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

Как прочитать настройки SapLogon?



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



Joined: 26 Dec 2007
Posts: 73

PostPosted: Fri Jan 11, 2008 11:32 pm    Post subject: Как прочитать настройки SapLogon? Reply with quote

Доброй ночи Smile

Каким ФМ можно прочитать настройки SapLogon, интересует вкладка Другие?
Back to top
View user's profile Send private message
vga
Мастер
Мастер


Age: 195
Joined: 04 Oct 2007
Posts: 1218
Location: Санкт-Петербург

PostPosted: Sat Jan 12, 2008 12:00 am    Post subject: Reply with quote

Предочтительно найти соотвествующие методы в
cl_gui_frontend_services,
например:
cl_gui_frontend_services=>get_saplogon_encoding( )

В крайнем случае, напрямую прочитать файл saplogon.ini

Code:
REPORT: z_vga_001.

DATA: l_sysid TYPE sy-SYSID,
      f_found,
      l_item(8),
      l_item_tmp(8),
      l_value(64).

DATA : itab_data TYPE TABLE OF string WITH HEADER LINE.

      CALL FUNCTION 'GUI_UPLOAD'
           EXPORTING
                filename                = 'C:\WINDOWS\saplogon.ini'
           TABLES
                data_tab                = itab_data
           EXCEPTIONS
                OTHERS                  = 22.

CHECK sy-subrc IS INITIAL.

LOOP AT itab_data.
  IF itab_data EQ '[MSSysName]'.
    f_found = 'X'.
  ENDIF.
  CHECK NOT f_found IS INITIAL.
  SPLIT itab_data AT '=' INTO l_item l_sysid.
  IF l_sysid = sy-sysid.
    EXIT.
  ENDIF.
ENDLOOP.

CLEAR f_found.
LOOP AT itab_data.
  IF itab_data EQ '[Codepage]'.
    f_found = 'X'.
  ENDIF.
  CHECK NOT f_found IS INITIAL.
  SPLIT itab_data AT '=' INTO l_item_tmp l_value.
  IF l_item_tmp = l_item.
    EXIT.
  ENDIF.
ENDLOOP.

WRITE: / 'Система =', l_sysid,
       / 'Cтандартная кодовая страница =', l_value.
Back to top
View user's profile Send private message Blog Visit poster's website
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.