SAPGUI

Can Anyone help me here? I am having a problem installing SAPGUI 640 so that I can do ABAP on a newly installed Sneak Preview NetWeaver? Is ther any other way to do this?
Thanks,
Tamyalew

You need to post on this forum :
SAP NetWeaver Application Server
and secondly, I doubt, you can write ABAP programs in Sneak Preview of WAS640. I myself, haven't installed, although tried my best, nevertheless, post the question in the above forum,  someone will answer.
Regards,
Subramanian V.

Similar Messages

  • How to find out wheter user is using WINGUI or SAPGUI

    Is there any ABAP function module or clsas method to check the GUI TYPE?
    I'd like to know whether the end user is using WINGUI or SAPGUI.

    have a look at BDS_GET_GUI_TYPE
    ICL_GET_GUI_TYPE
    reward points if helpful

  • Anyone know how to output an XML file from ABAP to a non sapgui location?

    I have a program that creates XML and then outputs a file via CALL METHOD cl_gui_frontend_services=>gui_download. But now I want to execute the program in background mode and therefore I need to be able to output that XML to a NON sapgui file location. Current code creates the XML to an internal table which is binary then the gui_download method converts that to output XML. .  Does anyone know how I can change the code to either a) output the XML to an internal table which can be output via, say, a TRANSFER command..or, b) output the created binary table of XML to a NON sapgui file location?
    Excerpts from current code are as follows:
    first the XML is created (to the binary file)
          Creating a ixml factory
      l_ixml = cl_ixml=>create( ).
          Creating the dom object model
      l_document = l_ixml->create_document( ).
          Fill root node with value XML
      l_element_xml  = l_document->create_simple_element(
                  name = 'XML'
                  parent = l_document ).
          Create tag 'HEADER' as child of 'XML'
      l_element_header  = l_document->create_simple_element(
                  name = 'HEADER'
                  parent = l_element_xml  ).
    header information about the file and general data about the fleet follows
      l_value = c_fleet_import.
      l_element_dummy  = l_document->create_simple_element(
                name = 'TYPE'
                value = l_value
                parent = l_element_header ).
    etc.......
    then the xml is connected to the stream factory and rendered
      Creating a stream factory
      l_streamfactory = l_ixml->create_stream_factory( ).
      Connect internal XML table to stream factory
      l_ostream = l_streamfactory->create_ostream_itable( table = l_xml_table ).
      Rendering the document
      l_renderer = l_ixml->create_renderer( ostream  = l_ostream
                                            document = l_document ).
      l_rc = l_renderer->render( ).
      Saving the XML document
      l_xml_size = l_ostream->get_num_written_raw( ).
    and then output to the file
      IF sy-subrc = 0.
        CALL METHOD cl_gui_frontend_services=>gui_download
           EXPORTING
             bin_filesize = l_xml_size
            filename     = 'g:\sapdms\BSCC-DEV\EFPAC XML Files\ALL.xml'
           filename     = '/TRICK/727/OUT/ZEFP/EFPAC.XML' "doesnt work with sap gui
             filetype     = 'BIN'
           CHANGING
             data_tab     = l_xml_table
           EXCEPTIONS
             OTHERS       = 24.
    as implied by the comments the method above will successfully output the XML file to the g:drive but will not output to /TRICK/ location, which is where I need it to go in a background mode run.
    This is a problem which has defeated all our local expertise and I would appreciate any help given... Barry Jones

    Try this code below:
    data  l_xml_table2  type table of xml_line with header line.
    W_filename - This is a Path.
      if w_filename(02) = '
        open dataset w_filename for output in binary mode.
        if sy-subrc = 0.
          l_xml_table2[] = l_xml_table[].
          loop at l_xml_table2.
            transfer l_xml_table2 to w_filename.
          endloop.
        endif.
        close dataset w_filename.
      else.
        call method cl_gui_frontend_services=>gui_download
          exporting
            bin_filesize = l_xml_size
            filename     = w_filename
            filetype     = 'BIN'
          changing
            data_tab     = l_xml_table
          exceptions
            others       = 24.
        if sy-subrc <> 0.
          message id sy-msgid type sy-msgty number sy-msgno
                     with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        endif.

  • Integrating custom ActiveX control with SapGUI

    Hi everybody
    I'm in the process of writing a custom MFC based ActiveX control written in C++ that we want to use in a product. I am currently at the point where I can instantiate the control and interact with the various methods that it exposes but I have a problem integrating the control more tightly with the SapGUI e.g. change of colors, fonts etc.
    I want to make the control to reflect the user changes when the user modifies any settings of the SapGUI. I've tried catching various events that are exposed by some of the dictionary classes such as cl_gui_props_consumer=>color_change/global_prop_change and cl_gui_resources=>resources_changed but these events only fire in my control once the PAI of the client program that encapsulates the control fires which is hardly appropriate since it means that the control will have to wait for user input before it will change reflect any changes in user settings.
    I've written a test program for my control and when I change my SapGUI colors the rest of the controls etc on the screen do change color but my control only change color once I've performed some action that fires the PAI. Personally I think the controls written by SAP intergrates with the SapGUI through some interface that is called behind the scenes by the SapGUI since the GUI will have some way of knowing the set of ActiveX controls instantiated inside it  and I cannot find any event in the ABAP controls framework (e.g. CL_GUI_OBJECT, CL_GUI_CONTROL) that will allow this type of integration. I'll be digging for the answer but any suggestions will by greatly appreciated.
    Thank you in advance for any help.
    Kind regards
    Ettienne Hugo

    Hello Ettienne Hugo,
    To get the SAP GUI Theme or font changes events you need to add your MFC application or ActiveX MFC dll into u201CSAP Configuration->Application Tab->Addu201D and u need to call the functions SapHookInit and to stop getting the change events u need to call SapHookExit.(sapfhook.dll provides these functions)
    I tried with exe, never tried with ActiveX MFC dll/ocx. With EXE it works.
    Thanks and Regards,
    Ashwini

  • "SSO" for non-sap web application using SAPGUI to browse?

    I have a web application (non SAP) and the user base are also SAP users in an ABAP system.
    To strengthen the authentication in the web app, I wanted to implement SSO 
    authentication as we pity the users for having to remember so many strong pw's and I
    dont like LDAP based pw sync or other technology I dont understand, because then we are
    just yet another application with the same pw...
    We are having technical problems implementing SSO on the web app side, and are anyway a
    bit sceptical about the user admin / role admin assignment if we get it to work.
    So I have created a transaction in SAP which browses the web app and the intention is to
    send the SAP sy-uname as the web app user. We can control this using s_tcode, and
    an own auth object on the WAS side and a check on the session type before the connection is
    established. In this sense we are dependent on the SAP concept implemented, but even so:
    The role assignment is controlled in the web app itself -> so assume that I am not overly
    worried about unauthorized access to the web application, as they would not have any
    system role for it as their sy-uname does not exist. (Infact we can monitor this)
    The browser on the front end is the SAPGUI with html controls on the SAP side.
    I would be interested in knowing whether anyone else has experience with this approach, and
    whether there are any areas to be carefull of?
    I would also like to know whether this is a strategic error?
    Kind regards,
    Julius

    Hi Julius,
    well, if that web application would run on the same ABAP backend system then the solution described in <a href="http://service.sap.com/~iron/fm/011000358700000431401997E/0612670">SAP Note 612670</a> would be applicable:
    a so-called "Re-entrance ticket" (based on the "SAP logon ticket" SSO proceedings) is issued, transported via the SAPGUI connection and back to the system via the invoked HTML control.
    But for non-SAP web applications that does not help.
    In that case only X.509 client certificates can be used for SSO. Actually, the web application could then also be invoked directly (independent from the SAPGUI session). The user is authenticated based on the X.509 client certificate - and not based on the ABAP userID (of the SAPGUI session).
    Well, if you don't mind the effort you could also use the "SAP Logon Ticket evaluation library" (sapssoext, see <a href="http://service.sap.com/~iron/fm/011000358700000431401997E/0304450">SAP Note 304450</a>) to evalute the SAP logon ticket externally. You'll then need to have a "stub application" at the ABAP side that triggers the http redirect to your external web application. Not a nice solution but a possible one.
    In the future SAML browser artifacts would be an option (preferable to integrate non-SAP applications). But currently that's not available (for NWAS ABAP).
    Cheers, Wolfgang

  • Sap Netweaver 4.0 testdrive on linux - impossible to connect from sapgui

    Hi guys,
    i've just finished to install the NW40 testdrive on a linux box, based on Redhat 9.0 distro (as requested by the equirements). At the end of installation, i have two boxes
    One box with winxp sp1 called Darkstar with i.p. 192.168.100.1 and Subnet mask 255.255.0.0
    The second box (with linux and NW40) called Darkmoon (prob. i was too bored to think a completly different name ) with i.p. 192.168.100.15 and subnet mask 255.255.0.0
    The /etc/hosts file of the linux box contain these entries :
    127.0.0.1     Darkmoon
    192.168.100.15     Darkmoon.locadomain.ext
    195.155.155.1     nw4host
    The last line was taked from other posts found in SDN forum. I followed all the install steps and the db and the instances going-up very well, without any problem.
    If i ping the two boxes, they reply each-others (from winxp to linux and vice-versa).
    The "hostname" command in the linux box, return only "Darkmoon" as request by installation steps.
    Now the problem.
    On the winxp box i have installed sapgui 6.20. In it, I've created an entry with these information:
    Description : Linux box
    Application server : 192.168.100.15
    System number : 00
    When i try to connect with double clink on that entry, i have the following error :
    Partner not reached (host 192.168.100.15, service sapdp00)
    Component NI (Network interface)
    Release 6.20
    Ver 36
    Return code -10
    System call SO_ERROR
    Error text : WSACONNREFUSED
    Seems the boxes don't see between them.
    Could be a hosts file problem on linux box???
    Someone of u could give me some help ??
    Could be very unhappy couln't use NW40 just for a little error.
    Thx a lot for all your hints and suggestions
    Andrea

    Hi Gregor,
    thx a lot for your interest in my problem.
    The firts answer is yes, i've started the instance with the command "startsap", and the instance comes up.
    I can see the processed with ps -ef .
    Here the log of ifconfig :
    eth0      Link encap:Ethernet  HWaddr 00:0C:29:5E:D9:84 
              inet addr:192.168.100.15  Bcast:192.168.255.255        Mask:255.255.0.0
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:4525 errors:0 dropped:0 overruns:0 frame:0
              TX packets:4 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:100
              RX bytes:336907 (329.0 Kb)  TX bytes:168 (168.0 b)
              Interrupt:10 Base address:0x1080
    lo        Link encap:Local Loopback 
              inet addr:127.0.0.1  Mask:255.0.0.0
              UP LOOPBACK RUNNING  MTU:16436  Metric:1
              RX packets:10 errors:0 dropped:0 overruns:0 frame:0
              TX packets:10 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:0
              RX bytes:700 (700.0 b)  TX bytes:700 (700.0 b)
    Another thing .
    The command traceroute in each box works, and shows the right path.
    Thx a lot for every information u would give me .
    Andrea

  • SAPGUI problem on FEDORA linux

    Hi friends,
    we have worked on window OS.
    recently we have changed the OS , we are working on FEDORA linux,
    comming to problem.
    production server and quality server are working fine.
    but development server is not working.
    when ever we have open this server it will not respond, it shows only blank screen.
    the GUI is completly goes to wait stage. it shows a white screen.
    what is the problem please post the solution immediatly.
    Regards,
    Sateesh.

    Dear sateesh,
    could you please explain in more detail what you are referring to when saying
    In our organization sap is installed on fedora linux with 'jre1.6.0_14'
    In this forum, we normally assume that you mean SAP on the server side. But the subject of this thread is called, SAPGUI problem, therefore I assume that you are only facing SAPGUI problems on the client side (and not the server side).
    SAPGUI problem on the Client side:
    For officially supported distributions for the JavaGUI [1] are mentioned in SAP note 959236 - Supported Java frontend platforms for 7.10 / 7.11 / 7.01. This note says that Fedora Linux is supported, so you are on the safe side here.
    Also, the JavaGUI is fully compatible with Java 1.6. I', using the JavaGUI with jdk1.6.0_14 without any problems. I'm using a small script to start the JavaGUI on my machine. You should try it youself. Please note that you have to adept the paths accordingly. Sometimes it happens that some variables are not set correctly. Also, the Java path is very important!
    #!/bin/sh
    # SAP GUI Path
    SGP=/home/hannes/data/progs/sapgui/SAPGUI7.10rev8
    export SNC_LIB=/usr/lib/libsecude.so
    export CREDDIR=/dev/shm/ssoclient-`id -u`
    export JAVA_HOME=/home/hannes/data/progs/jdk1.5.0_16
    export PLATIN_JAVA_VER=1.5.0_16
    export PLATIN_JAVA=$JAVA_HOME/bin/java
    export LD_LIBRARY_PATH=$SGP/bin
    $SGP/bin/guilogon
    Thanks,
      Hannes
    [1]: ftp://ftp.sap.com/pub/sapgui/java/710r8/

  • Microsoft apps (outlook/Excel etc) do not work after SAPGUI 720 install

    Hello,
    We use a tool called MARIMBA to package and deploy SAPGUI and other apps to our users. Recently, we packaged SAPGUI 720 and deployed to some end-users (Win XP 32-bit SP3, Win 7 enterprise) via Marimba. However, after SAPGUI gets pushed to the end-user computers, users complain that their Microsoft apps don't work or are missing! Few users report Symantec Anti-virus does not launch.
    I am not sure if this is unique to our environment. Please report here if you have encountered similar situation.
    Thanks for your time.
    Edited by: Gokul Ramaswamy on Apr 9, 2011 12:48 AM

    You software is too old. You need to move to Office 2008, 2011 or use iWork or use Open Office (or Libre Office, or NeoOffice, etc.)

  • Open SAP Transaction in SAPGUI window from Other programs

    Hi,
      We have an intresting requirement in which we have to run an SAP transaction, like SE37,in SAPGUI  from a Web application.
    In detail:
      When an user clicks on a particular link, say an account number, in a web application, we need to open SAPGUI and run a partucluar transaction in SAP to get account detials and show it in SAPGUI.
    That means we need to fo the following steps behind the scence.
    Case1:
    -1 Open SAPGUI
    -2 Login the User
    -3 Run sap transaction with parameters
    -4  Display the results in SAP R/3 GUI
    Case 2: Assume, If the SAPGUI is already launched by the user (i.e. steps 1 & 2) , Can we do steps 3 and 4?
    I am new to SAP and not sure wether this will be possible at all or not. Please advice.
    Thanks,
    Sree

    check the code given by thomas jung in this thread
    Calling a R3 transaction in BSP
    he has also mentioned of  Java SAPGui which can be opened as an applet in a web browser
    кu03B1ятu03B9к

  • How to create a new connection from SAPGUI to Test drive?

    Hi,
    I have installed Sap Netweaver Test drive on a linux virtual machine (windows host). The installation was successful and I was able to start the instance (application server and the database), yet I don't know how to create a new connection from my SAPGUI client (7.20) to this server. The static IP address of the server is 192.168.1.160.
    I entered the following values for my new connection entry
    Description: SAP Netweaver
    Application server: 192.168.1.160
    Instance number: 01
    System ID: DB2
    SAProuter: /H/192.168.1.160/S/3201/H/
    But it does not work. Any idea about the values needed  for creating a new entry?
    Thanks in advance,
    Dariyoosh

    >
    Dibya R Das wrote:
    > Why are you entering a router string? Can't you reach a box directly from your machine?
    >
    > Doesn't a ping to that host & a "telnet <host/ip address> 3201" work from your machine to the SAP System.
    >
    > Remove the router string you wont need if the above works.
    >
    > - Regards, Dibya
    Hello there,
    Thank you very much for your answer which solved my problem. In fact there was no need of providing router string.
    Kind Regards,
    Dariyoosh

  • Open a SAPGUI transaction from a Java web application

    Hi all,
       We are in the process of developing a Java based web application with SAP J2EE engine - but not SAP Enterprise Portal. One of the requirements we have is from one of the web screens there needs to be a button which launches SAPGUI and take the user to a particular transaction in SAPGUI. The  user is going to have SAPGUI installed on their desktop.
       We were planning to user SAP Shortcut technique for launching the SAPGUI but the issue with that is the user has to logon each time ( even thought it is possible to have the password stored - even then there will be other messages that the user has to pass through before reaching the final  transaction ). The users are going to have a number of items in the screen and they need to go through this for every item.
       I was wondering if there is anyway this can done so that the user does not have to go through all these steps ( BTW, the user is already authenticated on the web application and so functionally done not have to be authenticated again).
    ANy suggestions will be highly appreciated.
    Regards
    Ravi

    Hello Gregor,
    SAPGui is inatalled on each user box, we can launch the SAPGui thick client from an iview (to run on a seperate window).
    How can I pass (R/3 logon) parameters to the SAPGui command line?
    Thank you
    AAAttar
    eg:
    would a batch file with saplogon then sapgui work?
    DOS command prompt [CMD]
    >saplogon.exe -user=... -password=... -system=QAS123 -client=001 -tcode=session_mananger
    >SAPGui.exe...

  • How to call a business graphics from a SAPGUI program?

    Dear experts,
    I'm new to WebDynpro for ABAP. I was able to create a working WebDynpro application that shows a simple bar-chart. Nice. What I would like to realize is a bar chart as a pop-up when I click a button on an ALV table element. This ALV table is in the SAPGUI and not WebDynpro (and it shouldn't be). I searched a lot but only found people that talk of 100% WebDynpro applications. So I wonder if a hybrid is possible like embedding the graphics in a control container on a SAPGUI screen or such. I need to somehow submit the required data for the chart from the calling program.
    Is this feasible or do I need to go for the GFW that SAP has marked as obsolete?
    Thanks!

    Hi,
    You can create a transaction for WDA application and call that transaction on click of button ( but you cannot show it as popup) : You can check this for reference: How to pass data to Web Dynpro ABAP from ABAP - Part 2
    You can use CL_GFW classes to display graphs or cl_gui_chart_engine.. ref: Creating charts in Simple ABAP Programs - Code Gallery - SCN Wiki
    Hope this helps u,
    Regards,
    Kiran

  • SAPGUI for Java 7 rev 3 - error in Solution Manager

    I am trying to view a document through tcode SOLAR02 (on Java based GUI) and I get below error. This works fine on SAPGUI 640 version. Any clue why it throws this dump?
    Exception condition "DP_ERROR_GET_DATA" raised.
    How to correct the error
    If the error occures in a non-modified SAP program, you may be able to
    find an interim solution in an SAP Note.
    If you have access to SAP Notes, carry out a search with the following
    keywords:
    "RAISE_EXCEPTION" " "
    "SAPLCNDP" or "LCNDPU09"
    "DP_GET_TABLE"
    or
    "SAPLCNDP" "DP_ERROR_GET_DATA"
    or
    "SOLAR_START " "DP_ERROR_GET_DATA"
    If you cannot solve the problem yourself and want to send an error
    notification to SAP, include the following information:
    1. The description of the current problem (short dump)
    To save the description, choose "System->List->Save->Local File
    (Unconverted)".
    2. Corresponding system log
    Display the system log by calling transaction SM21.
    Restrict the time interval to 10 minutes before and five minutes
    after the short dump. Then choose "System->List->Save->Local File
    (Unconverted)".
    3. If the problem occurs in a problem of your own or a modified SAP
    program: The source code of the program
    In the editor, choose "Utilities->More
    Utilities->Upload/Download->Download".
    4. Details about the conditions under which the error occurred or which
    actions and input led to the error.
    Information on where terminated
    Termination occurred in the ABAP program "SAPLCNDP" - in "DP_GET_TABLE".
    The main program was "SOLAR_START ".
    In the source code you have the termination point in line 120
    of the (Include) program "LCNDPU09".

    Hello,
    please create a bug report on component BC-FES-JAV using the <a href="http://service.sap.com/message">message reporting page on service market place</a> and add a trace according to <a href="https://service.sap.com/sap/support/notes/683960">note 683960</a>.
    In addition to the default trace keys, please also activate key DP.
    Best regards
    Rolf-Martin

  • JSE 6 needed for the next major version of the Mac SAPgui

    Apple has a developers' preview version JSE 6, but they don't yet support it. Hence, the Mac version of the Java SAPgui doesn't yet use JSE 6, even though the Java SAPgui on other platforms does use JSE 6. It is likely that by the time of SAP's next major release of the Java SAPgui, Apple will support JSE 6 and the Mac SAPgui will require it.
    Currently Apple's implementation of JSE 6 requires a 64-bit Intel processor running Leopard. If this remains true in Apple's final release of JSE 6, then the next major release of the Mac SAPgui won't run on any MacOS X prior to Leopard and won't run on PowerPC or 32-bit Intel based Macs even with Leopard.
    I'm told that Sun has both 32-bit and 64-bit JSE 6 JVMs for Windows, for Linux, and for Solaris.
    My organization (MIT) has submitted a bug report to Apple about this. It is possible that Apple might pay more attention if a number of their customers made a joint request.
    If your organization would be interested in joining such a joint request to Apple to support JSE 6 on (at least) all supported Leopard platforms, please let me know.
    Thanks.
    /David Rosenberg    <[email protected]>
    P.S. If you work for Apple and you think you might be able to help with this, please contact me.
    /David

    Here is the current situation with respect to SAP's Mac JavaGui and
    Apple's Java SE 6, as I understand it:
    a. The SAPgui for Java 7.20 is planned for the fourth quarter of
       calendar 2008.
    b. SAP's support for the SAPgui for Java 7.10 is planned to end on
       31-Dec-2008.
    c. The Mac SAPgui for Java 7.20 will be able to use Java SE 6.
    d. SAP has not yet decided whether the Mac SAPgui for Java 7.20 will
       also be able to use an earlier version of Java (i.e. J2SE 5.0).
    e. Apple's Java SE 6 is only available for Mac OS X 10.5.2 and later
       on 64-bit Intel-based Macs (not PowerPC-based or 32-bit Intel-based
       Macs). Apple has not mentioned any plans to support Java SE 6 on
       any PowerPC-based or 32-bit Intel-based Macs or any Macs running
       Tiger, although there is a possibility that Apple might announce
       support for some of those platforms at their upcoming Worldwide
       Developers Conference (June 9-13, 2008, in San Francisco).
    f. Sun has both 32-bit and 64-bit JSE 6 JVMs for Windows, for Linux,
       and for Solaris.
    g. The last PowerPC-based Macs (Power Mac G5) were sold in August 2006
       and the last 32-bit Intel-based Macs (Mac mini) were sold in August
       2007.
    h. Assuming that the Mac SAPgui for Java 7.20 will require Java SE 6
       and Apple doesn't extend their support of Java SE 6 to other
       platforms, then as of 1-Jan-2009, you won't be able to run an
       SAP-supported version of the Mac SAPgui for Java on PowerPc Macs
       bought as recently as August 2006 or 32-bit Intel Macs bought as
       recently as August 2007 or on any Macintosh running Tiger.
    Best regards,
    /David M Rosenberg         <rosenberg at mit.edu>

  • Error no. 4 in SAPGUI during graphic call or file transfer.

    Hi,
    In the landscape there are still 46b sap version, i have some functional queries that when i executes go to the sap graphic screen and it throws with no output. I understand that that it works in ECC version but not for 46b.
    This issue is related to SAPGUI, as i have the latest sapgui installed 710 that works well for ECC.
    But if i input the parameter in sap 46b system , and execute to get the graphic chart i get this:
    The Generation of Graphs for Stock Movements in the MC49 Transaction.
    When you call a hierarchy graphic, the following error messages are displayed
    1. 'Too much data in a table or too many tables defined
    2. E4: error writing to XC pipe: child #1 ( id: STAT ); reclen12
    3. Error no. 4 in SAPGUI during graphic call or file transfer.
    I have also look in to note 316232, 361222, 96885. for this but  this says to upgrade the sapgui,which is already in.
    What is the solution for this.
    Regards,
    Chetan.

    Take a look at this thread.  This may provide you some guidance as it appears that Error has been encountered before.
    [Link Here|Error no. 4 in SAPGUI with Graphics call or file  transfer;
    Regards,
    Zecher

  • ITS 620 - how to create a service file for SAPGUI for HTML option

    Hi,
    We have the following configuration :
    ITS 620 installed
    IIS webserver
    NTLM Authentication on webserver
    SAP 46C
    We have some reports that use the IACs option of creating ITS reports and we are able to create the service files using webstudio where we can save a service id and password so that when the ITS page is called, it logs on the user directly into the system.
    Now, we are trying to create a new ITS page for a custom Z transaction and would like to use the SAPGUI for HTML option so that we do not have to use Webstudio to create and modify the HTML pages.
    When I call the ITS page for the new transaction, it brings up the logon screen for the user, which we want to avoid. If I create a new service file for this Z transaction without any HTML pages then I get an error.
    Is there a way to copy the WEBGUI.SRVC file to a custome SRVC file, I tried to create to copy it to a test file called ZTEST.SRVC for my test transaction called ZTEST and now I get an error.
    thanks in advance
    N.S.

    Hello N.S.
    You can create a service file, like ZSERVICE.SRVC.  The parameters should be:
    ~webgui 1
    ~transaction ztransaction
    ~client  001
    ~login   username
    ~password  password
    ~language  EN
    The "~webgui 1" allows the ITS to use the Webgui to dynamically generate the page (no IAC needed.)
    The "~transaction" is the transaction code of your service.
    The "~client" is the client number.
    The "~login" is the username.
    The "~password" is the user's password.
    the "~language" is the language for the users.
    Note that the last four are required for automatic logon.  If end users use a variety of languages though the ~language can be prepended to the URL to support different languages.  (Leave it blank in the srvc file then.)
    Edgar

Maybe you are looking for

  • Can't get "suretype" to stay on

    When I am texting or sending a BBM I have to reset my touch screen to "suretype" every time. I have a torch 9800 and prefer to use a reduced keyboard in portrait and suretype is much easier to use. 

  • Un-split the hard drive and re-download Mountain Lion on my second laptop

    I have two partitions on the hard drive of my MacBook Air; one has Snow Leopard (Mac OS X, 10.6.8) and the other has Mountain Lion (Mac OS X, 10.8.3).  As I start saving more files on my MBA, I start having less free space to work with.  When I purch

  • What are Target_ files and can I get rid of them?

    Dreamweaver CS4, new user, have no idea what these are and do I need them for anything? /Applications/Adobe Dreamweaver CS4/configuration/Inspectors/nav A bunch of icons of people I don't know. What are they for?

  • Correct Cover size - Saw 3 sizes?

    Hi, I saw three sizes for to make a cover for ibooks author. One was: Must be one of thse sizes: 1024x768, 1024x748, 768x1024, 768x1004 (H x W) Another said 600 by 1200 and anther wrote 1004 by? What size do I make for the cover in iBooks Author in p

  • Infotype 0002 not allowing blank entries in the form of address field

    For Great Britain (GB), Italy (IT)  and Belgium (BE) , the countries I encountered during testing, when I enter a blank in the 'Form of Address' (Salutation) field in IT0002 - Personal Data and try to view after save, it reverts it back to the old va