Make gui screen feel like web on portal

Hi all:
    I hear there is some technique that can make Gui screen like Web on Portal , could you please tell me how ?
thank you very much
Edited by: jingying Sony on Apr 29, 2010 10:28 AM

Hi,
If i am not wrong , the think wich you are looking is called as SAP WEBGUI ( SAP INTERGRATED ITS )
Refer the below lnik for how to activate and use integrated ITS.
http://wiki.sdn.sap.com/wiki/display/EP/12ITSWebGUI-Activation(BackEnd)
http://help.sap.com/saphelp_NW70EHP1core/helpdata/en/3d/b5f9c2ea65c242957ee504ca4a37a9/content.htm
www.arlati.ch/knowhow/archive/Integrated_ITS_WebGui.pdf
Thanks
Anil

Similar Messages

  • In ESS we are getting SAP GUI screens instead of web screens??

    Hi,
    How the problem has come up---
    We have transferred the production data and OS into test server and changed the test server IP address to production IP address after shutting down the production server.
    Which means that now ITS/ESS will be pointing to the new copied server. After this when this new server was shutdown and old production was started the ESS/ITS points back to the original production server.
    Now the problem is that When we execute any transaction from ESS we are getting SAP GUI screen instead of Web screen.
    Can somebody tell me why this is happening.
    Any pointers to this will be highly appreciated.
    Thanks and Regards,
    Varun

    First off...what version are you on (backend)? Also, how did you "switch" your ITS instance?A little more info and we will solve this for ya. =)

  • Iphone 4 screen feels like screen protector

    Hey ive had a problem since a buyed my iphone 4.. when i use it i feel like the glass/sreen react like a iphone with screen protector..
    Any idea why? when i use one of my friends iphone 4 they feel much faster to react, and smoother when sliding.
    i have no screen protector, have updated it and still the same?

    Yes.. ive had it in 6 months now .. its very strange, then i most say its not as bad as having screen protector but still annoying when i try somebody others iphone and feel it much fast to react

  • HDMI makes the screen look like a snow storm

    I got my Mac Pro before the Retina screen. When i plug in the HDMI to the screen it looks like a snow storm and the I see a picture and then back to the snow. I tried with another Mac Pro and it worked fine. The picture ws there as it should. Does this have anything to do with my software? Is it a hardware mistake? What can i do to fix it?

    Hi there,
    I would recommend taking a look at some of the troubleshooting steps found in the article below.
    Apple computers: Troubleshooting issues with video on internal or external displays
    http://support.apple.com/kb/ht1573
    -Griff W.

  • How to make GUI components feel the state of other objects?

    I need my JButtons in any place of GUI be enabled or disabled depend on states of several objects or events generated by some other objects. Would you recommend the common approach of how it can be implemented in Swing?

    Sorry for the delay, but the job that pay my bills is keeping me very busy today (taking a short break to reply to you) :)
    Yes, the observers observable pattern is a good way to decouple this (but it could be overkill if you only want to update the status of one button). You will need to have references to the button variable so you can enable it / disable it from another place. For example, let's say you have an Class that extends the Observable and performs your heavy processing on a separate thread (Please not than I don't use generics here, just trying to quickly show you how you may want to do this):
    import java.util.Observable;
    public class TaskMan extends Observable {
        private List comp; 
        public void TaskMan (final List aComp) {
            comp = aComp; // Keep track of the components you want to to toggle on / off
        public void notifyObservers(Object arg) {
                setChanged(true);
                super.notifyObservers(arg);
        public void doIt() {
            new Thread (new Runnable() {
                 public void run() {
                         notifyObservers(comp); // Dissable
                         // Your long consumming task here
                        notifyObservers(comp); // Enable
    }Then you have the Observer class that enable / dissable the buttons and other components:
    import java.util.Observer;
    import java.awt.Component;
    public class MyObserver implements Observer {
         public void update(Object observable, Object arg) {
                 if (! (arg instanceof List)) {
                     return;
                 List list = (List) arg;
                 for (Object elem: list) {
                        Component comp = (Component) elem;
                        EventQueue.invokeLater(new Runnable() {
                               public void run() {
                                     comp.setEnabled(! comp.isEnabled());
    }And finally your main class, where you create and put together your GUI, register your observers and you call your long time consuming job
    import java.util.*;
    public class MyApp {
        public static void main(String [] args) throws Exception {
                  List comps = new ArrayList();
                  JButton aBtn = new JButton("Hey dude!");
                  comps.add(aBtn);
                  TaskMan task = new TaskMan(comps);
                  task.addObserver(new MyObserver());
                  task.doIt();
    }Looks like you have several use cases there, maybe you want to try this approache first for some of them, adding more logic to the observer.
    Please reply back, let me know what you think.
    Regards,
    Jose.

  • The left side of my home button is screen is kinda feel like hollow when I tap it and it makes a sound too. It is bulge,a little. I thought every ipad is hard to touch but why mine is not? Help please,what should I do?

    The left side of my home button is screen is kinda feel like hollow when I tap it and it makes a sound too. It is bulge,a little. I thought every ipad is hard to touch but why mine is not? Help please,what should I do? Please I need your help.

    The damage has been done then
    Take it to Apple and pay for a replacement
    Here in the States a replacement cost $229
    Allan

  • SAP GUI screens in Web dynpro ABAP

    Is there an easy way to convert SAPU GUI screns like VA01 into webdynpro screens like the old way of doing with ITS?
    I don't want to use the SAP portal. I just want to use Webdynpro ABAP only.  Please share your thoughts.
    Thanks

    ITS is the only tool with automatic translation of SAPGUI screens.  Even if we autoconverted to Web Dynpro, you would end up with a Web Dynpro Screen that pretty much looks and feels like the old SAPGUI screen. There is a screen conversion wizard in Web Dynpro, but it isn't really recommended.  It only does partial conversion, the screen designs aren't optimal (hence the WDA that looks like a dynpro) and the code of the component is messy.  You really need to redesign from scratch to take advantage of the features of Web Dynpro.

  • How do you Configure the "Screen Body" of the GUI to Display a Web Page?

    From the first screen in the GUI, I'd like to pull in a live web page to fill the right side of the screen (where the big SAP data graphic sits, next to the left hand navigation).  How is this done?  I've seen the University of Nebraska's GUI and they successfully pull in the front page of their SAP Support Site.  We'd like to do the same.
    Again, we simply want to have that frame of the GUI in teh Screen Body section to display a web page pointed at an absolute URL. Advice?
    Thank you!
    Lee Dudley
    Multnomah County, Oregon

    Hi lee,
    this link should be helpful
    [http://www.synactive.com/tutor_e/lessonv01.html]

  • How to make color screen in Web dynpro appl?

    How to make color screen in Web dynpro appl?

    Hi Gobi..
    <u><b>Go thorugh the follwing links</b></u>
    https://www.sdn.sap.com/sdn/collaboration.sdn?contenttype=url&content=https%3A//forums.sdn.sap.com/forum.jspa%3FforumID%3D52
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/business_packages/a1-8-4/nw04stack09themes.zip
    <u><b>Tutorial</b></u>
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/how%20to%20edit%20web%20dynpro%20themes.pdf
    <u><b>Setting the Theme</b></u>
    http://help.sap.com/saphelp_nw2004s/helpdata/en/1e/535d420447e054e10000000a155106/content.htm
    <u><b>Configuration</b></u>
    http://help.sap.com/saphelp_nw70/helpdata/en/43/8a1a8ece230c8ce10000000a11466f/content.htm
    Regards,
    GS
    Message was edited by:
            Sathishkumar GS
    Message was edited by:
            Sathishkumar GS

  • Why is the new IOS 7 screen making me feel like throwing up?

    The screen looks like it is floating on water somehow its making me want to puke. I go boating every weekend and I never get sick but this one managed to make me feel sick.
    Is there a way to change the screen??
    Thanks,
    Lynn

    You can select a different wallpaper and even turn off the dynamic motion.  If you google a bit, you can even find the wallpapers from iOS 6. 
    Use the iPhone.  All the answers are in your hand.

  • HT201406 Please help! I can power the device off but when i try to unlock the screen its like it cant feel my finger tracing over my unlock design, thus I cannot sign into itunes to download what i have before I possibly loose everything :(   My warranty

    Please help! I can power the device off but when i try to unlock the screen its like it cant feel my finger tracing over my unlock design, thus I cannot sign into itunes to download what i have before I possibly loose everything    My warranty is expired and I dont know if there is any other solution before I dump a bunch of money into this devise. ThaNK YOU!

    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup. See:                                 
    iOS: How to back up           
    - Restore to factory settings/new iOS device.
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
      Apple Retail Store - Genius Bar

  • I have a white iPhone 4 16gb and the home button doesn't sit flush with my screen, it feels like it has sunk down a little. Warranty expires June 2012 so it is under warranty, Would i be illegible for a replacement? Thanks

    I have a white iPhone 4 16gb and the home button doesn't sit flush with my screen, it feels like it has sunk down a little. Warranty expires June 2012 so it is under warranty, Would i be illegible for a replacement? Thanks

    No way really for anyone here to give you an answer to that question.  You would need to either send it to Apple for evaluation, or take it into the genius bar at a nearby Apple Store and ask them about it.  Only an Apple employee could make the call, and they would need to see and handle it to decide.

  • Can I make 10.10 look and feel like 10.6 ?

    Hi ... I upgraded my late iMac mini 2009 (2.53Mhz) to 10.10 .
    First, contrary to some posters on these boards, I would not recommend, 10.10 runs very slow .... you are much better off in an older OS (I would love to go back to 10.6)
    Some advantages of 10.10 is that your machine is up to date with the world (where 10.6 is losing support in the real world).
    My biggest gripe with 10.10 : is I can't find things, can't move things ... the finder window is useless ; the machine search in the middle of screen annoys me and limits information and options.
    Is there any way I can make 10.10 feel and look more like 10.6 ?
    thx

    You can set  SystemPreferences->Accessability->Displays to "increase contrast": check this one and then slide the contrast slider to the left completely.
    There was a little app that recersed the scroll direction in the SnowLeopard period for people who did not want the scroll direction of Lion and later: you can try it https://pilotmoon.com/scrollreverser/
    But it will still be very different from SnowLeopard.
    Otherwise you can go back to SnowLeopard if your mac was built in the (Snow)Leopard time, like Pete suggests.

  • How can someone use a stolen iphone? does erasing the phone (which I feel like I should do) make it easier for the thief to use the iphone?  If I don't erase it, it doesn't seem like anyone should be able to use the phone because of my password.

    how can someone use a stolen iphone? does erasing the phone (which I feel like I should do) make it easier for the thief to use the iphone?  If I don't erase it, it doesn't seem like anyone should be able to use the phone because of my password. Also, is it possible to retrieve anything that has been sent to the phone (i.e. text messages) since it was stolen through icloud? The "find my iphone" app says the device is offline but it rings when I call my number -- any idea how that would be the case? Thanks!!

    You have a password, so good move on your part.  Whether you erase it or the thief does, they still get to use the iPhone as theirs.  Which is more important (pick one), protecting your data or punishing the thief?
    Ringing occurs at the carrier.  Chances are you're going to voicemail after only two or three rings.  If you have an iCloud backup also a good move.  Re-read my question in the first paragraph.

  • The screen resolution in 1920x1200 dropped on my MacBook Pro 17". Seems like I have not the same pixels. There are also vertical, thin lines on the screen. Makes the screen look milky. Anybody knows what's going on and how to fix it?

    The screen resolution in 1920x1200 dropped on my MacBook Pro 17". Seems like I have not the same pixels. There are also vertical, thin lines on the screen. Makes the screen look milky. Anybody knows what's going on and how to fix it?

    Take it to an Apple Store or other service provider for testing.

Maybe you are looking for