Transaction iView (WinGUI): "Create Session" opens blank GUI

Hi All,
we are using a SAP Transaction iView which displays the WinGUI in the portal and directly opens a SAP transaction.
The users are used to getting a new session with an already opened navigation tree (SMEN) by clicking "System --> Create Session". However, if the WinGUI is opened in the portal via a Transaction iView, "System --> Create Session" opens a blank GUI session where the users have to manually execute "SMEN" to get to the tree.
Is there any way to get the usual "Create Session" behavior as if the WinGUI were launched outside the portal and the transaction were entered manually?
Thanks,
Jens

Hi,
first of all: Apologies... I had found another thread before which described the procedure you were hinting at (manipulating the PAR file) and I even had already downloaded the file from the PCD. But the user in the thread I found described another problem (the menu entry "Create Session" was missing altogether) so I thought this wouldn't solve my problem since we weren't missing this menu entry.
But you are right: I changed the parameters, deployed the PAR and restarted the portal - the problem is solved! New sessions now automatically show SMEN.
Thanks a lot!
Jens

Similar Messages

  • SAP transaction iView not executing the transaction directly

    Hello guys,
    having a little problem with SAP transaction iView I created - specified system, where the transaction is delpoyed. When I click on the page containing the iView, R/3 logon page comes up instead of the transaction itself being executed. The user and password are the same for the portal and R/3. Do I have to do the mapping then? I so, it would mean I would have to crate mapping for every single portal user. Isn't it possible to make the portal to automatically use the user id/password of the logged-in user?
    Thanks a lot for any ideas at all,
    Frank

    Arun,
    I am a bit confused now to be honest. If you mean 'SAP GUI Type' property, at the moment it is set to 'Select' value - it means that no value is selected. I already tried to use 'WinGui' but I couldn't get through to R/3 transaction either.
    We are using standalone ITS.
    Thanks,
    Frank

  • Issue regarding refreshing transaction iview

    Hi gurus,
    the issue is,
    end user has transaction iview and url iview ,
    transaction iview is created using GUI for windows, so that he/she can enter any transaction.
    SESSION_MANAGER is the tcode assignd to  enduser in transaction iview,
    the problem is ,if user is using SE38 and then he click on url iview tab in top level navigation and click on transaction iview tab or refreshes the page then the transaction in transaction iview comming back to SESSION_MANAGER.
    client need same transaction to be displayed even after refreshing page or navigationg to other tab.
    Regards
    K Naveen Kishore.

    Hi Naveen,
    If you switch navigate to another iview and then back to your transaction iview, or refresh the portal page, you restart the iview with all its initial settings - including transaction. It seems you want to somehow suspend the state of the interaction with the SAPGUI, even between openings in the portal window. That's not possible.
    What you could do is set the SAPGUI to open in a new window (this is always the case if you use the SAP Shortcut File starting technique) - then the user interacts with this window for all his transaction-based work and uses the original window for portal activities. Alternatively create a role structure that includes all the transactions of interest to the particular user group, and have them switch between transactions in this way rather than by entering commands in the SAPGUI command field.
    Regards, Rory

  • Displaying problem of Transactional iview -- Displaying ~ITS~ above iview

    Hi ,
    A transactional iview is created and assigned to a workset .
    Its working fine.
    When it is displaying , I closed the detailed Navigational panel by clicking on the arrow of the iview in content area . so that the iview may also occupy the detailed navigation area . It is displaying  ITS  above the iview that is below workset tab  area .
    When i again clicked on the arrow to see the detailed navigation .....it is again show one more time ITS ...as
    ITSITS.....
    when ever iam closing and opening detailed navigation area ....subsquently ITS message increasing....ITSITSITS.......
    Can any one provide me solution for not displaying ITS  message....
    Version : EP 7.0 , sp12

    Hi Sumit,
    Check out your Interner Explorer settings, it happens sometime if your secutiry setting are kept high.
    Change the Privacy setting to Medium or Low.
    Thanks,
    Trikanth

  • Transaction Iview

    Hi,
    I had created one transaction Iview and it was working fine.
    Now when I added the code for creation of another transaction iview then it is opening the previous transaction iview twice instead of two different iviews.
    Following is the code:
                                                 String bizPartner = requestresult;
                                                 String p_abb =
                                                      wdContext
                                                           .currentReviewerDataElement()
                                                           .getABBCRR();
                                                 String p_serv =
                                                      wdContext
                                                           .currentReviewerDataElement()
                                                           .getSERV();
                                                 String p_dunfs =
                                                      wdContext
                                                           .currentReviewerDataElement()
                                                           .getFiscalStrength();
                                                 String p_dunr =
                                                      wdContext
                                                           .currentReviewerDataElement()
                                                           .getRisk();
                                                 String p_ex =
                                                      wdContext
                                                           .currentReviewerDataElement()
                                                           .getPrevExp();
                                                 String p_qq =
                                                      wdContext
                                                           .currentReviewerDataElement()
                                                           .getPubSecComp();
                                                 String p_seg =
                                                      wdContext
                                                           .currentReviewerDataElement()
                                                           .getCreditSegment();
                                                 String ukm_credit_limit =
                                                      wdContext
                                                           .currentAddressElement()
                                                           .getCredit();
                                                 WDPortalNavigation.navigateAbsolute(
                                                      "Path to iview1",
                                                      WDPortalNavigationMode
                                                           .SHOW_HEADERLESS_PORTAL,
                                                      "Resizable=yes",
                                                      (String) null,
                                                      WDPortalNavigationHistoryMode
                                                           .NO_DUPLICATIONS,
                                                      (String) null,
                                                      (String) null,
                                                      "P_KUNNR="
                                                           + bizPartner
                                                           + "&P_ABB="
                                                           + p_abb
                                                           + "&P_SERV="
                                                           + p_serv
                                                           + "&P_DUNFS="
                                                           + p_dunfs
                                                           + "&P_DUNR="
                                                           + p_dunr
                                                           + "&P_EX="
                                                           + p_ex
                                                           + "&P_QQ="
                                                           + p_qq
                                                           + "&P_SEG="
                                                           + p_seg
                                                           + "&P_CREDIT="
                                                           + ukm_credit_limit);
                                                  WDPortalNavigation.navigateAbsolute(
                                                           "path to iview2",
                                                           WDPortalNavigationMode
                                                                  .SHOW_HEADERLESS_PORTAL,
                                                           "Resizable=yes",
                                                           (String) null,
                                                           WDPortalNavigationHistoryMode
                                                                  .NO_DUPLICATIONS,
                                                           (String) null,
                                                           (String) null,
                                                           "RF02D-BUKRS=1000&RF02D-KUNNR="
                                                                  + requestresult
                                                                  + "&ADDR1_DATA-LANGU=EN");
    what could be reason for this.
    Any kind of help will be appreciated.
    Thanks,
    Dushyant

    Hi,
    You can use the tempalte to create transaction iViews
    Create -> new iVew from template -> select the SAP Transaction Iview
    Give the system details
    save -> preview
    Ramganesan Karuppaiyah

  • Transactional Iview Error

    Hi,
    I have created a transactional iview. I have choosen windows GUI for display. But after choosing  the SAP system (Backend system) , when i go for preview it Shows ERROR.
    1. The page cannot be displayed
    2. Exception occured . Ie. RFC error
    3. logon  balancing error 88
    Please guide me .
    Richard A

    Hi,
    It is not working for all option.
    An exception occurred while processing a request for :
    iView : pcd:portal_content/com.tcs.tcs/com.tcs.iview_id/com.tcs.fb50
    Component Name : com.sap.portal.appintegrator.sap.Transaction
    Exception in SAP Application Integrator occured: Unable to parse template '<System.ConnectionString>'; the problem occured at position 0. Cannot process expression <System.ConnectionString> because Invalid System Attribute: System: &#39;SAP_LocalSystem&#39;, Attribute: &#39;ConnectionString&#39;. .
    Exception id: 06:31_03/04/08_0010_7465150
    See the details for the exception ID in the log file
    The above are the exception
    Richard A

  • Transaction iView: GUI opens with an empty IE Session

    Hello Portal-Gurus,
    i have a problem when i open a transaction-iView to start a TA like SMEN.
    FYI: I use WinGui with shortcut (SSF), always a IE-Window (Session) is started also.
    Is there a way to close this window?
    Thank you very much, best regards
    Frank.

    Hello Frank,
    Please look at your settings on the iview properties.  If you want to launch in a new window the setting "Launch in New Window -> Display in Separate Window" needs to be set.  Then look at the properties of the page the iview is assigned to..  Make sure the property "Launch in New Window" is set to Display in Portal Content Area. 
    Hopefully this will help..

  • Transaction iView - SAP GUI for HTML-blank on some systems

    Hi,
    I have few transaction iviews - SAP GUI for HTML running perfectly well on few systems. But the same iViews fail to load in few other systems. A blank iview is displayed. What could the problem be?
    Thanks and Regards,
    Reena

    Hi Reena,
    Have a look at the product availability matrix:
    https://websmp108.sap-ag.de/~form/handler?_APP=00200682500000001303&_EVENT=RELEASE&00200682500000002804=01200615320900001250&00200682500000003818=WBRPFM&00200682500000003853=Enterprise%20Portal
    IE 7.0 may have some problems if using it with ITS.  Ensure that IE are all on the same version (6.0 for example) and the same service pack.  We have everyone using IE 6.0.2800.1106 and it works fine now.
    Regards,
    Nick.

  • Error while Creating SAP Transactional iView

    Hi
    I am trying to create an SAP Transaction iview to connect with SAP CRM system, i selected property WebHTML
    but i coule notable to connect to that TCode iview.
    For this i created a System with User Credentials that will map to the back end system.
    It is connecting to the backend system using BSP Application which are presented in the Business Packages.
    Wheather ITS should be configured to get this feature.
    If so provide me the proper steps to configure ITS.
    Regards

    its path should be
    its path : /sap/bc/gui/sap/its/
    or you can leave it blank.
    if this is the first time you are running ITS application (WEBGUI).
    then go to transaction se80->utilities->settings->Internet transaction server->pulish
    choose onselected site radio button and choose INTERNAL
    click ok to come out of it.
    now choose internet service from the dropdown and enter SYSTEM and hit enter.
    right click on SYSTEM and click publish
    like wise publish WEBGUI and SHUFFLER services.
    now go to transaction SICF and go to
    sap/bc/gui/sap/its/webgui
    right click on webgui and click test, which will open the browser and show its screen, if yes.
    then you can now check your iview.
    Regards
    Raja

  • Transaction IView -- SAP GUI for Windows

    Hi,
    I have created a transaction iview -- sap gui for windows in my portal.
    Even thought i logoff from my portal, sap gui session that is opened is not closed.
    Can any one please suggest me a way to stop sap gui session also when i logoff from my portal.
    Regards,
    Nidhideep.

    Very difficult. The SAPGUI window doesn't know anything about being launched by the portal.
    You could try launching inside the portal content area.
    Also, what is the problem with having the SAPGUI still open?
    Cheers

  • Tx.ssd - WinGui transaction iView

    Hi,
    I have created a system, though not sure it has been completely successful. The connection-test gives a green light, but the transaction test found at System Administration/SAP Application/SAP Transaction (with proper data filled in) returns a dialog box asking me to download a file called tx.ssd. Unfortunately, downloading it does not help.
    The same box appears when I try to preview an SAP transaction iView with WinGui (which is what I am trying to do).
    The portal version is 6.0 SP 14. Sap WinGui is installed on the client accessing and browsing the portal, and the PCD path is less than 255 characters.
    Does anyone know of a solution to this problem?
    Suggestions will be highly appreciated, and solutions highly awarded!
    Regards,
    Stina.

    HI Stina
    Since the SAP GUI is not installed on server so u r unable to see the iview created with wingui
    and u got message file download tx.ssd (open save)
    wingui is installed on client machine so u r able to see the iview
    if u have ITS installed than creat a webgui iview
    and also configure ITS in Portal system
    regards,
    kaushal

  • Does each SAP transaction iview create a log on to the backend ECC?

    Hi,
    If I put multiple SAP transaction iviews in a role, each pointing to a different SAP transaction in the same backend system, does the launch of each iview create a new logon in the backend system when using SAP logon tickets?  If so, is it possible to make it only launch a new session if one logon has already been created?
    Regards
    Cindy

    Hello Cindy,
    launching of diffrent Transactio Iview form same back end is quite similar as loged in to backend with Proper credentials and opening diffrent transaction's by useing
    /oxx(Transaction Name)
    Hope it will add to ur knowladge.
    Regards.
    Soni Vinit

  • Open Portal Transaction iView in new window *without* Browser window

    Hello,
    Currently i am testing to use the single-sign-on functionality of the portal to launch the SAP GUI for Windows.
    I created some Transaction iViews and they work perfectly without having to log in.
    To use the full GUI size of the SAPGUI in the iView, i configured it to open up in a seperate window. This also works perfectly, but when i let a colleague test the setup, i realized that he has some additional toolbars, which in return decreased the usable space in the browser window for the SAP GUI.
    Now my question is:
    How can i configure the Transaction iView to open up the given transaction in the SAP GUI, but without the surrounding Browser?
    Is this even possible?
    I test this because my comany is searching for a solution to use SSO with the SAP GUI. Since we have the portal we test if we could use it to realize this requirement without generating extra costs.

    Hi Armin,
    for iView (page) you probably set the property 'Launch in New Window' to value Display in Separate Window. To tune up the other otions you have the possibility to set the property Window Features, value should contain toolbar=no. These features will be used when Javascript opens up your window - you can apply any option coomonly documented. IMHO for your demands the best option is fullscreen=yes,toolbar=no - you get really the maximum possible size.
    Regards,
    Pavol

  • Portal Transaction iView not opening in browser but its open in R/3 screen

    Hi
    I have 2 senario.
    First Scenario:
    I login only into the portal  and  not  login into R/3.  I could access the portal transaction iview in the new broser portal window.  And this is the expected behaviour.
    second senario
    I login into Portal as well as R/3 through SAP logon Pad (SAP GUI).
    Now if I access  Transaction Iview through portal , this transaction Iview is opened in R/3 side window not in portal browser window .And also same time we can see only new blank portal window iopen n portal side.
    My question is that whichever transaction iView we access through portal we want  to see that transaction iView in portal browser window like in first senario  not in R/3 window.
    Please help me to resolve this problem
    Regards
    Ruturaj

    Hi Shanti
    Thanks for replying.
    The problem is that when our user trying to do same things in our system with his credentials means UID and PWD its working fine.But when he do the same things in his system with his credentials problem occured as per the senario 2.
    This problem is not only that user but also whole their team member.
    Regardfs
    Ruturaj
    Edited by: Ruturaj Inamdar on Sep 15, 2011 9:20 AM
    Edited by: Ruturaj Inamdar on Sep 15, 2011 9:25 AM

  • Transaction iView opening in a separate window in SAP NW 7.3 portal

    Hi Experts
        I have created a transaction iView for LSO transaction.The iView is a SAP GUI for HTML type.When I am trying to open the iView from the portal , it opens in a separate tab instead of as a pop-up window.
      The Launch in a New window property is set to Display in the portal content area.
      If I try to edit the Launch in a window property and set it to Lock in target objects , it opens in the portal content area, but I want it to open in a complete new window as a pop-up.
      I have attached screenshot of the expected result.
      Please suggest.
    Regards
    Shaily

    Newer versions of IE default to tabbed browsing, this is not a portal issue.

Maybe you are looking for

  • SOAP Receiver/Sender in IDOC- XI- SOAP receivers?

    hi, i have idoc-> xi-> soap receiver. 1. How can i get a response back from soap receiver? 2. in the above scenario is SOAP the receiver or agian the sender? 3. not sure how i can get a response back from the soap receiver? any tips would be helpful.

  • While scheduling Error message

    Hi,Friends, While scheduling my maintenance plan its displaying warning like this: "Error calculating cost do you still want to save? How to resolve this.I hope you will help in this regard Regards, K.Sunil

  • Field Text is a required field for G/L account BP01 45600000

    hi mm i wa screating migo i ahve entered all the details but when i go to post i face a error called : Field Text is a required field for G/L account BP01 45600000 Message no. F5808 Diagnosis The value for field "Text" in the interface to Financial A

  • How do I set up a Bonus question in a Quiz?

    I have a 30-question multiple-choice quiz that is graded, and would like to add a "bonus" question at the end-- so that if the user answers correctly they get extra points, but if they don't answer or answer incorrectly there are no consequences (and

  • Text appears in the FIND bar rather than website fields. How can I fix this?

    When I type text into a search box in a website such as Google, ebay or Amazon, the text does not appear in the field; instead the firefox FIND bar automatically pops up and the text appears in it instead. How can I prevent this from happening?