Displaying SAP Transaction as Internet Application in Portal

Hello,
Steps:
1. Transaction sicf
2. Go to Default_host > SAP > bc > gui > sap > ITS
3. Add "New Sub-Element"
4. Type it the name of the service & Independent Service
5. In the drop box corresponding to GUI Link > Yes
6. In the GUI Transaction button:
~TRANSACTION = CAT2
~theme = 99
~generateDynpro = 1
~noHeaderOkCode = 1
7. Handler List Tab > CL_HTTP_EXT_ITS
8. Save & Activate Service
9. Right clicl over the service > Test Service
Result:
I can see the CAT2 transaction in my IE browser. This is ok, but my question is:
Can I modify something of the HTML page result? I mean, Can I modify in any way the style of the resulting HTML of transaction CAT2?
Can I define a new "theme" and define HTML styles? I think I read that it's possible.
I tried adding CL_HTTP_EXT_ITS_MIMES in the Handler List tab and adding a breakpoint. The application stops here and give me MIME_URL = IAC/WA/WEBGUI/STYLE/GUI_COLORS.CSS
Where can I find this style file? Can I modify it?
Thanks,
Miguel Angel.

Hello,
I tried to create in SE80 a new ITS service:
1. Package CATS > ITS Services
2. Create:
Internet Service = CAT2WEBGUI
Transaction code = CAT2
3. Over CAT2WEBGUI > Create > Template:
Internet Service = CAT2WEBGUI
Theme = 99
Program Name = SAPLCATS
Screen Number = 1000
Generating Style = I tested full values
4. Modify the HTML template
Result: The service style doesn't change... Can't be done by this way?
Thanks!
Miguel Angel.

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.

  • Displaying SAP Transaction CAT2 as Internet Application in Portal

    Hello,
    Steps:
    1. Transaction sicf
    2. Go to Default_host > SAP > bc > gui > sap > ITS
    3. Add "New Sub-Element"
    4. Type it the name of the service & Independent Service
    5. In the drop box corresponding to GUI Link > Yes
    6. In the GUI Transaction button:
    ~TRANSACTION = CAT2
    ~theme = 99
    ~generateDynpro = 1
    ~noHeaderOkCode = 1
    7. Handler List Tab > CL_HTTP_EXT_ITS
    8. Save & Activate Service
    9. Right clicl over the service > Test Service
    Result:
    I can see the CAT2 transaction in my IE browser. This is ok, but my question is:
    Can I modify something of the HTML page result? I mean, Can I modify in any way the style of the resulting HTML of transaction CAT2?
    Can I define a new "theme" and define HTML styles? I think I read that it's possible.
    I tried adding CL_HTTP_EXT_ITS_MIMES in the Handler List tab and adding a breakpoint. The application stops here and give me MIME_URL = IAC/WA/WEBGUI/STYLE/GUI_COLORS.CSS
    Where can I find this style file? Can I modify it?
    Thanks,
    Miguel Angel.

    This thread has been discussed in:
    /thread/1714123 [original link is broken]

  • Opening SAP screen from an internet application

    Hi,
    I have a requirement in which it is needed to open up an SAP transaction screen from an internet application(salesforce.com).I have written a batch file which opens up the SAP transaction XD03 screen.This batch file can be called from a java program.But since our tool is an internet application,the java code has to be converted to a web service.
    Is there any other approach to open SAP screen from internet applications?
    Thanks & Regards,
    Vineetha

    Resolved

  • Accessing SAP Transaction screen from other application

    Hi Friends
    We have a requirement where we want to access a transaction screen from some other application.
    Is there any standard BAPI for doing this (R3 or CRM) ?
    Kindly help ....
    Best Regards

    Hello Pankaj,
    In CRM you can use Function Module TRANSACTION_CALL_VIA_RFC to open a transcation screen in another system. This FM takes RFC Target System and TCode as inputs and opens the transaction in the specified system (provided Logical System Name & RFC Connection has been properly made)
    If it is IC Web Client, you can use transaction Launcher to do the same, follow the blog created by Raja G for the same.
    The link to which I am providing underneath:
    /people/raja.g/blog/2007/01/24/displaying-r3-transaction-in-icwc-application
    Regards,
    Khushboo
    <b>Reward with points !</b>

  • Calling SAP Transaction from BSP

    I wonder whether it is possible to call SAP transaction from BSP application and pass to it some data; e.g., PO# when calling VA02?
    The called transaction could appear in a separate MS IE Window (like in some Portal applications) or in SAP GUI.
    Any help will be appreciated.
    Thank you in advance

    I have launched the Java SAPGui from BSP pages before.  I used SNC so that the users were logged on via Single Sign On.  I store the Java Gui in the Mime directory.  You can force the startup transaction.  Theorectically you could also Gui Scripting to try and control the Gui and force in the default value for your PO field.  I have not tried that however.  You will probably want to check the Service Marketplace for documents on the Gui Scripting.  The following is the code from my BSP page to launch the Java Gui in the Browser as an applet:
    <%@page language="abap"%>
    <%@extension name="htmlb" prefix="htmlb"%>
    <HTML>
    <HEAD>
      <TITLE>SAPGUI for the Java Environment</TITLE>
      <STYLE type="text/css">
          body { margin-left:0px; margin-right:0px; margin-top:0px; margin-bottom:0px; }
      </STYLE>
    </HEAD>
    <BODY scroll="no">
    <SCRIPT language="JavaScript">
    // user configurable part starts here
    var pluginurl         = '';
    var scriptable     = 'true';
    var codebase         = '.';
    var jnlp           = 'platin.jnlp';
    var keepalive      = 'true';
    var frog           = 'true';
    var trace          = '';
    var tracefile      = '';
    var connectionData = 'conn=/M/nts163/S/3620/G/SPACE/&tran=SE80&clnt=088&fast=true&sncon=true&sncname=p:[email protected]&sncqop=9';
    // user configurable part ends here
    // verify if Java Plugin as control in Internet Explorer or Java Plugin for Netscape or native JRE of browser must be used
    var jre = 'control';
    if(navigator.platform.indexOf("Mac") > -1)
       jre = 'native';
    else if (navigator.appName.indexOf("Netscape") != -1)
       jre = 'plugin';
    document.open();
    switch (jre)
    case 'control':
        document.writeln('<OBJECT CLASSID  = "clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"                               ');
        document.writeln('    ID       = "PlatinGUI"                                                                    ');
        document.writeln('    CODEBASE = "j2re-1_3_1_02-win-i.exe#Version=1,3,1,0"                             ');
        document.writeln('    WIDTH    = "100%"                                                 ');
        document.writeln('    HEIGHT   = "100%"                                                 ');
        document.writeln('    BORDER   = 0>                                                      ');
        document.writeln('<PARAM NAME = "TYPE"           VALUE = "application/x-java-applet;jpi-version=1.3.1">         ');
        document.writeln('<PARAM NAME = "SCRIPTABLE"     VALUE = "', scriptable,'">                                ');
        document.writeln('<PARAM NAME = "code"           VALUE = "com.sap.platin.GuiApplet2">                   ');
        document.writeln('<PARAM NAME = "codebase"       VALUE = "', codebase,'">                             ');
        document.writeln('<PARAM NAME = "jnlp"           VALUE = "', jnlp,'">                             ');
        document.writeln('<PARAM NAME = "archive"        VALUE = "GuiStartS.jar">                             ');
        document.writeln('<PARAM NAME = "keepalive"      VALUE = "', keepalive,'">                             ');
        document.writeln('<PARAM NAME = "frog"           VALUE = "', frog,'">                             ');
        document.writeln('<PARAM NAME = "trace"          VALUE = "', trace,'">                             ');
        document.writeln('<PARAM NAME = "tracefile"      VALUE = "', tracefile,'">        ');
        document.writeln('<PARAM NAME = "connectionData" VALUE = "', connectionData,'">                               ');
        document.writeln('                                                                ');
        document.writeln('This page requires a Sun Java Plugin 1.3 and a SAPGUI for Java to view.                      ');
        document.writeln('                                                                ');
        document.writeln('</OBJECT>                                                           ');
        break;
    case 'plugin':
        document.writeln('<EMBED TYPE        = "application/x-java-applet;version=1.3"                         ');
        document.writeln('    PLUGINURL      = "', pluginurl,'"                                          ');     
        document.writeln('    WIDTH          = "100%"                                            ');                                        
        document.writeln('    HEIGHT         = "100%"                                             ');
        document.writeln('    ALIGN          = "BASELINE"                                                ');
        document.writeln('    code           = "com.sap.platin.GuiApplet2"                                      ');
        document.writeln('    codebase       = "', codebase,'"                                        ');
        document.writeln('    jnlp           = "', jnlp,'"                                                ');
        document.writeln('    archive        = "GuiStartS.jar"                                       ');
        document.writeln('    keepalive      = "', keepalive,'"                                       ');
        document.writeln('    frog           = "', frog,'"                                            ');
        document.writeln('    trace          = "', trace,'"                                            ');
        document.writeln('    tracefile      = "', tracefile,'"                                       ');
        document.writeln('    connectionData = "', connectionData,'"                                        ');
        document.writeln(' <NOEMBED>                                                      ');
        document.writeln(' </NOEMBED>                                                      ');
        document.writeln(' </EMBED>                                                              ');
        break;
    case 'native':
        document.writeln('<APPLET CODEBASE  = "', codebase,'"                                                           ');
        document.writeln('        ARCHIVE   = "GuiStartS.jar"                                                           ');
        document.writeln('        CODE      = "com.sap.platin.GuiApplet2"                                               ');
        document.writeln('        WIDTH     = "100%"                                                                    ');
        document.writeln('        HEIGHT    = "100%">                                                                   ');
        document.writeln('<PARAM NAME = "SCRIPTABLE"     VALUE = "', scriptable, '">                                    ');
        document.writeln('<PARAM NAME = "jnlp"           VALUE = "', jnlp, '">                                          ');
        document.writeln('<PARAM NAME = "keepalive"      VALUE = "', keepalive, '">                                     ');
        document.writeln('<PARAM NAME = "frog"           VALUE = "', frog, '">                                          ');
        document.writeln('<PARAM NAME = "trace"          VALUE = "', trace, '">                                         ');
        document.writeln('<PARAM NAME = "tracefile"      VALUE = "', tracefile, '">                                     ');
        document.writeln('<PARAM NAME = "connectionData" VALUE = "', connectionData, '">                                ');
        document.writeln('</APPLET>                                                                                ');
        break;
    document.close();
    </SCRIPT>
    </BODY>
    </HTML>

  • Call SAP Transaction Variant from Iview

    Hello,
    I know we can pass parameters into a SAP transaction via the 'Application Parameters', but this does not always work especially for complicated selection screen options.
    Can the actual transaction variant ID be passed instead?
    Regards
    Mr.T

    Hi,
    You may refer this
    Passing Variant's value to a transaction iview
    Thanks
    Prashant

  • SSO failing when sap transactions are accessed in portal thru internet

    Hi,
    We are accessing portal through internet on reverse proxy(Apache) but the SSO is failing when accessing sap transactions in portal but other screens(ESS) are accessible. Please let me know does this require any config settings in portal or apache side.
    thanks i advance.
    Marcus

    Hi Rajender,
    I tried doing the same in the ECC system but the iview is throwing error"resource not available".
    We have given just an Apache Ip address in the format  <ipaddress>:80 as we doesn't have FQDN for the apache in the place of WebAs and ITS Host name.
    Also the WEBAS path is /sap/bc/bsp/sap and ITS path is /sap/bc/gui/sap/its/webgui. Does this require any modifications.
    Please also let me know for any changes need to be done on the httpd.config file on Apache server.
    portal.xxxxx.xxx.xx  - Our External URL
    hostname:port/irj/portal - Our Intranet URL
    Please let me know the exact format of the entries to be made in ITS and Web As settings with the apache details.
    Web AS Host Name :   Hostname:port
    ITS Host Name :   Hostname:port
    ITS Path  : /sap/bc/gui/sap/its/webgui
    thanks in advance
    Marcus

  • Calling a Standard SAP transaction VA03 from another web dynpro application

    Hi All,
    I have a requirement wherein I need to call the standard SAP transaction VA03 whenever a sales order is selected in some other we dynpro application so that the sales order gets displayed.
    No regarding usage of OBN for the above functionality I have certain queries:
    1. In order to call VA03 do I need to create a transactional iview for it or is there any direct method.Also how to pass this sales order number as parameter to the T.Code.
    2. Can we use standard business object BUS2032 for OBN or a new Business object is created.What exactly is the purpose of these standard business objects in portal and when should they be used.
    Thanks in advance
    Aman Gupta

    Hi Aman - Do you have a portal team in your project or you have to create the IVIEWS yourself?
    I do have a portal team and I dont know how they create the IVIEWs but for example, I will go to my portal team and I will ask them to create an IVIEW for TCODE VA03, they will created and they will tell me the input parameters they entered for the IVIEW so I can call OBN and display in webdynpro.
    SAP in SRM has webdynpro e.g. for BUS2121 and they have an IVIEW already implemented in the portal context pointing to the webdynpro of BUS2121 so we can used the IVIEW by calling OBN and passing the parameters; in my case the object_type will be 'shc' and the operation will be 'display' and the paremeters itab will be the GUID of my shopping cart, that way the OBN can understand which Shopping cart open and in which operation mode.
    I also did something like your requirement, I need it to display a specific case in Records Management but SAP has a standard IVIEW for records management 'RMREGEDIT' that didn't work for my requirement so I went to SE38 created a program that displayed the case based on GUID and I created a TCODE of my custom program. Portal team created a custom IVIEW of my custom TCODE and they told me the input parameters to call the TCODE in OBN and I pass in the itab parameter the GUID of the case using the FM that I post before.
    The action to call the OBN is in the event handler ON_CLICK of my ALV and the action is getting trigger when the user actually clicks a HYPERLINK in the ALV.
    Hope this helps you!
    Please feel free to ask me more details if you need.
    Jason PV

  • 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

  • Interaction between SAP Transaction Iview to webdynpro application

    Hi All,
    I have a requirement where in,
    I have one SAP Transaction Iview and one Webdynpro (Java) Iview,
    Now what I have to do is,
    I need to call Webdynpro app ( or iview) as a pop up from Transation Iview (e.g. click on some button on SAP screen),
    webdynpro screen will be opened,
    do some processing there (calling some web service, getting some data from an external system) and then posting response data back to some screen field in Transaction Iview.
    It is like on a standard SAP transaction, I want to open my custom webdynpro screen to do some data operation and fill response data back to SAP screen once that is done.
    any ideas would be heavily appreciated and rewarded!!!!!
    Regards
    Deepak

    I wrote the code like below:
    WDPortalNavigation.navigateAbsolute("ROLES://<IViewPath>", WDPortalNavigationMode.SHOW_EXTERNAL,
    (String)null,
    (String)null,
    WDPortalNavigationHistoryMode.ALLOW_DUPLICATIONS,
    (String)null,
    (String)null,
    "number=123456");
    In IView application property, I wrote:
    CRMT_SEARCH_LOC-CARD_NO=<Request.number>
    (L.H.S is the screen field name)
    then I got following exception at portal:
    An exception occurred while processing a request for :
    iView : pcd:portal_content/<Iview path>
    Component Name : com.sap.portal.appintegrator.sap.Transaction
    Exception in SAP Application Integrator occured: Unable to process template 'CRMT_SEARCH_LOC-CARD_NO=<Request.number>', because 'number' is an invalid terminal property of context 'Request.'..
    what went wrong????

  • Integrating SAP UI5 application in Portal through LPD_Cust gives error

    Hi Team,
    In our scenario we are calling sap UI5 application in portal through LPD_Cust . We receive error SAP UI5 mobile is not supported in your browser . When we call same application through portal directly it opens properly( In both cases we are using same page and iView).
    We have set the property of iview in portal as open in header less window in standard mode.But in Lpd_cust we don't have option of open in standard window.
    Is there any work around available which launches application properly.

    I think you are experiencing problems thru the document mode of your browser.
    The Quirks of Browser Rendering
    1) If you are running ldp_cust, you could open the page properties in a new window.
    2) set the document mode for the portal: Ajax Framework Page - Portal - SAP Library
    iView: Browser Document Mode ( com.sap.portal.BrowserDocumentMode )
    This iView adds an X-UA-Compatible header into the framework page that affects the Browser Mode and the Document Mode in Microsoft Internet Explorer. The default value is IE=EmulateIE7 that sets the Browser Mode in Microsoft Internet Explorer to IE7 Compatibility View and the Document Mode toQuirks .
    If you are supporting IE9 standards mode, use IE=Edge. Remember that ALL applications in your portal need to support this!
    3) See if the problem is the document mode. When you open the SAP UI5 application, press F12 and change the browser mode to Standards.

  • Displaying ABAP transaction In Enterprise Portal

    Dear all,
    We are having one Z-reports in CRM 4.0 .which we want to display in EP portal.
    Is it possible??
    What type of changes needed from ABAP  and EP side.
    with regards,
    Rajesh C

    Hi,
    to achieve this functionality first we have to create a SAP transaction ivew and for then to let this iview communicate with R3 you have to create a system which can do this task. Please look at the below blog.
    Create SAP Transaction iView using SAPGUI for Windows
    and
    Pass Parameter to ITS URL Upadated 21st June 2008
    Regards,
    Srinivas

  • Call and display Xcelsius SWF file from an SAP Transaction

    Hello Experts ,
                          Could you please suggest if it is possible to Call and display Xcelsius SWF file
    from an SAP Transaction and if Yes how can this be achieved.
    Regards ,
    Jerin.

    Jerin,
    It is possible to embed a Xcelsius model into an SAP WebTemplate (Anil promised to write a blog about this very soon). After that you can include the WebTemplate in the GUI menu, Role menu or Portal.
    Henk.

  • Is it possible to display the transaction in display mode in portal?

    Hi All,
    I have created one transaction iview in portal say for eg: SE38. 
    i want to display this transaction in portal only in display mode so that users cannot edit/modify.
    I checked with giving "Read" permission in portl to that iview.  even though the user is able to change.
    is this possible for the particular transaction to display only in display mode not as editable mode in portal?
    Thanks,
    vijaya.

    Hi Vijaya,
    Ask your basis team to create two user on R/3 system
    1st with edit permission to that Tcode eg - SE38
    2nd with only view permission to that tcode eg - SE38
    Now will doing, user mapping in user administrator in portal
    set 1st userid /password to whom u have to give edit permission  for that Tcode and set 2nd userid /password to portal user whom u want to just have read access for that tcode...
    Hope this solves ur problem...
    Please reward Points if helpfull.
    Thanks
    Gunja

Maybe you are looking for

  • Disable Check box in tabular form

    Hi, I am working on apex4.1. I have created a tabular form.There is 2 columns Approve and Cancel. if I tick on cancel check box then Approve check box column should disable and vice versa. How can i do this ? Thanks & Regards Vedant

  • Problem with X11 apps, startx fails

    If I try to start X11 (via xterm or any X app for that matter) startx fails and gets stuck in this loop of trying to restart itself, from the looks of it. The output from startx on the console looks like this and just repeats forever: 4/1/10 10:50:17

  • Import video from DVD (VOB files)?

    What is the recommended way to import DVD (non-commercial/non-encrypted) footage into Final Cut Pro X? I have some clips on a DVD that I need to include in my project. I don't want to transcode and I've read using streamclip is the way to go but requ

  • How to take value from one table to another table?

    Hi, My requirement is,I have two tables those are Document and Transaction both having one common column "Docseriescode" in Document table already having different records with "Docseriescode". when i am going  to transaction table for adding records

  • Debugging my Web Service Request

    Hi, I am trying to use standard WS tools (like soapUI) to consume the CW14 WS. The first operation I call is Authentication – login. I get a good response ("true") and a "set cookie" back in the soap header. I am using this cookie in every Request th