cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

GUIXT Issue

former_member213851
Active Contributor
0 Likes
1,940

Hi Gurus,

I have made some changes to screen using GUIXT and they are visible for all clients (Servers for Client , A Client B... ).

This should not happen..

Is there any way to restrict changes to particular server of a client  only..

Please suggest. Also let me know disadvantages of using GUIXT.

Regards,

Sachin

View Entire Topic
script_man
Active Contributor
0 Likes

Hi Sachin,

I work in such cases as follows:

if V[_user=Adak]

   //Here follow the GuiXT commands.

endif

The disadvantages of using GUIXT are the same in about how the disadvantages of using SAP Screen Personas. 😉

Regards,

ScriptMan

former_member213851
Active Contributor
0 Likes

Hi Script man,

Your solution will not help in case same user has GUI XT activated on different servers...

What to do in that case..... Any suggestion...

Regards,

Sachin

script_man
Active Contributor
0 Likes

Hi Sachin,

then there are other system variables that you could use.

for example: http://www.synactive.de/docu_e/doc_systemvariables.html

Regards,

ScriptMan

former_member213851
Active Contributor
0 Likes

Hi SciptMan,

Can you please let me know If is it possible to have GUI XT activated on User's PC without having  "Screen Element" screen opened.

I am asking this because end users are anyways not concerned about coding , So why to display

coding part associated with the screen.

Regards,

Sachin

S_Sriram
Active Contributor
0 Likes

Hi Sachin

Kindly refer the SAP Note 338750 - GuiXT: Delete "Activate GuiXT" option from SAP GUI

Regards

Sriram

script_man
Active Contributor
0 Likes

Hi Sachin,

Please see the following link: http://www.synactive.de/docu_e/doc_profile_options.html

On the server where the user will not see the window screen element, is in the path c: \ program files (x86) \ sap \ frontend \ sapgui \ an INI file called guixt.ini. There is the parameter StartHidden No, that prevents the display.

Regards,

ScriptMan

former_member213851
Active Contributor
0 Likes

Hi Script Man,

I have done changes as suggested, still window is appearing.

script_man
Active Contributor
0 Likes

Hi Sachin,

Sorry:

StartHidden No      => display

StartHidden Yes    => no display

Our guixt.ini looks for example as follows.


//------------------------------------------------------------------------------------------------------

// GuiXT profile parameters

//

// - Set Profile parameters via Edit->Profile in GuiXT for single installations

// - Use .ini file for general rollout

//

//-------------------------------------------------------------------------------------------------------

IgnoreRegistry   Yes                   // Ignore local GUiXT profile

//-------------------------------------------------------------------------------------------------------

Component       GuiXT                  // Component selection: GuiXT

Component       InputAssistant         // Component selection: InputAssistant

// Component       Viewer              // Component selection: Viewer

// Component       Designer            // Component selection: Designer

//-------------------------------------------------------------------------------------------------------

Directory1      k:\guixt\scripts       // Script Directory 1

// Directory2      directory           // Script Directory 2

// Directory3      directory           // Script Directory 3

// Directory4      directory           // Script Directory 4

//------------------------------------------------------------------------------------------------------

StartMinimized  Yes                    // Start with a minimized window

StartHidden     Yes                    // Start with a hidden window 

//------------------------------------------------------------------------------------------------------

History         z:\history             // InputAssistant: History Directory

HistoryUpdate   Yes                    // InputAssistant: History Update active

Domains         k:\guixt\domains       // InputAssistant: Local value help

HistoryOnRightButton   Yes             // InputAssistant: History on right mouse button

HistoryOnMiddleButton  Yes             // InputAssistant: History on middle mouse button

//------------------------------------------------------------------------------------------------------

// Icon_tip_field  xx                  // R/3 icon id for field tips, default: 0L                         

// Icon_tip_box    xx                  // R/3 icon id for field group tips, default: 35

//------------------------------------------------------------------------------------------------------

// Option          xxx1                // User Option (see "if Q[Option=xxx]")   

// Option          xxx2                // "   

// Option          xxx3                // "   

//------------------------------------------------------------------------------------------------------

// Replication     Yes/No              // File replication active

// Directory0      directory           // Directory for replicated files

Key             xyz.123.abcdef         // Licence key, not required for component GuiXT on R/3 Rel. 4.0

// Testkey         xxxxxxxx            // Test licence key

// Trace           Yes/No              // Internal tracing active (only for error analysis)

// Docu            directory           // GuiXT Documentation

// Linksapurl      Yes/No              // Viewer: Support SAP-Url in normal html display 

RfcUser         RFCUSER

RfcPasswordEnc  APBINKNROKFJIHBQORIOKVCLLQCKATILEGHVPIAPDKKJIMMB              // Password for RFC calls

//------------------------------------------------------------------------------------------------------

// FileAccessTimeout  x                // Maximum x seconds for ftp://, http:// or external file server access

//------------------------------------------------------------------------------------------------------

Texteditor  GuiXTEditor      

Regards,

ScriptMan