GuiXT

Hi,
We have GuiXT implemented in 4.7.
We are planning to upgrade to ECC 6.0.
Does anybody know if there are any issues for GuiXT in ECC 6.0 ?
How easy is it to implement it for ECC 6.0 ?
Are there any features available in ECC 6.0 due which we need not use GuiXT at all ?
Please provide me some links so that I can check.
Thanks for you help.
Regards
Sudhir Atluru

Dear Sudhir Atluru
i don't understand what you mean with  "We have GuiXT implemented in 4.7." ....
GUI XT is an frontend application and is deployed with the Sapgui for Windows Installation.
Ok, please have a look at
[Synactive GuiXt|http://www.synactive.com ]
There you find all answers to your questions about the GUI XT.
Best Regards,
Sven

Similar Messages

  • Error messages Sap gui 7.1 pl 6 and 7 + guixt

    Hello,
    We have a problem with SAP GUI 7.10 PL 6 and 7 in combination with GUIXT  2008-Q2-1. When the user is starting a transaction that is combined with GUIXT, they are getting mostly three error messages:
    Message 1:
    "Not enough memory - please increase virtual memory (get memory:length=25728 file=C:\Source\grilb\..\grlib\smtable.cpp line=13)"
    Message 2:
    "Not enough memory for internal table (table name=cntl occu=32 leng=804)"
    Message 3:
    "PRD: maximum work process hold time execeeded"
    The problems occur  since patch level 6. We tried somes solutions:
    Solution 1:
    Install the newest  version of GUIXT, no results.
    Solution 2:
    Upgrade SAP GUI with patch level  7, no results.
    Solution 3:
    Uninstall SAP GUI 7.1 PL 7 and reinstall  an older version of  SAP GUI 7.1 PL3, the problem is solved.  
    Can someone tell me what these error messages mean and if there has been a bug in SAP GUI 7.10 patch level 6 and 7?
    Thanks,
    Alex

    Hi Matthew,
    I do not know whether A. De Cesare and Steve Wojnicki still see this issue in their installations. In my comment above I suggested to use a higher SAP GUI patch level (PL8 or above).
    We (Synactive) could not yet find out what is causing this problem; a couple of installations reported it in the past. What we found out is that
      - the error occurs with SAP GUI 7.10 PL6 and PL7, but never occured in earlier patch levels or in later patch levels
      - it occurs on certain PCs only, but we do not know what differentiates those PCs from others that run the same application+scripts without problems
    Gerhard

  • Guixt problem, sometimes it doesn't work

    Hi SDN.
    We use guixt on ESS screens in EP6 sp20.
    As far as I remember the ITS is on pacth22.
    My user experiense that sometimes guixt doesn't work, but just show the original screen. 5 minutes later it works again.
    Ofcource it cannot be reproduced but happens now and then
    Does anyone have a clue of what I should look for?
    Thanks in advance
    Peter

    Hi Peter,
    I would first download the latest version of guixt.dll and guixt.exe from synactive.com.
    Then I would test it again.
    Regards,
    ScriptMan

  • Problems with GUIXT statement TEXT with parameters

    Hi,
    i use guixt with DLOGON.TXT for logon-dynpro.
    In the docu i find, that it's possible to use some parameters
    for the statement TEXT.
    These parameters are: -border, -intensified, -fixedfont and Size="n" .
    I try to use them, but i get always error.
    Ha s anyone an example to use it in the following statement?
    text (20,30) "Good morning" -> shell be in border
    text (21,30) "this is the company nnn" -> shell be intensified
    thanks.
    Regards, Dieter

    Thanks are you saying something like this?
    DECLARE
        l_body      CLOB;
        l_body_html CLOB;
    BEGIN
        l_body := 'Thank you for filling out the form.'||utl_tcp.crlf;
        l_body_html := l_body||
                       '<html>
      <body><table cellspacing="2" cellpadding="3" border="1" width="100%">
          <tr>
            <td>
              <font face="Arial" size="2">
                <strong>Name:</strong>
              </font></td>
            <td>
              <font size="2" face="Arial">
                 '||:P1_NAME||'
              </font>
            </td>
          </tr>
    IF :P1_FORM = 'TEMPORARY ACCESS'
    THEN
           '<tr>
            <td>
              <font face="Arial" size="2">
                <strong>ID:</strong>
              </font></td>
            <td>
              <font size="2" face="Arial">
                 '||:P1_ID||'
              </font>
            </td>
          </tr>';
    END IF;
    <tr>
            <td>
              <font face="Arial" size="2">
                <strong>Job:</strong>
              </font></td>
            <td>
              <font size="2" face="Arial">
                 '||:P1_JOB||'
              </font>
            </td>
          </tr>'
    -- Rest of script--

  • GuiXT for projects - to call application within transaction

    Hi
    I'm using GuiXT for screen modifications and field layouts.
    I'm using Project Builder CJ20n. Everytime when i want to give a settlement rule to the WBS element within project i need to select the WBS element, g oto Edit --> Cost --> Settlement Rule
    I got the program function as ABRV.  I want to have a Pushbutton on the screen so that when i click on it, it will direclty go to that
    screen.
    Regards,
    Ashish

    Hi Asish,
    I would proceed as follows:
    1. Creating a Pushbutton
    for example:
    Pushbutton (toolbar) "@3B\QText as Quickinfo@Testbutton" process="Test.txt"
    2. Recording an input script with GuiXT
    for example:
    select the WBS element, goto Edit --> Cost --> Settlement Rule
    3. Saving an input script as test.txt
    4. Done
    Regards,
    ScriptMan

  • Hi Reg  SAP GUIXT

    Hi All,
        In Guixt I want to Add a TextBox. In that, my requirement is to fill the textbox with date  and  save it.
       I want to know whether the date will be saved into the database table or not.
       I want to update that date into database table for particular sales order.
        Is it possible by Guixt if not Please help me with the suitable way to solve it.
    Thanks & Regards,
    Vijay.

    Hi Vijay,
    if you are tring to create a Datefield and want to extract the data check this.
    http://www.synactive.com/tutor_e/lessonia05.html
    to obtain the day, month and year from a date field:-
    Set V[date] "20.02.2003"
    Set V[day] "&V[date](1-2)"
    Set V[month] "&V[date](4-5)"
    Set V[year] "&V[date](7-10)"
    In order to make this work for every date representation in SAP, use the following coding:
    V[date] is a valid SAP date.
    Set V[DateTest] &V[date](5-5)
    if V[DateTest=.] or V[DateTest=-] or V[DateTest=/]
    Set V[year] &V[date](1-4)
    Set V[month] &V[date](6-7)
    Set V[day] &V[date](9-10)
    else
    Set V[year] &V[date](7-10)
    Set V[DateTest] &V[date](3-3)
    if V[DateTest=.]
    Set V[month] &V[date](4-5)
    Set V[day] &V[date](1-2)
    else
    Set V[month] &V[date](1-2)
    Set V[day] &V[date](4-5)
    endif
    endif

  • GuiXt - text in red, can that be done?

    Hi SDN
    Have anyone experienze with GuiXt?
    My user want's a text added to a screen, and that is no problem, but the user want it to be red and not black.
    Is there a way to do this?
    I'm just using notepad for the scripts.
    Thanks in advance
    Peter

    The question is already quite old, but just in case that someone is still interested:
    Use a 1x1px White Image, eg. "white.gif" and the "Image" command:
    Image (2,80) (5,100) "white.gif" textstring="Hello!" textcolor="RGB(200,0,0)" textheight="20"   -textcenter
    The text can contain variables e.g.
    Image (2,80) (5,100) "  "white.gif" textstring="Bank account invalid for supplier  &V[supplier]"   ....

  • RFC Errors  in GUIXT

    Hi ,
    How solve the RFC Errors , I am working on GUIXT ,during script deployment in SAP Web Repository ,  I am getting below RFC errors , have no idea
    about this error. Please give me  directions to sort this out.  Apologies If I am posting this in wrong forum.

    Hi
    I can find the sapdev2 in internal connections.
    I can post this in basis forum ,but I am afraid I don't have a basis person ,seems I have to sort this on my own & with help of SDN.

  • What is guiXT?

    Hi:
    Could GuiXT be used for purpose of data extraction directly from SAP? What is the main purpose of this tool?
    Thanks,
    Asif
    Message was edited by: Asif Rahmetulla

    Thanks Brian! I did find the information there.
    Are you using guiXT in your environment? If so, what would you say about its guiXT script managment and distribution?
    Thanks,
    Asif

  • Activating GuiXt in NWBC (3.0)

    Hi,
    I am unable to activate GuiXt in NWBC desktop (3.0) using ALT+F12 which I am using in GRC 10.
    I am able to activate in SAPGUI using ALT+F12, but if I try this in NWBC desktop nothing happens.
    Also even if I activate it in SAPGUI and then load NWBC through either a desktop shortcut or transaction NWBC, the instance of NWBC is not picked up in GuiXt.
    Can anyone assist with how to work with GuiXt in NWBC?
    Thanks
    Donald
    Moderator message: not directly related to ABAP development, please have a look e.g. in the SAPGUI forums, or check the overall forum overview.
    Edited by: Thomas Zloch on Oct 13, 2011 1:47 PM

    Hi Denz,
    Want to know if you got any progress on the nwbc logo? I am trying the samething here but didn't get any progress on it.
    Thanks
    Jacky

  • GuiXT- Command 'column' not available

    hi Gurus,
    1] I am getting a error in GuiXt command 'column'
        The command line in BOM CS02 transcation is,
        Column "AvStock" size=8 name="AvStock" position=5
        Earlier same command line was working and i was getting a column named   
        AvStock in CS02, without any changes now after some days system says 
        that command 'column' is not available. This applies to all different systems
        (PC's) GUI for same server.
    2] What are all settings should be done to get the effect of changes through GuiXt
        at Server level. Like putting a system name in guixt.ini file in server system.
    Thanks in advance,
    Abhi.

    The Syntax used was wrong.

  • GuiXT call function

    Hi, how can i use call function in guiXT with import and export parameter?
    please give me some pointers..
    thanks!

    no need to answer.. not possible for me since im not using the licensed GuiXt.. =)

  • What is the use of Activate GuiXT option

    What is the use of Activate GuiXT option .

    GuiXT is a frontend design tool that allows you to taylor SAP standard transactions without modifying the backend ABAP code.  It is a part of SAPgui and runs on the client PC, based on script files either on the PC or a network drive.
    Functionality of guiXT from the SAP help;
    "You can insert default values in fields
    You can hide fields and groups of fields
    You can move fields
    You can add and change texts
    You can add input help
    You can add new screen elements like checkboxes, pushbuttons, graphics, or documentation
    You can customize tables
    You can change field labels on a system-wide basis"
    Regards,
    Nick

  • GuiXT compliant with Portal

    Hi,
    I wonder if we can use Guixt while launching an ECC transaction from the Portal ?
    How the Guixt file is integrated in the Portal ?
    Kind regards,
    Yann

    I think it will work with SAPGUI for Windows and SAPGUI for HTML, but only with the standalone ITS... Please test it before spending a lot of time on it!
    Cheers

  • GuiXT & synactive

    Hi All,
          Any body can give more info regarding Synactive.com  and GuiXT.
          Do i need to install new software to use GuiXT to enhance my standard  
         Transaction. I need to add few custom fields to Standard Transaction, which do
         not have any screen exits. helpful answers will be rewarded.
       Regards,
    sai

    Hi,
    Go to that R/3 standard transaction screen that you wish to modify. Click on Edit -->Script in the GuiXT Menu. Now the text editor (Notepad) for the corresponding script is started.
    See the Below URL, this is having question, and how to start a GUiXT, to get the answer press the extream right side button.
    http://www.synactive.com/qa/guixt/guixt_questions.html
    GuiXT is free SAP software for users starting with R/3 4.0. In R/3 Release 4.6 and up, GuiXT comes standard with SAPGUI. It is a flexible tool that applies to all SAP transactions and allows you to customize SAP screens using scripts without changing ABAP code. To restrict your SAP Note search by application area, use BC-FES-GXT /Basis Components – Frontend Services – GuiXT.
    For an overview of the GuiXT versions available, see <a href="http://www.synactive.com">www.synactive.com</a> and choose Download -->Version Info -->Click here to display all previous versions

Maybe you are looking for

  • HT1766 Backed up files and iMessages/SMS messages missing from current backup when restored

    My backed up photos and sms messages are not showing up when restoring from latest backup but if I look at backup with third-party restore tools I can see the missing files - How do I fix this without these tools??

  • Oracle 10G JMS error : Failed to handle dispatch message ... exception ORABPEL-05002

    Hi All, We are using a JMS adapter as partner link in a BPEL process to produce messages to JMS Queue. We are getting an error while producing a message to a JMS Queue. The error comes for 1 or 2 instances among 5 to10 intsances. (all these instances

  • Flash Videos - Crash Operating System

    I have sarted to experience a problem whilst watching Flash Videos on my 2007 Macbook (Snow Leopard) OSX 10.6.8. The problem is that after a few mins, the video becomes juttery, and then crashes (repeating audio snippet), with an opaque black message

  • Photostream images not uploading to mac

    Dear All, I wonder if anyone knows why photos might suddenly stop uploading to one of my computers?  I've been using the Day One app on my iPhone for a few days, and have just downloaded the Mac version.  It sync'ed seamlessly to both MacBook and Mac

  • E72 Create E-mail "impossible execution"

    Hello, E72 with mail for exchange. Email, calendar and contact synchro works well. But i have a problem when i want to send an email. I clic new message, email and here, a message impossible execution appears. I just cannot create a new e-mail to sen