Need SAP GUI for Mac and process of how to install and configure

Hi Experts,
     I need SAP GUI for Mac. Also please explain the process of how to install, how to configure etc? Please help me.

You can download the SAP Presentation DVD that will have the SAPGUI Java version for OS X. After you install, just run the app from the Application Folder.
For config there are a few options:
1. To connect to a DI directly. After starting the app, click new and under the "Advanced" tab use the following string:
   conn=/H/(hostname)/S/(port / 3200 for instance ID 00)
2. To connect to a login group. After starting the app, open the "Preferences" / Configuration / Messageservers, you need to set a path to a file that has the message servers in the following string
(SID) :     /M/(hostname)/S/(message server port)
Then click "New" and on the first tab you can choose a system and login group.
Hope this helps.
Thank
matt

Similar Messages

  • SAP GUI for Mac OS X 10.4

    I want to upgrade my Macs to Apples current operating system Mac OS X 10.4.1 Tiger. I had read few weeks ago, the JAVA-Implementation doesn't work with any SAP GUI for Java. SAP has recommended, to still work with Mac OS X 10.3.9 and SAP GUI for Java 6.30 Revision 8.
    When will be available a working SAP GUI for Mac OS X 10.4.1 Tiger ? Has someone informations ?

    Hello all,
    I completely understand the impact of the missing Mac support. I try to explain the reason for the current situation and give an outlook.
    Starting in summer 2004, the SAPGUI development team and test labs have dedicated a significant amount of time in testing on Mac OS X 10.4 preview versions, reporting bugs and pushing Apple to fix them. We opened more than 20 bug reports, which were not exclusively related to SAP GUI, just plain JFC/Swing issues. Unfortunately two show-stoppers for SAP GUI were left at the time Apple shipped Mac OS X 10.4.
    Since April this year we are running more tests on developer preview versions of the Java 1.4.2 Release 2, which is supposed to address these issues.
    With developer preview 3, there are no severe open issues left and we are just waiting for Apple to ship the final version of JRE 1.4.2 Release 2.
    Apple has not disclosed any shipment schedules in the past and so we have not been able to plan for something. If we would have known in advance, that the final version will be that long after developer preview 3, we would have started a beta seed based on a TEA (test and evaluation agreement) at the time developer preview 3 was available (beginning of August).
    Last week Apple has indicated that the final version of Java 1.4.2 Release 2 is expected to become available every day now. I hope Apple is right and this thread will be obsolete soon. SAP GUI for Java 6.40 rev 4 including the Mac OS X version is already waiting on the loading ramp.
    If there is no final version of Java 1.4.2 Release 2 by end of September we will provide an unsupported SAPGUI based on a test and evaluation agreement.
    Best regards
    Rolf-Martin

  • SAP GUI for windows and HTML

    Hello,
    We have problem running a custom program, when it was integrated as Transactional iView with SAP GUI Type as SAP GUI for HTML.
    But, the same program is running fine with SAP GUI Type as SAP GUI for Windows.
    Is there any possibility to make some modifications to properties and make the SAP GUI for HTML working.
    Thank you.

    Hi,
    We have a custom ABAP program, where we we can upload data through an excel file.
    The xls file can be uploaded from local drive.
    So, we have created a Transactional iView with SAP GUI Type as SAP GUI for HTML.
    When we try to run the program with an excel file, we are receiving an error message - "Empty input file or input file not found"
    Then we have created a Transactional iView with SAP GUI Type as SAP GUI for windows and was successful in uploading the xls file.
    Just want to understand, if there is any possibility to make some modifications to properties and make the SAP GUI for HTML working.
    Thanks in Advance.

  • Sap gui for mac

    Hi everyone,
    I have been using sap gui on windows before and now I wanted to shift to mac. can anyone please let me know how I can use Sap gui on mac os. I have installed the gui for java on my mac os but I am unable to configure it. i would greatly appreciate if anyone could help me in this issue. thank you
    regards
    rahul

    Hi
    As you have alreay installed the SAPGui for Java on MAC OS
    Please do this, to do the connection with SAP:
    Click on New System to add. Go to tab "Advanced"
    Enter the following String:
    conn=/H/<<Router String detail>>/H/<<System IP to which to connect>>/S/32<<SYstem Number>>
    Else you can create the file to connect also.
    Please check this
    SAPGUI Java Configuration

  • Which role that Take a iview use SAP GUI for HTML need ?

    hi all
        i made a transaction iview use the  sap gui for html,and this ivew add a role,the role add a user.and the user had only this role.when i use the user logon the portal,it will give me a error message:
      portal runtime error....
       whether it need another necessary role?
       and when i take the user to mapping user.i can't found any system that i had configration.
        but i can do all use admin user .
       what i can do?

    Use System admin -> System Config and find your system in the PCD (under portal content). Right click and open -> permissions. Find a user or group or role and give it the end user permission. I'd suggest the group Everyone.
    Cheers

  • SAP GUI for JAVA - Search Help ALV display

    I need to be able to display search helps in the ALV grid format or the ' Dialog Modal ' option as seen on the <b>Settings for all F4 helps</b> tab under the personalize option for search helps.
    Currently when I am using a Macintosh machine the system ignores the system setting and my personal settings and displays all search results in an ABAP List format. Unfortunately the ABAP list format does not work correctly when used to input a field on another ABAP list report.
    This behaviour can be found on the Mozilla Firefox browser when SAP GUI for HTML and the SAP GUI for JAVA.
    Your help will be greatly appreciated.

    Hi Rolf-Martin,
    Thank you for your detailed explanation on how the ALV grid control is implemented for the SAP GUI for Java.  This has been pretty insightful.  The good news is that I finally figured out a solution to my problem.  You see I inherited an old custom program where an ABAP list is used as an interactive data capture screen with input fields.  Well a couple of fields had search helps. The program has worked fine with the regular SAP GUI until a MAC OS user tried to use it with the SAP GUI for Java.  Whenever they selected a line from the search help it would bring back the entire onto their input screen.
    A sample of the code:
    form search_help.
        CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
           EXPORTING
                TABNAME     = 'EKPO'
                FIELDNAME   = 'MATNR'
                SEARCHHELP                = 'ZMAT1_A'
                SHLPPARAM                 = 'MATNR'
           TABLES
                RETURN_TAB       = RET_TABLE.
    IF NOT RET_TABLE-FIELDVAL IS INITIAL.
       LINXX-XMATNR = RET_TABLE-FIELDVAL.
       MODIFY CURRENT LINE FIELD VALUE XMATNR FROM LINXX-XMATNR. " ****
    ENDIF.
    SET CURSOR 9 SY-CUROW.   " ********
    endform.
    The problem was being caused by the fact that the search help ABAP list was overriding the sy-XXXX values for the current line contents, index, pageno, cursor row for the calling ABAP list. So when a user selected a row from the search help this would now become the current context and be transferred back to the calling program. 
    The fix was pretty simple; all I had to do was save the current line context and the context prior to calling the search help.  After the search help was run I would then replace the current line with the saved one in my local variable.  I hope this makes sense. We now have a couple of happy MAC OS users.
    Once again I thank you for your patience and support in  this matter.
    Have a great day,
    Edwin.

  • Connect to SAP R/3  using SAP GUI for HTML through saprouter

    Hello,
    I have my system running on my intranet, but I need to connect some support enginners through an Internet connection. Nowadays some users can connect to QAS and PRO systems using SAP GUI for windows and java with the saprouter string,  but the support enginners are using SAP GUI for HTML, do I need a special string or configuration so html users can connect to my system from the Internet?
    Thanks in advance.

    thanks, I can get the data from SAP R/3 to crystal report.
    but still dont know how to do the second question mentioned in previous message:
    once the table I want to get the data from is a cluster, and have found the mapping data dictionary of this data cluster, which displayed in crystal report connection as well, however, the data is not what I wanted.

  • Launch Approval Appraisal Documents in Iview format not SAP GUI for HTML

    Hi,
    Sorry iam not sure whether this is the right place to post this question.
    I have a requirement where i need to change the appearance of UWL tasks related to appraisal approval.
    Whenever a user clicks on approve apraisal tasks it is popping SAP GUI for HTML and taking to the backend showing Performance appraisal display.Our client are in need of normal iview rather than sap view( sap gui view).
    I have identified the tasks related to approval appraisal.The tasks in the backend are
    approval appraisal - perf appraisal - ts91000005, URL generation - ts12300108 , Submitted obj - WS 91000003.
    i have created an iview based on http://xxx.xxxx:8000/sap/bc/bsp/sap/hap_document/documents_todo.htm?sap-client=xxx&sap-user=xxxx&sap-language=E
    i have given the ID and iview PCD link in SWFVISU.Reregistered UWL again and logged in as a test user.When clicked on Appraisal approval i can see the appraisals completed.It wont allow us to edit.All hap_documents are BSP pages.
    I guess i did something wrong.
    i have followed these links.
    http://wiki.sdn.sap.com/wiki/display/ERPHCM/PMSworkflowsin+UWL
    Error: Launch appraisal Workitems in UWL in Portal...
    Appraisal approval after completion not possible in BSP
    Please let me know the procedure to show the approval items in a normal iview format.
    Thanks in advance.
    Chakri.

    Chakri,
    You will probably have  to change the XML being used in your UWL. Go into the ItemType portion for the PM task and check/set  the following properties
    connector="WebFlowConnector"
    defaultAction="launchIView"
    Check if your Action tags within the ItemTypes have the following properties
    name="launchIView"  handler="SAPAppLauncher"
    Check whether the Property within Action tags is linked to your BSP view  that you want to trigger when the task is clicked
    For e.g. <Property name="SAPIntegrator" value="ROLES://portal_content/com.sap.pct/line_manager/com.sap.pct.erp.mss.bp_folder/com.sap.pct.erp.mss.pages/....."/>
    Once you change your XML dont forget to re-register your ItemTypes to the connector you are using.
    Good luck
    Pooja

  • SAP GUI for Windows - Extended Notification

    Hello All,
    I have set up the extended notifications for outlook integration with sap workitem.
    Subscription settings are as follows:
    SHOW_ACTION_DECISION_AS     - Link
    SHOW_ACTION_DISPLAY_AS      - Link2
    SHOW_ACTION_EXECUTE_AS      - Link2
    SHOW_INBOX_AS                         - Link2
    I am receiving the work item on outlook successfully.
    Now the thing is, when i click on display/execute/workflow inbox link; it is opening the SAP GUI for html & giving error "host not found". As per my subscription settings, it should open the work item in SAP GUI for windows.
    I am using the general task TS..8267 & not defined any SWFVISU config to overwrite SWNCONFIG.
    Do i have to make any other setting so that my http link "Workflow Inbox"/"Display Work Item"/"Execute Work Item" gets open in SAP GUI for windows and not in SAP GUI for html?
    Any help will be highly appreciated.
    Thanks,
    Y Sharma

    Markus,
    with all respect, but this is nonsens, I mean not your answer, but SAP's policy.
    Today I can customize Windows, webpages (if implemented), my Android smartphone, with all colors, icons and much more.
    SAP is ages back in time, I would dare to say that SAP even made a huge step backwards with the new design and should re-think its policy.
    How many times customers have asked for a custom-colored GUI? Countless, I would say. Speaking from the point of a developer it is important to see at first glance which systems I've logged on, and believe me we have plenty of it.
    cu,
    Michael

  • In need of help going from Windows SAP GUI to Mac/Java SAP GUI 7.20

    Hi Everyone, first post...I want to thank you in advance for any assistance you are able to provide.
    I got everything working except for 1 out of 6 servers I need to connect to - of course this is the most important one.
    It all comes down to the conversion of saplogon.ini to the new file format, instead of using the GUI to make a list I have created 6 individual .sapc files that I run directly. I found some converters but only had so much success with them, nothing solid and 100% full proof.
    I'm going to post my windows config files and maybe you can tell me why logging into this system GP8 doesn't work from my mac?
    saplogon.ini (I believe it's item 4 that is the full config for the server I'm trying to connect to)
    [Configuration]
    SessManNewKey=80
    MessageServerTimeout=10
    WithWizard=0
    ConfirmDelete=1
    NoEditFunctionality=0
    SapguiHexdumpActivated=0
    SapguiTraceActivated=0
    SapguiTraceLevel=1
    SapguiNTCmdOpts=
    [Router]
    Item1=
    Item2=
    Item3=
    Item4=
    Item5=/H/10.201.200.27/saprouter.fa.de/H/
    Item6=
    [Router2]
    Item1=
    Item2=
    Item3=
    Item4=
    Item5=
    Item6=
    [RouterChoice]
    Item1=0
    Item2=0
    Item3=0
    Item4=0
    Item5=0
    Item6=0
    [Server]
    Item1=171.18.85.21
    Item2=171.18.85.26
    Item3=GI7001.trans.de
    Item4=PUBLIC
    Item5=gtlson10.fa.biz
    Item6=gtlson19.fa.biz
    [Database]
    Item1=00
    Item2=01
    Item3=34
    Item4=88
    Item5=26
    Item6=21
    [System]
    Item1=3
    Item2=3
    Item3=3
    Item4=3
    Item5=3
    Item6=3
    [Description]
    Item1=ASNA PRD
    Item2=ASNA TST
    Item3=GI7
    Item4=GP8
    Item5=JPF
    Item6=JPW
    [Address]
    Item1=
    Item2=
    Item3=
    Item4=141.228.205.97
    Item5=
    Item6=
    [MSSysName]
    Item1=PRD
    Item2=TST
    Item3=GI7
    Item4=GP8
    Item5=JPF
    Item6=JPW
    [MSSrvName]
    Item1=
    Item2=
    Item3=
    Item4=gp8001.trans.de
    Item5=
    Item6=
    [MSSrvPort]
    Item1=
    Item2=
    Item3=
    Item4=sapmsGP8
    Item5=
    Item6=
    [SessManKey]
    Item1=-1
    Item2=-1
    Item3=-1
    Item4=-1
    Item5=-1
    Item6=-1
    [SncName]
    Item1=
    Item2=
    Item3=
    Item4=
    Item5=
    Item6=
    [SncChoice]
    Item1=-1
    Item2=-1
    Item3=-1
    Item4=-1
    Item5=-1
    Item6=-1
    [Codepage]
    Item1=1100
    Item2=1100
    Item3=1100
    Item4=1100
    Item5=1100
    Item6=1100
    [CodepageIndex]
    Item1=-1
    Item2=-1
    Item3=-1
    Item4=-1
    Item5=-1
    Item6=-1
    [Origin]
    Item1=USEREDIT
    Item2=USEREDIT
    Item3=USEREDIT
    Item4=MS_SEL_GROUPS
    Item5=USEREDIT
    Item6=USEREDIT
    [LowSpeedConnection]
    Item1=0
    Item2=0
    Item3=0
    Item4=0
    Item5=0
    Item6=0
    [MSWinPos]
    NormX=324
    NormY=263
    [MSLast]
    MSLast=GP8
    [Utf8Off]
    Item1=0
    Item2=0
    Item3=0
    Item4=0
    Item5=0
    Item6=0
    [EntryKey]
    Item1=
    Item2=
    Item3=
    Item4=
    Item5=
    Item6=
    [EncodingID]
    Item1=DEFAULT_NON_UC
    Item2=DEFAULT_NON_UC
    Item3=DEFAULT_NON_UC
    Item4=DEFAULT_NON_UC
    Item5=DEFAULT_NON_UC
    Item6=DEFAULT_NON_UC
    [ShortcutType]
    Item1=0
    Item2=0
    Item3=0
    Item4=0
    Item5=0
    Item6=0
    [ShortcutString]
    Item1=
    Item2=
    Item3=
    Item4=
    Item5=
    Item6=
    [ShortcutTo]
    Item1=
    Item2=
    Item3=
    Item4=
    Item5=
    Item6=
    [ShortcutBy]
    Item1=
    Item2=
    Item3=
    Item4=
    Item5=
    Item6=
    Another file I think is important: sapmsg.ini
    [Message Server]
    MSS=MSSAP00
    MST=SAPTST00
    MS1=SAPDEV00
    MSX=sapsbx99
    MSU=sapmsu99
    APP=apoapp00
    MBW=mssapbw
    APT=apotst00
    APS=aposbx00
    MB1=sapdevbw
    MBT=saptstbw
    P01=dryrun00
    MS2=sapms299
    MBX=sapsbxbw
    GP8=gp8001.trans.de
    Another file that may be important?
    SAPROUTE.ini
    [Router]
    sapprd=/H/10.201.200.21/H/saprouter.fa.com/H/
    gtlson10.fa.biz=/H/10.200.201.21/H/saprouter.fa.com/H/saprouter.fa.de/H/
    This is what my *.sapc file looks like after changing it up a few times, I am certain it is wrong:
    conn=/H/gp8001.trans.de/&clnt=401&expert=true
    Please tell me from all the info you have here what needs to take place for me to be able to connect to GP8. Can I do it from an sapc file? Do I have to configure other core files and go to my preferences and tell SAP to look at certain configs? I'm sure someone here can help me.
    Thanks so much for your time
    John
    Edited by: nstabl on Feb 27, 2012 10:07 PM

    Hello John,
    please try the "SAP GUI for Java Configuration Generator Scripts" available at http://scn.sap.com/docs/DOC-25456#section9 .
    For using the message server to connect to GP8, the information of the port number of the message server for GP8 is missing. For direct connection to GP8, it might work to use the connection string "conn=/H/gp8001.trans.de/S/3288" .
    Best regards
    Rolf-Martin
    Message was edited by: Rolf-Martin Woersinger
    update link, which was broken after SCN upgrade

  • SSO E-Sourcing and SAP GUI for HTML

    Hi,
    We are trying to provide integration between SAP E-Sourcing and SAP ECC via the SAP GUI for HTML. From an E-Sourcing project, we should define a link which will link us to the report via SAP GUI for HTML. Some parameters are automatically transferred via the URL so that the report will be prefiltered.
    The problem arises that we cannot create a SSO mechanism between SAP E-Sourcing and SAP GUI for HTML. The only documentation we can find is how to setup this SSO between the Portal and ESO (only included going from the EP to ESO). We need to find a way to do the opposite, i.e. SSO from ESO to SAP / EP.
    Thnx,
    Bram

    Dear Chong,
    I have came across the following information about SAP GUI For HTML
    With the version 7.02 / 7.20 of the NW Application Server
    the SAP GUI for HTML has been completely
    reworked.
    1.The rendering is now based on Unified
    Rendering which is also used by many other
    SAP UI technologies.
    2.Similar Look & Feel as other UI technologies
    3.Better Portal integration
    4.Full Theme support
    5.Unified client requirements
    But have not came across any note which converts the SAP GUI for HTML to SAP GUI for Windows in appearacne. I think the point 2 mentioned about says that in this version the SAP GUI for HTML will have appearnce like the other UI.
    Pls refer the [link|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/d06db80d-ebf4-2a10-6b99-faa652c69d5c?QuickLink=index&overridelayout=true]
    Hope it helps.
    Regards,
    Samir

  • SAP GUI for Java 7.00 or 7.10 for mac os 10.4 or 10.5

    Hi
    From which site I can download SAP GUI for Java 7.00 or 7.10 for MaC os 10.4 or 10.5 version
    Regards,
    Harish Shetty

    Hello Harish,
    SAP GUI for Java 7.00 and 7.10 are no longer supported and as a result, are not available from SAPs download locations.
    You can use SAP GUI for Java 7.20 on Mac OS X 10.5 in case JSE 6 can be installed (requires 64-bit Intel CPU, see [note 1400273|https://service.sap.com/sap/support/notes/1400273]).
    Best regards
    Rolf-Martin

  • I have Adobe Photoshop Elements 10 and Adobe Premier 10 loaded on a Dell PC. Do I need to uninstall from the Dell before I install on a recently purchased Apple Mac Pro? There are separate disks for Mac and PC in the package.

    I have Adobe Photoshop Elements 10 and Adobe Premier 10 loaded on a Dell PC. Do I need to uninstall from the Dell before I install on a recently purchased Apple Mac Pro? There are separate disks for Mac and PC in the package.

    Generally, it's ok to install on two machines as long as they are both yours and you only use one version at a time.
    BTW, this is the forum for Adobe Contribute.

  • WebDynpro proxy page with Webdynpro iView and SAP Gui for html iView

    Hello,
    I have a requirement to have a page that has at the top of it a webdynpro for java iView screen with several links that when pressed pop-up various data pulled from the back-end. This part is fine and presents no problem. Beneath this the requirement calls for a SAP Gui for HTML iView to be displayed. Which is no problem either. The problem occurs when one of the links in the java webdynpro application at the top of the screen is pressed it causes the SAP Gui for HTML portion to refresh and come back to the beginning. So for example you first navigate to this screen and you go into the sap gui for html portion and drill into 2 or 3 screens in the sap gui for html transaction. If you then press one of the webdynpro links the sap gui for html (which is a separate iView) refreshes and you are taken back to the initial screen. This only occurs when using a web dynpro proxy page. If I use a standard page the SAP Gi for html does not refresh. Unfortunately there are other things not mentioned here that require us to use the webdynpro proxy page.
    Any help is greatly appreciated,
    Bert

    Use System admin -> System Config and find your system in the PCD (under portal content). Right click and open -> permissions. Find a user or group or role and give it the end user permission. I'd suggest the group Everyone.
    Cheers

  • ALV GRID  and Integrated ITS 7 (SAP GUI for HTML) - dissapears on reload

    Hi All,
    We have a custom report that uses an ALV grid to display information to the user. Within this grid, there are fields that are display only and fields that are editable. Also, the grid is wider than the screen's width. It works fine in ECC. It also worked fine when we were using ITS 6.4.
    We have recently upgraded to ITS 7. Now when we run the report using a Transaction iView (in EP 7) or the Webgui service (SAP GUI for HTML), if a field that is editable has focus when an event is triggered that reloads the grid, the screen becomes blank. So, you can click the Save button and the screen goes blank, also, there are date fields in the grid and if you choose a new date, the grid reloads and the screen becomes blank.
    We have found that when the screen is blank, you can use the "Page Up" button on your keyboard and the last few columns of the grid will appear. As if the entire grid has moved off-screen to the left.
    If you click onto a non-editable field and refresh or save, the grid returns to its normal state.
    We are on Basis Patch level 15.
    Does anyone have any ideas on how to fix this?
    Also, does anyone know of a standard SAP transaction we can call from the Webgui that would have a similar setup...with an ALV grid containing editable and non-editable fields? We would like to rule out any errors in the report itself. Since it worked before we upgraded and it works fine in ECC. This would be a really big help too.
    Thank you so much!
    -Kevin

    Hi,
    Thanks Raymond, I have seen Note 314568. I could not get the second link to work but I have looked at just about every Note in reference to Integrated ITS 7 and Tables or ALV Grids and there are very many, so it would appear that SAP has had a hard time with implementing this control, but I have not seen any instance that matches the problem we are having.
    Unfortunately, SAP will not investigate this unless we can provide a standard Transaction that exhibits the same behavior.
    If anyone knows of a standard SAP Transaction that displays an ALV Grid that is wider than the screen (requiring a horizontal scroll bar) and with editable and non-editable fields, that would be fantastic. If we can test against that, then we would know for sure if this is a problem with ITS / SAP GUI for HTML, or if there is an issue with this specific report.
    Thanks!
    -Kevin

Maybe you are looking for

  • My Itunes will NOT update!!!! PLEASE HELP!!!!

    after i click download now it goes to the next page and says thanks for downloading!!! when really it did nothing! am i doing somthing wrong!?!? HELP PLEASE!

  • Install Anywhere error!!

    Hi, I have just installed "InstallAnywhere" and am using NetBeans IDE to develop my code. I created a very simple gui (just the frame) and tried to create an executable with InstallAnywhere but I got this error: Unable to locate the applications main

  • Brand new ipod. may not have charged it enough initially; but.......

    after running the battery down to zero last nite, i've been charging it wi no results. just one thin red strip in the charging window. a couple of times the green lightning bolt was on, but faded quickly. help!!!!!

  • Album Art Issue

    My album art works for almost every album I have (except that I have album art on every album, so it shouldn't be an almost!). I've realized that the album art won't show on albums/artists that have a music video of the same album/artist... so I gave

  • Ever since upgrading to OS X Yosemite, I cannot view pictures in iPhoto

    Ever since upgrading my MacBook Pro to Os X Yosemite, I cannot view pictures in iPhoto, videos neither.  Also the screen blinks constantly white.  Any suggestions please to solve this extremely annoying problem.