SAP Transaction in WebGui ?

Hi,
I call a SAP Transaction within a GP Callable Object of type SAP Transaction. I whant to use the WebGUI for starting the transaction and not the WINGUI, which will be started by default.
How can I change this ?
Regards,
Gerald

Hi Gerald,
Yes, that's indeed an interesting question and SAP's CAF team knows that implementing such a requirement would be really helpful.
However, at the moment there is no possibility to switch a flag or a parameter to tell the SAP transaction callable object that it should use the Web- or WINGui.
From the technical point of view, it would be sufficient to change a parameter in the URL that calls the SAP transaction. Unfortunately that's not possible with this type of callable object, the URL is generated and cannot be changed via the user afterwards.
Nevertheless you can use another callable object type: the iView (for this, the Portal is necessary) because with the help of this Callable Object it's possible to generate own URLs.
Regards,
  Jan

Similar Messages

  • How to call a sap transaction in Internet Service

    Hi,
    I have a requirement to call a sap transaction code in the Internet Service. By donig this, the SAP transaction will be called in the web browser via ITS.
    Internet Service has HTML Templates - inside html templates I want to call the sap transaction based on a button event.
    Below is the transaction code. When I enter below link in the browser then it works fine. The same I need to call progrmatically in html template on some event.
    http://xxxxxxxxxxx/sap/bc/gui/sap/its/webgui?~transaction=me23n
    Thanks,

    Hello Sal.
    This does not look like an ABAP issue, but rather JavaScript, JQuery or whatever you are using to handle the button-click-event in your "Internet Service" web application.
    You might try window.open("http://xxx...me23n","_self").
    Best regards,
    Frank.

  • 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

  • Creation of "Web Dynpro for Java"  for SAP transaction

    Hi All,
             In EP when we create SAP transaction iView for SAP transaction,
    a)ITS server is required if we choose SAP GUI Type as WebGui(Performance wise as well as some other issues)
    b)SAP GUI has to be installed if we choose SAP GUI Type as WinGui.(User has to install SAP GUI).
    Can we overcome these two issues by creating Web Dynpro application for SAP transaction in quicker way. Any suggestions are appreciated.
    Thanks and Regards,
    Gangadharayya.

    Hi,
    It is not possible to display a transaction directly in a java web dynpro. If you do not want to use a transaction iview the only other possibility is to create a web dynpro that uses BAPI's as models.
    Regards,
    Christophe

  • Is it possible to call std. SAP transaction from abap wd

    Is it possible to call std. SAP transaction from abap wd so that transaction appears and work as in gui? Without portal ofcourse.
    I know that using webgui and/or ITS it is possible so then it must be somehow possible....

    Hi,
    see Web Dynpro ABAP call transaction in the foreground and just carry out a simple search in this forum, then you'll find several threads with similar questions...
    Regards, Heidi

  • How to get the Portal Username to SAP Transaction IView ( ABAP cust repor )

    Hi Experts,
    We have an ABAP program that will be exposed in portal as SAP transaction IVIEW.  However the username that is being displayed in the report is the username that is defined in SICF > SAP > BC > GUI > ITS > WEBGUI.  I tried to remove the username and password defined, changed the procedure to Alternative Logon Procedure and deleted some logon procedure list retained Basic and SSO Authentication but we are getting DDIC username.  We have successfully implemented SSO, and it works in Personal Information of Standard ESS.  The following are configure in our portal:
    1.  We have set SSO ticket
    2.  We are using User Mapping for portal and ABAP System
    3.  Retain Basic and SSO authentication
    what could be the cause why the program (iview) is still getting the user instead of Portal Username? How can we get the portal username for our abap customized report exposed in iview

    Hi,
    Make sure that the System you are using to connect to R3 has Log On Method and Authentication Ticket Type properties has SAP LOGON TKT as the value selected.
    Path: System Administration --> System Configuration ---> Systems....
    Regards,
    SrinivaS

  • Service to call a SAP Transaction from cProjects

    Hi,
       After accounting Integartion, I wanted to call some transaction already in "Service for an SAP Transaction" node.
    There I need to define the Parameters and Services to make it available thru Portal.
    But seems I'm not able to provide the exact Parameters for the service.
    Also, When I enter the Parameters for the WEB server of an SAP Transaction, for Alias WEB Server, its throwing an error to check entry in OLR3_URL_SRV.
    Many Thanks,
    Jyoti Shankar

    Hi Vivek,
                 I've checked the URL. The SAP Transactions can be called online thru SICF WEBGUI Test. But from Portal, when I'm doing the same, the URL gets changed and system generates the string "scripts/wgate/webgui/!?" in the start URL.
    The reason stated is Web Server Address does not contain the Service "WEBGUI".
    How can I resolve the same ? Please advise.
    Thanks,
    Jyoti

  • Passing Parameter to SAP Transaction via AppIntegrator

    Hi,
    I created an AppIntegrator iView that calls a R/3 Transaction. The iView is running correctly.
    Now I want to pass a dynamic parameter to the Transaction so that it skips the first screen of the transaction.
    For this purpose there is the iView Parameter "AutoStart" that has to be set to true in SAP Transaction iView. Furthermore I have to set parameter "ApplicationParameter" in the follwing manner "<Screen_field1>=<Parameter1>" according to help.sap.com.
    Lets assume that the transaction I want to call is <b>SU01</b> and the screen field is <b>USR02-BNAME</b>.
    So the iView parameter "ApplicationParameter" has the value "USR02-BNAME=MyName".
    This works fine but is not dynamic.
    I then called my iView using the follwing URL:
    http://.../irj/../portal_content/.../R3_iView?param=MyName
    and changed the value of "ApplicationParameter" to ""USR02-BNAME=<Request.param>".
    This does not work. The input field of the R/3 Transaction contains "<Request.param>" instead of "MyName".
    My Question:
    Does the Template Processor of AppIntegrator not work for the Parameter "ApplicationParameter"?
    Help is most welcome
    Helmut

    Me actually,
    Hi Helmut!
    Im using a very similar technique heavily in a customer project for jumping into several transactions from an iView.  Instead of expicitely creating an iView i directly call the respective master iView
    "com.sap.portal.appintegrator.sap.Transaction"
    Then I append the required parameters as GET parameters:
    ?System=<system alias>&Technique=[SSF|SSD]&TCode=<exec first screen?>SU01 param=value;param=vaue;param=value&GuiType=[WinGUI|WebGUI|JavaGUI]
    GuiType should be clear, technique defines the startup behaviour of Wingui (being either as an activeX control (SSD) or using SAP shortcuts (SSF) ). If you want to submit the first selection screen, simply add a "*" to the Tcode. Also note that there is a space between the tcode and the param list.
    This should resolve the issue. Good luck with it,
    (and see you somewhen again in "real life"
    Dominik

  • Calling SAP transaction from WebDynpro

    HI,
    Could someone post a link as to how I may call a SAP transaction from a webdynpro.
    Will this be an external call to R/3 or can i get it embedded in my dynpro.......
    Tnks..

    Hi,
    You can call by creating external window method.
    create LINK to URL or LINK TO ACTION according to requirement, for this. write code in onaction of that.
    data: iv_url type string value 'http://<server>:<port>/sap/bc/gui/sap/its/webgui?~transaction=*se38 RS38M-PROGRAMM=rsparam;DYNP_OKCODE=SHOP'.
      data: api_component  type ref to if_wd_component,
              window_manager type ref to if_wd_window_manager,
              window type ref to if_wd_window.
      api_component = wd_comp_controller->wd_get_api( ).
      window_manager = api_component->get_window_manager( ).
      window = window_manager->create_external_window(
                     url = iv_url
                     modal = abap_false ).
      window->open( ).
    Cheers,
    Kris.

  • SAP Transaction in EP iView

    Hi,
    I am trying to create a SAP Transaction iView in EP.
    When using SAP GUI for HTML i am getting the error as
    <b>Portal Runtime Error
    An exception occurred while processing a request for :
    iView : N/A
    Component Name : N/A
    Application URL ':///webgui/!' is not valid! Please check the protocol and host entries for system</b>
    When I try with SAP GUI for Windows, I get "<b>Connection to partner broken</b>" error.
    I am also not able to get the desired result with SAP GUI for Java.
    Can anyone please throw some light on this?

    Hi Suprita,
    If i am not mistaken, Integrated ITS will coem with BASIS 6.40.
    If you basis version is 6.40 then ITS will be avialable in R/3 system.
    Check the Integrated ITS is enable and the necessary settings have been done in transaction SICF, The ITS will come as a service, and also enable all the services in SICF transaction.
    Check the Connection test of your Integrated ITS, if it is not available in SICF transaction then you may need to install the ITS seperately. The error you are getting is because, may be the ITS parameters are wrong.
    Hope this helps.
    Regards
    Sumanth
    Regards
    Sumanth

  • Property "OK Code Field" for SAP Transaction iViews

    Hi there,
    I created an SAP Transaction iView which is accessing an ECC system using SAP GUI for Html. In the properties of the iView I found the property "OK Code Field" - has anybody a idea how this field is used?
    I hope that there is a possibility to hide the command field with this parameter. Haven't found a possibility to hide that field although I saw that obviously I'm not the first to deal with this issue...
    Any help is rewarded.
    Regards
    Gesine

    Hi,
    To disable OK Code field,
    - Go to SICF TCODE
    - Expand to /default_host/sap/bc/gui/sap/its/webgui service
    - double click to enter properties
    - On Service Data TAB, click Settings Button
    - You have to siwtch to change mode in order to change
    - there add the following parameter
    Parameter: ~NOHEADEROKCODE
    Value: 1

  • SAP Transaction iView issue...Please guide...urgent

    Hello All,
    1. I created a SAP Transaction iView.
    2. Entered all the required WAS + ITS details and the connection tests are all successful.
    3. While creating the iView I selected SAP GUI for HTML as I need to display the the ITS Internet template (from Internet Service)
    Query:
    1. When I preview the iView, I see the GUI (standard SAP) format but not the webgui.
    Please guide.
    Systems - EP 7.0 SP9 & ECC 6
    Awaiting reply.
    Thanks and Warm Regards,
    Ritu

    by default the iview uses the wingui - you need to change the SAP GUI Type (GuiType) attribute of your iview from wingui to webgui.
    That should solve your problem.
    Haydn

  • Is it possible to launch SAP GUI (not webGui for windows) from UWL

    Hi Experts,
    Is it possible to launch a transaction or document in SAP GUI (not WebGUI for windows) from UWL? If yes - how do I achieve that?
    Appreciate your help.
    Giri.

    Hi,
    Yes, you can create an SAP transaction iview and open that iview. Refer  following link for task launch :
    http://help.sap.com/saphelp_nw70/helpdata/EN/59/d516690e854c7090ae15bf492a869f/frameset.htm
    regards,
    Jigar Oza

  • Appintegrator or URL iView for SAP Transaction launching Problem

    I am using the following methods
    1). created portal sap transaction iview  ,for different transactions, I am not able to pass a parameter with #
    a) passed application parameter =1234#56
    b) paassed as 1234%2356
    in both the cases the value is not passed.
    2)Created an iview using appintegrator and even this not passed the above value with #..
    3) I used: webgui URL:
    /sap/bc/gui/sap/its/webgui?sap-client=<client>&transaction=ME53&EBAN-BANFN=0001277601&okcode=AB
    even this is not accepting # in the value for EBAN-BANFN parameter.
    could any one help me.

    Hello Kiran,
    Special characters, like "#", should be encoded when in the URL.  For # it is %23.  This is why the value 1234#56 becomes 1234%2356.  If it is not working then it because the receiving program is not decoding the value back to 1234#56.  You can find more information on this by searching SAP notes for "URL encode". 
    As for this issue, what is the error when the value is 1234%2356?  Thanks.
    Edgar

  • Cprojects - calling a SAP transaction

    Hi
    I am trying to call a sap transaction QA03 to display inspection lot. I need to do Customizing for Collaboration Projects under Connection to External Systems &#8594; Object Links in SAP Systems &#8594; Make Settings for Calling an SAP Transaction
    I need help to define the following service parameters to call QA03 as per SAP documentation,
    1. Screen field:
    2. ~TRANSACTION:
    3. ~OKCODE:
    Thanks
    Senthil

    Hi Senthil,
    Transaction code: is the transaction code of the transaction that you have to call
    OK code: OK code of transaction
    eg: if you have an object link with PS project definition and want to open that project definition in webGUI in display mode, use following settings in Make Settings for Calling an SAP Transaction:
    Service for an SAP Transaction: 0CJ08 Display Project Definition
    Paramters for a Service:
    *PROJ-PSPID = PSPID
    ~OKCODE = MDTB
    ~TRANSACTION = CJ08
    Regards,
    Reema.

Maybe you are looking for

  • Cannot Access Email Using WiFi

    Help Me Please: I too have a Verizon Domain account. I also have a Verizon landline account. My internet provider is TWC. Since 9/17 I have been unable to access my Verzion email account using any type of wifi. If I use an LTE connection on my phone,

  • HT1495 I have 2 iPhones for 2 different phone numbers and a new ipad. Is it recommended to use 1 Apple ID or not?

    I have 1 phone number with an iPhone 4 and I have got one more number with an iPhone 5s and an ipad air. I don't know if to set the new devices (5s and ipad) with the same Apple ID or not. Of course I would like to use the same contacts and emails on

  • How to upgrade to PI 7.1

    Hi, Although PI 7.1 will be on picture by september 2007, does anyone have idia on how to upgrade to PI 7.1 from XI 3.0 or PI 7.0 ???  any tips...steps??? etc .. kanan

  • How to Get DataBase response back to DB adapter

    Hi , I have a requirment as below. 1)I have configured a database adapter for updating a record in table using the pure SQL option .Once the record is updated sucessfully I need to get response from Database as Zero records updated or 1 row updated.

  • Adobe Reader MSI Release

    I am new to trying to roll out Adobe Reader by Group Policy and MSI's and am having trouble creating a new MSI from 11 and the AdbeRdrUpd11009 MSP. I have read many websites on creating the MSI which I have followed and I think I have created it corr