Strange: SAPgui for Windows cannot run without SAPlogon installed.

We find out that if there is no SAPlogon installed on a PC, then we CANNOT
run SAPgui for Windows at EP7.
We need a fix for this. That is :
How to run SAPgui for Windows at EP7 on a PC without SAPlogon
installed?
Points guaranteed. Thanks!

For a Transaction iView based on SAP GUI for Windows, SAP GUI for Windows must be installed locally on the client machine.
The other options are GUI for HTML & GUI for Java.
For GUI for HTML you need to enter the details (Host & Path) of the ITS server in the system object.
In ERP 2005 the ITS is integrated with the ERP system.
For GUI for Java you would need to place the SAP GUI for Java installation files at the server and enter its http location in the "com.sap.portal.appintegrator.sap" Service.
This link will give you information about the 3 GUIs.
http://help.sap.com/saphelp_nw70/helpdata/en/7a/d2c23b6fc85106e10000000a114084/frameset.htm
Regards,
Abhishek

Similar Messages

  • SCCM query for Windows 8 machines without software installed

    Would anyone be able to point me in the direction of an SCCM query for a collection that would list all Windows 8 machines without certain software installed?
    Thanks

    I have this query to for systems without software installed:
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,
    SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.
    ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System  
    inner join SMS_G_System_COMPUTER_SYSTEM on  
    SMS_G_System_COMPUTER_SYSTEM.ResourceID = SMS_R_System.ResourceId 
    where SMS_G_System_COMPUTER_SYSTEM.Name not in  
    (select SMS_G_System_COMPUTER_SYSTEM.Name from  SMS_R_System  
    inner join SMS_G_System_COMPUTER_SYSTEM on  
    SMS_G_System_COMPUTER_SYSTEM.ResourceID = SMS_R_System.ResourceId
    inner join SMS_G_System_ADD_REMOVE_PROGRAMS on  
    SMS_G_System_ADD_REMOVE_PROGRAMS.ResourceID =  
    SMS_R_System.ResourceId where SMS_G_System_ADD_REMOVE_PROGRAMS. 
    DisplayName like "%SOFTWARE%")
    The query works, but I would like to modify it so the query only includes certain versions of Windows. Any suggestions would be appreciated
    Thanks 

  • EP6.0 connection to R/3 system without SapGui for Windows

    Hi all !
    I have installed  "SAP NetWeaver Enterprise Portal on SQL server - Developer Edition Sneak Preview"
         - SAP Web Application Server Java 6.40 SP7 and SQL Server 8.0
         - SAP NetWeaver Developer Studio SP7
         - SAP Enterprise Portal 6.0 SP6
    It works fine.
    My colleague installed a MiniSAP R/3 on SapDB with WAS 6.20. It works also fine!
    Now I want to connect my portal to the R/3 system of my colleague, but it works only if I install a SapGui for windows on my PC. I don't want that! If I uninstall SapGui, the portal ask me to download "com.sap.portal.appintegrator.sap ".
    I would only like to access his transactions and databases without anything installed on the client pc. What is the solution? Should I implement WebServices? Or is there a simpler way?
    Thanks for your help.
    Anne

    "For the ITS, I thought I had already that with "SAP Web Application Server Java 6.40 SP7"
    Only true if you installed the portal on a 'true' WebAS and not just the J2EE part. Not sure what the latest status is, but not too long ago a EP6 SP3 or higher was not supported on a full WebAS.
    So development with the developer studio is the way to go indeed. On the other hand, the Visual Composer is a great tool for showing and changing data from SAP in a table form in a matter of minutes. Maybe this is all you need.
    Maybe somebody can explain to me how the integrated ITS on WAS640 really works. I was under the impression that you still need ITS to connect to SAP systems that run on WebAS < 6.40

  • REP-1401: 'no_daysformula':Fatal PL/SQL error occured. ora-06503: PL/SQL : Functio returned without value. REP-0619: You cannot run without a layout.

    Hi everyone.
    Can anyone tell me what is wrong in this code below?
    Code:
    function NO_DAYSFormula return Number is
    begin
      IF TO_CHAR(TO_DATE(:P_FR_DT, 'DD-MM-RRRR'), 'RRRR') =TO_CHAR(TO_DATE(:ACCT_OPN_DT, 'DD-MM-RRRR'), 'RRRR')
      AND :P_TO_DT<:MATURITY_DATE
      AND :ACCT_OPN_DT>:P_FR_DT
      THEN RETURN (:P_TO_DT-:ACCT_OPN_DT+1);
      ELSIF TO_CHAR(TO_DATE(:P_FR_DT, 'DD-MM-RRRR'), 'RRRR') =TO_CHAR(TO_DATE(:ACCT_OPN_DT, 'DD-MM-RRRR'), 'RRRR')
      AND :P_TO_DT<:MATURITY_DATE
      AND :ACCT_OPN_DT<:P_FR_DT
      THEN RETURN (:P_FR_DT-:P_TO_DT+1);
      ELSIF TO_CHAR(TO_DATE(:P_FR_DT, 'DD-MM-RRRR'), 'RRRR') =TO_CHAR(TO_DATE(:ACCT_OPN_DT, 'DD-MM-RRRR'), 'RRRR')
       AND :P_TO_DT>:MATURITY_DATE
       AND :ACCT_OPN_DT<:P_FR_DT
      THEN RETURN (:P_FR_DT-:MATURITY_DATE+1);
      END IF;
    END;
    It gets compiled successfully but when i run the report, i get 2 errors.
    Error 1:
    REP-1401: 'no_daysformula':Fatal PL/SQL error occurred.
    ora-06503: PL/SQL : Function returned without value.
    Error 2:
    REP-0619: You cannot run without a layout.
    Should i use only 1 return statement?
    Can i use as many return statements as i want?
    What is the exact mistake? Please let me know.
    Thank You.

    Let me clear you the first thing...
    If you get any fatal errors while running the report (e.g., function returned without value,no value etc.,) the report will show
    REP-0619: You cannot run without a layout.
    So you just correct the function 'no_daysformula' .
    First of all you run the report without that formula column.
    If it works fine then , Check the return value of your formula column (Your formula column properties --> Return value --> value (It will be DATE as i think so).
    As function will always return a single value, Check your formula 'no_daysformula' returns the same.
    declare a return variable say for example..
    DECLARE
    V_DATE DATE;
    BEGIN
    --YOUR CODE---
    RETURN V_DATE := (RETURN VALUE)
    END;
    Last but not least ... use Else condition to return (NULL or any value ) in your code and check..
    If any Problem persists let me know
    Regards,
    Soofi.

  • SAPGUI for Windows via Portal - problem with frame

    We are launching SAPGUI for Windows via Portal to drive single sign-on via AD.  Our problem is that when SAPGUI launches, it is contained within an IE browser frame that causes some of the SAPGUI screens to not fit on the screen well.  Those same screens fit just fine if we launch SAPGUI directly.
    Is there any way to launch SAPGUI from Portal, with SSO enabled, but without the IE frame around it?

    Lonny,
    The best way to authenticate users when they logon using SAP GUI for Windows, is to use SNC authentication in SAP GUi. Then, the browser iview will launch the GUI and the GUI will authenticate the user using their AD credentials issued during the Windows logon. You will need to setup an SNC library on both the ABAP system which the user is logged onto, and the workstation where SAP GUI is installed.
    If you don't use SNC, and you just launch SAP GUI for Windows from browser, then an SSO2 ticket is used to authenticate the user to the ABAP stack, and this is not secure due to the fact that the SAP GUI session which is used to pass the SSO2 ticket is not protected - anybody can intercept the SAP GUI session, take the SSO2 ticket from this traffic and logon as that user - clearly this is bad security and needs SNC to make it secure.
    Thanks,
    Tim

  • WinGUI vs. SAPGUI for Windows.

    Hi,
    the terms "<b>WinGUI</b>" and "<b>SAPGUI for Windows</b>" are frequently used as synonyms in these forums, yet they seem to be different.
    When I start a "<b>WinGUI</b>"-based iView in my Portal (EP6) in a separate window, what I see is definitely <b>not</b> "<u>SAPGUI for Windows</u>" (the Win32 application, that we all know), but rather another instance of my browser (MS internet explorer) with "something" that looks quite similar to "SAPGUI for Windows".
    So, that is "WinGUI" then? is it a <u>java applet</u>? a component that comes with <u>ITS</u>? another "trick" running SAPGUI in a web browser window?
    If I use the "View/Source code" menu command in IE on that "WinGUI" window, I don't see anything. Usually, notepad would open and display the HTML source code of the current page. Not so with "WinGUI"
    Puzzled.
    Does anyone know what the difference is?
    regards
    Lothar

    Hi Lothar,
       There are three types of GUI.
    Win Gui or SAP Gui: Win32 Fat client
    SAP Web Gui: Gui via ITS
    SAP Java Gui: Gui that uses java render fat client
    What you are seeing is Win Gui or SAP Gui running inside internet explorer. Kind of like Acrobrat reader, microsoft excel embedded withing IE. You can make the win Gui popup outside the IE by changing the iview properties to SSF.

  • Did favorites get replaced by shortcuts in SAPGUI for windows?

    Hi all,
    We just upgraded SAPGUI for Windows on several workstations from  (going from 640 to 710) and noticed that users lost the list of favorites they created. So my first question is: were favorites replaced by shortcuts? My second question is: were the original favorites stored in saplogon.ini (which we replaced as part of our upgrade)?
    Thank you for your time. Pointers to helpful documentation appreciated.
    J. Haynes
    Denver, CO

    Hi Joe,
    the favorites are stored within the SAP-system (table SMEN_BUFFC). That's why you have to download them to your client and import them into another system. Could it be, that you're testing your new GUI with a new system...
    Only the connection parameters are stored in SAPLOGON.INI
    And finally, shortcuts aren't new to 7.10 - they exist since 6.20...
    Regards,
    Peter

  • SAPGui for Windows Multiple Logon with Portal

    Hi,
    We are using SAPGUI for Windows in Portal in the external window, we are also using it the SAPConsole form the desktop. While using from desktop, the multiple logon (within same client) complains / comes with the pop-up with two standard options.
    We would like achieve the same functionality of popup (Restricting multiple logons for the same client) within the portal, any ideas?
    I came across certain threads and also notes but none seem to provide a solution....
    [Restrict multi logon to R/3 system from portal using single sign on.    |Restrict multi logon to  R/3 system from portal using sigle sign on.;
    [SAP GUI 7.10 and SSO - multiple logons issue. How to restrict it?    |/thread/1623980 [original link is broken];
    Note 142724 - Prevention of multiple SAPGUI logons
    Thank you in advance.
    Best regards,
    Dharmi
    Edited by: Dharmi Tanna on Jun 25, 2010 2:09 PM

    Lonny,
    The best way to authenticate users when they logon using SAP GUI for Windows, is to use SNC authentication in SAP GUi. Then, the browser iview will launch the GUI and the GUI will authenticate the user using their AD credentials issued during the Windows logon. You will need to setup an SNC library on both the ABAP system which the user is logged onto, and the workstation where SAP GUI is installed.
    If you don't use SNC, and you just launch SAP GUI for Windows from browser, then an SSO2 ticket is used to authenticate the user to the ABAP stack, and this is not secure due to the fact that the SAP GUI session which is used to pass the SSO2 ticket is not protected - anybody can intercept the SAP GUI session, take the SSO2 ticket from this traffic and logon as that user - clearly this is bad security and needs SNC to make it secure.
    Thanks,
    Tim

  • I need appleisightinstaller.exe to install the isight driver for Windows Vista running in Parallel Desktop 6 for Mac, but I don't have a Leopard DVD. What came with my Macbook Air was a flash stick "MacBook Air Software Reinstall Drive" only.

    I need appleisightinstaller.exe to install the isight driver for Windows Vista running in Parallel Desktop 6 for Mac, but I don't have a Leopard DVD. What came with my Macbook Air was a flash stick "MacBook Air Software Reinstall Drive" only.

    All,
    A very interesting NOTE to this thread. In order to try and get the "ignore permissions" box to show up in GET INFO (so I could execute Matt the Magician's solution to file sharing issues)-- I ran the terminal command for disabling ACLs on my internal HD / start up disk (as indicated in the linked thread to BDAqua's forum).
    Although I understand that this was useless for disabling permissions on the start up disk (as everyone here pointed out) and allowing me to see the "ignore permissions" check box - somehow it did seem to fix my file sharing problem...and that was the root problem I wanted solved in the first place! After doing the terminal command and a quick reboot, I went in and tested file sharing on the chosen directory and I can create new files or work from existing files in the directory, with both users being able to modify / and save from both machines and each machine sees the revisions and can build from them. Bottom line - I'm stoked and want to thank everyone for their help.
    The only other tweak I made was going over to my wife's machine and instead of using her log in / password, I just used my name and password to connect to my main machine that was sharing directories. Maybe that's what fixed the problem or the ACL disable but either way...I'm up and running the way I want to be.
    Hope this thread helps anyone else who has these file sharing / permissions issues with Leopard. Especially for anyone wanting to do such a simple file sharing set up between 2 computers. I wish I understood exactly which tweak fixed the problem, but at least it works the way I want now.
    So happy to be done w/this one!
    Thx everyone. Any additional input on what solved it is welcome, so my curiosity is quelled...
    TC

  • UWL launching SAPGUI for windows?

    Hi Expert,
       I am exploring whether i can direcly launch a "SAPGUI for windows" 's workflow task item from UWL.  I have a mixture of env with which one of workflow can only be executed on "SAPGUI for windows".
    If user click the task item in UWL of protal, can i launch the correpsonding work item task from "SAP Gui for Windows?" (i.e. lanching a thick SAPGUI for windows client and open the correpsonding item task, just like a short cut)

    Hi..
    You are accessing Tcode in browser, it means we have to use sap gui for html only not windows.
    The display is restricted only to a small of the IE screen
    Do you mean, tcode opens in minimize window mode? if yes, then in create_external_window method ,  try to maximize the window by default.
    Regards
    Srinivas

  • Launching SAPGUI for Windows from WD application

    Hi,
    I have managed to launch an SAPGUI transaction "BRF+" at the click of a link on my Web Dynpro application. For this, I used the sample code from Reg calling Transaction code in Webdynpro ABAP
    However, this opens the SAPGUI for HTML, where the transaction is not rendered correctly. The display is restricted only to a small of the IE screen, and no button clicks are working.
    Is there any way to fix this? Or, is it possible to launch SAPGUI for Windows from a WD application?
    Thanks, Rohan.

    Hi..
    You are accessing Tcode in browser, it means we have to use sap gui for html only not windows.
    The display is restricted only to a small of the IE screen
    Do you mean, tcode opens in minimize window mode? if yes, then in create_external_window method ,  try to maximize the window by default.
    Regards
    Srinivas

  • WHAT TO PURCHASE FOR WINDOWS TO RUN OM IMAC

    I need help on what to purchase for windows to run on imac?

    Along with the edition, what you need to run (in Windows) and whether you need to run Windows natively and dual boot, or both dual boot and use a VM, need to be answered.
    The more RAM and the better your cpu (new 2012? or older) and allocating say 80GB for Windows partition.
    You do realize that most questions are answered on the support page:
    http://www.apple.com/support/bootcamp

  • RSBBS Receiver in SapGUI for Windows

    I have a jump target defined as an R3 transaction.  When I execute the jump, the transaction opens in a browser windows.  I guess it is SapGUI for HTML using ITS on the R3 system.  I want the transaction to open in a SapGUI for Windows session.  Where is the config/setting that controls if the session is SapGUI for HTML or for Windows?
    Thanks

    Hello Dave,
    When jump from a web application (web report) to transaction, you can only jump to HTML Gui, not possible to SAPGui. This is the design. Is this your case too ? Please refer to following help files.
    http://help.sap.
    com/saphelp_nw2004s/helpdata/en/b6/70703f781d4a18e10000000a114084/frames
    et.htm
    With Regards,
    Asit Ramteke

  • 3 copies of ipod for windows version 4.7.0 installed on hard drive

    We have 3 ipod for windows version 4.7.0 installed on our hard drive each using 169 MB. The computer control panel says they have not been used in 2 years. We have 4 ipods (1st gen nano, 2nd gen nano, 3rd gen nano, 1 shuffle) installed on computer. The last 3 being installed during last 6 months. Can we clear some of this software of our hard drive? without modifying any of our accounts.

    We have 3 ipod for windows version 4.7.0 installed on our hard drive each using 169 MB. The computer control panel says they have not been used in 2 years. We have 4 ipods (1st gen nano, 2nd gen nano, 3rd gen nano, 1 shuffle) installed on computer. The last 3 being installed during last 6 months. Can we clear some of this software of our hard drive? without modifying any of our accounts.

  • Jabber for Windows - periodically tries to re-install and fails

    Jabber 9.1
    CUCM 7.1.3
    Windows 7 32 bit
    Cisco Presence   8.0.2.10000-30
    Jabber for windows - periodically tries to re-install and fails. After install Jabber works for awhile but then when trying to open another program(Outlook, IE Explorer) it tries to re-install.  If I go to the directory where the install files are and do repair it works.  This seems like a conflict with another application.
    I see this in the Windows application event log:
    Detection of product '{4EB9D7DD-65B5-44ED-B877-CE3EF9B4530F}', feature 'Cisco_Jabber_Files', component '{7CB949BE-2270-4992-9C4C-8FDDB90F6FE2}' failed. The resource 'C:\Program Files\Cisco Systems\Cisco Jabber\JabberMeeting\DesktopShare\atgpcdec.dll' does not exist.
    Jabber 9.1
    CUCM 7.1.3
    Windows 7 32 bit
    Cisco Presence   8.0.2.10000-30

    Hi,
    Do you have WebEx Productivity plugin installed on the  machine? I can reproduce this problem after exiting Jabber, creating a  One-click meeting from Outlook and restarting Jabber. Please provide  further information to help me open a defect.
    - What was the version of Jabber on this machine prior to 9.1.0?
    - What is the version of the WebEx productivity tool plugin (if it is installed)?
    - Is there a particular sequence that you can follow to reproduce it everytime?
    Thanks,
    Maqsood

Maybe you are looking for

  • Oracle 9i database Dwonlaod - failed

    Hi, I am trying to download the oracle 9.2.0.1 database, but it is displaying the information as "Sorry, this page was not found. (ErrorDocument 404)". Help me out thanks sri

  • Get songs out of Genius Mixes??

    ok I love the Genius Mix feature but I have my cousin who syncs her iPod with my computer and I have some of the songs and they show up in the Mix. Is there anyway to get them out by changing something? I have already unchecked it (not sure what that

  • Lost link to my library - Iphoto, Dock, Safari

    Hi, I recently switched from pc to Mac... and I still have troubles getting around a few issues. This morning, after downloading pictures from my camera, Iphoto signaled that some pictures were not readable. After I restarted my mac, the Dock (bottom

  • Understanding output of sh crypto ipsec sa peer

    Hi All, I a bit puzzled by why the remote indent and remote crypto endpointpt ID is different.  I also noticed that the remote ident address matches the remote NBMA address, but just not the remote crypto endpt address.  I really expected the remote

  • Standard smartforms for SD-Notification, Service order, Rental agreement

    Hello all, Could anyone let me know if any standard SMARTFORMS available for Notification - SD Service order - SD Rental Agreements - SD Reminder for order confirmation - MM Goods issue - MM Physical inventory slips - MM Spare part labels - MM Is the