How many UI Components aviable in UWL ?

Hi Gurus,
As far i Know there are two UI components available to launch the work items in UWL .
which is SAP GUI for HTML(Default)
              Webdynopro
               Weppages(Not sure ,Please confirm this as well).
And give me the list of other UI components used to launch the work items in UWL view?
Thanks in Advance,
Dharani

Hi Dharani,
There is this iView property 'Technique for starting SAP GUI for Windows'
This is used to Specify the method for starting SAP GUI for Windows.
1) empty=automatic detection;
2) Structured Storage Document=inplace (only available for Microsoft Internet Explorer);
3) SAP Shortcut File=always starts in an external window.
If you choose the first option, the workitem will be launched in the browser itself.
If you choose the third option, the workitem will open in SAP GUI.
Hope this is what you were looking for.
Regards,
Gaurav.

Similar Messages

  • How many UI components available in UWL ?

    Hi Gurus,
    As far i Know there are two UI components available to launch the work items in UWL .
    which is SAP GUI for HTML(Default)
                  Webdynopro
                   Weppages(Not sure ,Please confirm this as well).
    And give me the list of other UI components used to launch the work items in UWL view?
    Thanks in Advance,
    Dharani

    Hi Dharani,
    There is this iView property 'Technique for starting SAP GUI for Windows'
    This is used to Specify the method for starting SAP GUI for Windows.
    1) empty=automatic detection;
    2) Structured Storage Document=inplace (only available for Microsoft Internet Explorer);
    3) SAP Shortcut File=always starts in an external window.
    If you choose the first option, the workitem will be launched in the browser itself.
    If you choose the third option, the workitem will open in SAP GUI.
    Hope this is what you were looking for.
    Regards,
    Gaurav.

  • How many UI components are available in UWL?

    Hi Gurus,
    As far i Know there are two UI components available to launch the work items in UWL .
    which is SAP GUI for HTML(Default)
                  Webdynopro
                   Weppages(Not sure ,Please confirm this as well).
    And give me the list of other UI components used to launch the work items in UWL view?
    Thanks in Advance,
    Dharani

    cross post.close the thread
    Koti Reddy

  • How many software components can create maintenance requests/notifications? So far, I count three...

    These are all in EA-PLM
    ILM_UI 'Basic Maintenance Processing: User Interface'
    RPLM_QIMT 'Quality Inspector and Maintenance Technician Roles'
    EAM_SIMPL'Simplification Project in Enterprise Asset Management'
    I can find portal business packages for iViews, but I'm looking for the Web Dynpro ABAP applications. Are there any more?
    Thanks!

    Wow! Thank you guys for the quick response and pointing me in the right direction!
    Altenbach, your example does exactly what I need! 
    Moving forward I should be able to reference the actual total torque number from the call by reference subvi and have the event structure initiate based on the change of that number correct?
    I tried something like this already and for some reason when I add a terminal to the terminal pane on the subvi it does not show up on the main vi. I can only imagine this is because the sub vi is "call by reference". The subvi already outputs an indicator to the front panel of the main vi called "total torque". This is inside a case structure so I don't know how to reference it for the subvi which you created.
    Again, I just want to say I am very thankful I am for the help. I am not here looking for free programming help. I am here asking questions because I truly want to learn. I know I will have to spend a lot more time reading tutorials and practicing basics. This program was just given to me last minute and I'm doing my best. Usually I am very resourceful and can find solutions on my own. This one was just over my head. Thank you.
      -Sean-
    Attachments:
    Impact Tester Main_03.vi ‏245 KB
    ITS_Data Graphs.vi ‏567 KB

  • How many components in Java

    Hi, this is just a simple theory question. Is there one out there could tell me the answer. How many components are there in Java ?
    Thanks,
    choongteck

    grins
    As many as are derived from the Component-Class plus 1 (for the Component-Class itself)?
    Would you like to know the total number of classes or the number of instances of the classes? :)
    greetings Marsian

  • On how many hosts we can scale out system components (horizantally) in OBIE

    On how many hosts we can scale out system components (horizantally) in OBIEE 11g, Heard that its around 16.. is there any doc i can refer to ?
    ~Srix

    On how many hosts we can scale out system components (horizantally) in OBIEE 11g, Heard that its around 16.. is there any doc i can refer to ?
    ~Srix

  • How many images per sec can I get from ImageIO.read(url) ??????

    Hello,
    In my program I read images from a url...I'm wondering how many images I can get with ImageIO.read(url) per second..
    Hereby is the code that I'm using:
    import java.awt.*; //Contains all of the classes for creating user interfaces and for painting graphics and images
    import java.awt.event.*;//Provides interfaces and classes for dealing with different types of events fired by AWT components
    import java.awt.image.*;//Provides classes for creating and modifying images
    import java.io.*;//Provides for system input and output through data streams, serialization and the file system
    import java.net.URL;
    import javax.imageio.*;//The main package of the Java Image I/O API.
    import javax.swing.*;//Provides a set of "lightweight" (all-Java language) components that, to the maximum degree possible, work the same on all platforms.
    import java.text.*;
    import java.text.SimpleDateFormat;
    import java.util.Date;
    public class getPic extends Component{
    private BufferedImage img;
        static int n=0;
        private URL url;
        private DateFormat dateFormat;
        private Date date;
        private String s;
        private String str1= ".jpeg";
        private String str2="C:\\Users\\";
        private String str3;
        private String str4;
          public getPic() {
         try {
                  url = new URL("http://"); //a url that gives a real-time image
                  img = ImageIO.read(url);
                } catch (IOException e) {
               System.err.println("Unable to read file");
    public void savePic(){
    try{
    n++;
    str3=str2.concat(Integer.toString(n-1));
                        str4=str3.concat(str1);
                        ImageIO.write(img, "jpeg" , new File(str4));
                    } catch(IOException e) {
                      System.err.println("Unable to output results");
    @Override
        public Dimension getPreferredSize() {
            if (img == null) {
               return new Dimension(100,100);
            } else {
               return new Dimension(img.getWidth(), img.getHeight());
        @Override
          public void paint(Graphics g) {  //http://java.sun.com/j2se/1.4.2/docs/api/java/awt/Paint.html
            g.drawImage(img, 10, 10, null);//http://java.sun.com/j2se/1.4.2/docs/api/java/awt/Graphics.html
        public static void main(String[] args) throws IOException {
           JFrame f = new JFrame(" Image without processing!!");
           f.addWindowListener(new WindowAdapter(){//http://java.sun.com/j2se/1.4.2/docs/api/java/awt/event/WindowListener.html
                @Override
                    public void windowClosing(WindowEvent e) {
                        System.exit(0);
        int i=0;
        for( ; ; ){
            i++;
            getPic pi = new getPic();
            pi.savePic();
            f.add(pi);
            f.pack();  //Causes this Window to be sized to fit the preferred size and layouts of its subcomponents.
            f.setVisible(true);
         try
            Thread.sleep(1000);
            }catch (InterruptedException ie)
            System.out.println(ie.getMessage());
    }Thank you in advance for your answers
    Joan

    Finally I solved my problem(getting as many images as possible from a url infinitely) using the above code:
    import java.net.*;
    import java.io.*;
    public class UserApplication {
        private static int n=0;
        String url;
      public void UserApplication(){
        public static void main(String[] args) throws Exception {
            UserApplication app= new UserApplication();
            for(;;){
            app.urlStr();
        private void urlStr(){
            try{
                url= "http://mplamplampla/frame.php/";
                HttpURLConnection con=(HttpURLConnection) ((new URL(url).openConnection()));
                BufferedOutputStream out = new BufferedOutputStream( new FileOutputStream("C:\\Users\\mpla\\Desktop\\" + n + ".jpeg"));
                con.setDoInput(true);
                con.setDoOutput(false);
                con.setRequestMethod("GET");
                BufferedInputStream in = new BufferedInputStream(con.getInputStream());
                int bt = 0;
                byte[] buffer = new byte[4096];
                while ((bt = in.read(buffer, 0, 4096)) > -1) {
                  out.write(buffer, 0, bt);
                in.close();
                out.close();
                System.out.println("Image " + n + " saved");
                n++;
                } catch (Exception e) {e.printStackTrace();}
    }

  • Is it possible to see how many times a component has been used in our websites?

    Hi,
    we currently have 3 websites running and I don't know if a component we created is actually in use.
    Is there a way to find this out?
    Thanks,
    Giulio

    Hi kasq,
    thanks for your quick answer...I tried
    path=/apps/mywebsite/components/scrollable/html.jsp
    and the result was
    XPath query
    /jcr:root/apps/upc-cablecom-ch/components/scrollable/html.jsp//*
    Filtering predicates
    Results
    Number of hits: 1
    Time: 0.16 seconds
    /apps/mywebsite/components/scrollable/html.jsp/jcr:content  (html,  json)
    So how do I have to read it? I see 1 number of hits, that I assume it's how many times it's used from other files...but how do I actually see how many times it's used on all our pages?
    Sorry for this newbie question, but only now I'm getting deeper in CQ5
    Thanks,
    G

  • How many cooling fans are in 13" MacBook Pro retina?

    I just got a late 2013 13" MacBook Pro with retina display and I'm wondering how many cooling fans are in the machine. I've noticed when I use iTunes to play music/movies or use the iTunes visualizer, it gets hot. I've seen the videos on the retinas and I've notived that the 15" model  has two and I can't find any videos or pictures indicating whether the 13" has one or two. I know that the openings on the side are to bring in air and then pushes it out where the screen and the keyboard meet. I notice a lot of hot air coming out more towards the right of the machine than the left. I had a mid 2012 non-retina Pro but I had it replaced as it had too many issues and I know when I used it, it didn't get as hot when I did this stuff. I'm just making sure in case it's an issue, even thought I got this new MacBook on Monday 6/9/14. I'm also guessing it heats up faster since its a smaller machine and the components are a lot closer. And I understand that playing games or doing something that requires a lot of processing or graphics power will cause the machine to heat up since it's requiring so much from the machine. Like I said, I want to avoid having issues with this one. My last MacBook had three logic boards, two hard drives, hard drive cable, hard drive bracket, and clam shell replaced in less than a year of purchase in September 2013. When the hard drive crashed last week for no apparent reason last week, I took it to Apple on Monday this week and they finally made the choice to replace it completely and I upgraded to a retina just by paying the difference.

    This is my mac's info. I got it as a gift from australia. Initial 3 months it gave me a superb service, but recently it's having a major overheating issue,it shoots up up to 87 degrees. Is it possible that any other components are damaged somehow? Usually the temperature shoots up while I play online streamings.

  • My itunes will not open no matter how many times i try! It says its due to a problem. what do i do?

    My itunes will not open no matter how many times i try! It says its due to a problem. what do i do?

    When you gte requests to locate iTunes.msi like this, the Microsoft Installer Cleanup utility usually fixes it.
    Here is a method for removal, clean up and reinstall of iTunes.
    == uninstall with cleanup ==
    Download a fresh copy of iTunes and the stand alone version of Quicktime (the one without iTunes)
    http://www.apple.com/quicktime/download/win.html
    http://www.apple.com/itunes/download/
    Save the files on your PC.
    Download and install Microsoft Installer cleanup utility, there are instructions on the page as well as the download. Note that what you download is the installer not the program – you have to run it to install the program. The installer doesn't give any message to confirm the installation.
    http://support.microsoft.com/kb/290301/
    (To run the program – All Programs>>Windows Install)
    Now use the following method to remove iTunes and its components:
    XP
    http://support.apple.com/kb/HT1925
    Vista
    http://support.apple.com/kb/HT1923
    *If you hit a problem with one of the uninstalls don't worry*, carry on with the deleting of files and folders as directed in the method.
    When you get to deleting Quicktime files in the system32 folder as advised in the method, you can delete any file or folder with Quicktime in the name.
    Restart your PC.
    Run the Microsoft Installer Cleanup Utility. (Start > All Programs > Windows Install Clean Up)
    Remove any references you find to the programs you removed - strictly speaking you only need to worry about those programs where the uninstall failed.
    If you don’t see an entry for one of the programs that did not uninstall, look out for blank entries or numeric entries that look like version numbers e.g. 7.x for Quicktime or 1.x for Bonjour.
    restart your PC
    Install the stand alone Quicktime and check that it works.
    If it does, install iTunes.
    ===

  • My Mozilla 3.6.10 won't open no matter how many times I click it

    My Mozilla 3.6.10 won't open no matter how many times I click it.. Its soo frustrating!!!It always states this ;
    A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete.
    Script: file:///C:/Program%20Files/Mozilla%20Firefox/components/nsExtensionManager.js:2309
    What's wrong with my Mozillla? Help!!!!
    I've tried re-installing and installing it back, but failed =(

    You should still have the older version of Firefox (the beta installs alongside the older version). Check under add/remove programs. If you do, just locate the .exe in program files under Mozilla, and create a shortcut.

  • How many classes should a .java file contain?

    Are there any general guidelines on how many Java classes should be contained in a single .java file? I've been creating a new .java file for each class I write but see examples in Sun's Java tutorial where there are at least two classes in a single .java file. One such case is the TableDemo example at
    http://java.sun.com/docs/books/tutorial/uiswing/components/example-swing/TableDemo.java
    Thanks.

    The example you point to isn't really more the one class in one java file. It makes use of an inner class. An inner class is something different! As far as I understand it, it is mainly used to implement some behaviour (in this case AbstractTableModel behaviour). If the MyTableModel was in a separate class file, it couldn't access the variable of the main TableDemo class. So they use an inner class.
    So unless you need inner classes, this example is no reason to put more than one class in a .java file. In general, just put one class in a .java file. It's easier for everybody.

  • How many servers do I need?

    Hi,
    We are planning to go live with Service Manager.
    So far we shall go with following line up:
    SM Management Server - 1 server
    DW Management Server - 1 server
    Database/DW Database - 1 server
    Total: 3 servers
    What remains is:
    Sharepoint (services/server)
    Service Manager Portal
    The question is:
    How many more servers do we need?
    I read that SM Portal must not be installed on SM Management Server. Is it true? If yes, why?
    Where should I install Sharepoint Services?
    Can I install Sharepoint Services and SM Portal on the same server?
    Can I install Sharepoint Services and SM Portal on any of the above mentioned three servers?
    Thanks for your advice.
    Les

    Hi,
    It depends on your load but you could start with one additional server and install both the SharePoint and the Service Manager SSP components, and if needed, adding more servers in the future.
    Previously it was possible to install the SSP on the mgmt. server but not recommended, nowdays it shouldn't even be possible to do so.
    Regards
    //Anders
    Anders Asp | Lumagate | www.lumagate.com | Sweden | My blog: www.scsm.se

  • How many JComboBox in my panel?

    Hi,
    I'm writing a simple JPanel which contains three JComboBox, one for the day, one for the month and one for the year. It works fine and the constructor is the following:
    public class DatePanel extends JPanel implements ItemListener{
         * The combobox for the day.
        protected JComboBox comboDay = null;
         * The combobox for the month.
        protected JComboBox comboMonth = null;
         * The year.
        protected JComboBox comboYear = null;
         * A flag that indicates if the user has manually changed the date.
        protected boolean dateHasChanged = false;
         * Creates and set up each component of this panel.
        protected void setUpGUI(){
         // get the current date
         Calendar today = Calendar.getInstance();
         // create the components
         this.comboDay = new JComboBox();
         for(int i=1; i<=31; i++)
             this.comboDay.addItem(i);
         this.comboMonth = new JComboBox();
         for(int i=1; i<=12; i++)
             this.comboMonth.addItem(i);
         this.comboYear = new JComboBox();
         int currentYear = today.get(Calendar.YEAR);
         for( int i= (currentYear - 60); i< (currentYear + 5); i++)
             this.comboYear.addItem(i);
         // add the null values
         this.comboDay.addItem("--");
         this.comboMonth.addItem("--");
         this.comboYear.addItem("--");
         this.comboDay.setSelectedItem("--");
         this.comboMonth.setSelectedItem("--");
         this.comboYear.setSelectedItem("--");
         // add the listener
         this.comboDay.addItemListener(this);
         this.comboMonth.addItemListener(this);
         this.comboYear.addItemListener(this);
         // display components
         this.setLayout( new FlowLayout() );
         this.add(this.comboDay);
         this.add(this.comboMonth);
         this.add(this.comboYear);
         * Builds a panel without initializing it with a specific date.
        public DatePanel(){
         super();
         this.setUpGUI();
        }then I've got a subclass of the above panel which adds two comboes, one for the hour and one for minute. This is also working fine, and I've got a flag that says if the above three comboes should appear or not in the panel:
    public class TimePanel extends DatePanel {
         * The comboHour selection combo box.
        protected JComboBox comboHour = null;
         * The comboMinute selection combo box.
        protected JComboBox comboMinute = null;
         * Builds the time panel with the specific comboboxes.
         * @param alsoDates true if also the dates should be visibles
        public TimePanel(boolean alsoDates){
         super();
         this.setUpGUI();
         // shuld the dates be available?
         if( ! alsoDates ){
             this.comboDay.setEnabled(false);
             this.comboMonth.setEnabled(false);
             this.comboYear.setEnabled(false);
             this.remove(this.comboDay);
             this.remove(this.comboMonth);
             this.remove(this.comboYear);
         * Sets up the components.
        @Override
        protected void setUpGUI() {
         super.setUpGUI();
         // add the time components
         this.comboHour = new JComboBox();
         for( int i=0; i<24; i++ )
             this.comboHour.addItem(i);
         this.comboHour.addItemListener(this);
         this.comboMinute = new JComboBox();
         for(int i=0; i<60; i++)
             this.comboMinute.addItem(i);
         this.comboMinute.addItemListener(this);
         this.add(new JLabel("hh:"));
         this.add(this.comboHour);
         this.add(new JLabel("mm:"));
         this.add(this.comboMinute);
        }As you can see, when I pass false to the constructor of the TimePanel, the comboes of the date panel are removed from the layout of the panel itself, thus showing only the hour and minute ones.
    Now I was writing a JUnit test for this, and surprisingly when I run a code like the following:
         TimePanel tp1 = timePanel = new TimePanel(false);
         Component[] components = tp1.getComponents();
         int comboCount = 0;
         // count how many jcombobox there are, since it has been initialized
         // with the time only, it should contain only 2 combobox (hour and minutes)
         for(int i=0;i<components.length; i++ )
             if( components[i] instanceof JComboBox )
              comboCount ++;I found that the number of comboes on my panel are 7[, that is more than the max (5) when all the components are displayed. What is wrong here?
    Thanks,
    Luca

    I found that the problem seems to be in the setUpGui method, that is called from the parent constructor and from the child constructor, thus displaying 7 comboes. But if I remove the call from the child constructor then it seems as the parent comboes are uninitialized and thus I got a nullpointer exception.
    If I modify the constructor of the TimePanel into this:
       public TimePanel(boolean alsoDates){
         this.setUpGUI();
         // shuld the dates be available?
         if( ! alsoDates ){
             this.comboDay.setEnabled(false);
             this.comboMonth.setEnabled(false);
             this.comboYear.setEnabled(false);
             this.remove(this.comboDay);
             this.remove(this.comboMonth);
             this.remove(this.comboYear);
        }and explicity call the super.setupgui into the setupgui method
      protected void setUpGUI() {
         super.setUpGUI();
         // add the time components
         this.comboHour = new JComboBox();
         for( int i=0; i<24; i++ )
             this.comboHour.addItem(i);
         this.comboHour.addItemListener(this);
         this.comboMinute = new JComboBox();
         for(int i=0; i<60; i++)
             this.comboMinute.addItem(i);
         this.comboMinute.addItemListener(this);
         this.add(new JLabel("hh:"));
         this.add(this.comboHour);
         this.add(new JLabel("mm:"));
         this.add(this.comboMinute);
        }I got that the hour and minute comboes are added twice, and moreover the day,month and year are not removed. What is the right way to call the setupgui method to do what I'd like?
    Luca

  • How many DB are in APPS ?

    Hi,
    Could anybody tell me how many database are in the APPs (11i) and what are the role of each ?
    Thanks,
    Paul

    As mentioned before, you need One Database to run Oracle EBS. For ORACLE_HOMEs, in Oracle Applications 11i we have 3 homes:
    1) /APPS/VISora/8.0.6, This is the forms (developer) home and owned by applmgr user. Whenever you need to upgrade the developer version which comes with Oracle Applications you refer to this HOME
    2) /APPS/VISora/iAS, This is Oracle application server home owned by applmgr user and contains the web components (i.e. Apache, Jserv .. etc)
    3) /APPS/VISdb/9.2.0, This is Oracle DB home owned by oracle user and contains the DB libraries and executable files.
    The below 2 directories cannot be considered as ORACLE_HOME(s).
    /APPS/VISappl --> This is the APPL_TOP: Contains Oracle Applications product files
    /APPS/VIScomn -> This is the COMMON_TOP: Contains (Java/HTML, logs, output, scripts) files
    And of course your database files go under /APPS/VISdata, which is not an ORACLE_HOME

Maybe you are looking for

  • I bought an IR receiver and an Apple Remote, and I can't get it to work. What am I doing wrong?

    I bought an IR receiver and an Apple Remote, and I can't get it to work. What am I doing wrong? The receiver is a Lenovo eHome OVU430006/01 USB IR Receiver.

  • SAPUI5 Application doesn't display in Portal Content Area

    Hallo Guys We are developing a SAPUI5 application that needs to be displayed inside the portal. The problem is that the SAPUI5 app doesn't display in in the content area, no erors, just a blank page, you have to set the iview to open in a seperate he

  • Help on passing value

    Hi all I want to pass a value from program A to program B. However it not working, please help if u see any mistake in the code below. Many thanks!!! do this and see. create 2 programs like this REPORT ztest_gopi. " ZTEST_GOPI PARAMETERS : p_c(3) TYP

  • Problem install 9i Enterprise Edition

    Hello I am installed Oracle 9i Enterprise Edition about Windows 2000 sp4. In the option 'configuration of database', i set Personality. In Database Creation step I get an error: Ora 01041 the hostdef extension does not exist and the error 0ra-24324,

  • Undo Tablespace Reuse

    Hi, I am using 10.2.0.3.0 on Oracle Solaris 5.10. I have an undo tablespace 'UNDOTBS1' which has 5 data files of sizes 60GB. Here are my undo parameters: SQL> show parameter undo NAME                                 TYPE        VALUE undo_management