Can't display a URL web applet in Double Column

I've created a URL web applet which displays in the Opportunities homepage. The problem is that the web applet do not displays in double Column, it is only displayed in single column, therefore I only see the half of the applet.
When I go to Administration/ Application Customization / Opportunities / Web Applets... and change from Single Column to Double and save, it still appears in single column. If I go back to edit the web applet it says : Single column. I don't get it, everytime I change from single to double, CRM OD does not save the changes.
Does anyone knows a solution?

hi,
i have the same problem. Did you solve it?. Please let me know...
regards,
MC

Similar Messages

  • Can we display a URL  in workitem text??

    Hi Gurus,
    Can we display a URL  in workitem text??
    I am giving http://www.yahoo.com  but it comes as a normal text.
    I have give a URL along with Workitem text, So once the approver will check the mail notification in workflow inbox, by clicking on the URL given he  can see the other details of that order. Those information can help him out in taking decision.
    Thanks & Regards,
    Manoj Tiwari

    Hi Jocelyn,
    Here users will use the business workplace to see the new workitems, and thats why we want to see the URL there itself.
    I have checked SCOT and i can see following node.
    FAX Telefax
    INT Internet
           SMTP
    X40 X.400
    RML Remote Ma
    PAG
    PRT
    I could not find RAW Node.Please correct me if i am wrong.
    I have gone through the documentation of report  <b>RSWUWFML2</b>  and it says "The report sends notifications for work items by e-mail to SAP users who have an Internet e-mail address.  This enables users who do not normally use the Business Workplace to be informed about new work items." But we dont want to send the workitem to email address, we want to send it to Business workplace inbox.
    I think i was not able to explain you the correct requirement, i am explaining you once again, we will not use any internet email address to notify about the new work item, we will only use business workplace of sap to check or to see new workitem received, and we want url with hyperlink there only.
    Grtz.
    Thanks & Regards,
    Manoj Tiwari

  • Webdynpro application can't display a URL iView in a new External window

    Fellow developer:
    In my WD4A application, I called the method 'navigate_absolute' to display a URL iView in a new External window.
    The code is as follows:
    data lo_portal_manager type ref to if_wd_portal_integration.
    call method lo_portal_manager->navigate_absolute
    exporting
      navigation_target = 'ROLES://u2026'
      navigation_mode = '1'.            ('0' - Displayed in the Same Window, " '1' - Displayed in a new External Window)
    The application can display the iView in the same Window (navigation_mode = '0'), but cannot in a new External window (navigation_mode = '1').
    In the iView properties, the following attributes are set to:
    1. Launch in New Window - Dipslay in Separate Window
    2. Open iView Links in New Window - Yes
    If you know the answer, please advise.
    Thanks
    Bac Quan

    hi,
    i have the same problem. Did you solve it?. Please let me know...
    regards,
    MC

  • Cisco ip communicator 2.1 can't display idle url?

    dear sir,
    You got any idea with the subject mentioned? It can only display the idle url for only 1 laptop with the same version of ip communicator but not the rest?
    thanks.

    dear sir,
    You got any idea with the subject mentioned? It can only display the idle url for only 1 laptop with the same version of ip communicator but not the rest?
    thanks.

  • How can I display the data in table in separate column?

    I have a vi reading data one by one in the same column.
    How can I display the data with separate column?
    like this:
    data 1 | read | read
    data 2 | read | read
    data 3 | read | read
    (would you mind if I will ask for an example
    because it is much easier for me to work
    with an example)
    THANK YOU.

    If you're reading your data in as a 1D array, this is as simple as using the Reshape Array to make a 2D array. I've attached an example in LabVIEW 6.1 format. The example rearranges a single column of data fill several columns horizontally, but you can easily modify this code to fill the columns downward instead.
    Attachments:
    Data_Column_Example.vi ‏18 KB

  • How can I display the URL bar and bookmarks bar when I have the addons page opened?

    It seems counter-intuitive to me that the Firefox addons page does not have the same toolbars that other tabs have, and I have not found an option to add them back in (or an addon to fix it). Instead of being able to enter a URL directly from the addons page or click a bookmark, I must navigate away from the tab before I can go anywhere else. Additionally, it graphically looks out of place when I shift through tabs and most of the toolbars disappear for a second as I move over the addons tab.
    Some other utilities that use their own pages manage to preserve the toolbar customization without removing it completely, so I'm wondering if there's a way for the addons page to do it as well.
    An example of another utility that has its own page without removing the toolbars is the Download Manager Tweak addon. One of its options allows the user to open their download page as a tab, which also contains the toolbar customization of normal, browser tabs.
    Thanks in advance!

    Just for reference:
    The solution to press a hotkey to move the text focus to a hidden navigation item (e.g. the URL bar or the search bar) was only a temporary fix, and only worked for Ctrl+K (search bar, maybe ctrl+E too but I didn't test it).
    The problem didn't really bug me all too much until tonight, so I installed the Stylish script from the StackOverflow link above and the problem is solved now.

  • How can I display a DB in Applet

    Hi,
    I have a very hard problem with this code, he work in JBuilder, but not in IE.
    Thank you in advance
    Sam
    package adrswingappletprj;
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    import javax.swing.*;
    import java.sql.*;
    public class ADRSwingApplet extends JApplet {
    boolean isStandalone = false;
    JPanel JP_Principal;
    JPanel JP_Fonction, JP_Affichage;
    JButton BT_Quitter, BT_Plus;
    JLabel JL_Error;
    JLabel JL_Nom, JL_Prenom, JL_Rue, JL_CP, JL_Ville, JL_Tel, JL_Fax, JL_Mobile, JL_Email;
    JTextField JTF_Nom, JTF_Prenom, JTF_Rue, JTF_CP, JTF_Ville, JTF_Tel, JTF_Fax, JTF_Mobile, JTF_Email;
    //--> Objets pour se connecter sur la DB
    Connection connection = null;
    Statement statement = null;
    StringBuffer MaRequete;
    ResultSet rs;
    /**Initialiser l'applet*/
    public void init() {
    try {
    jbInit();
    catch(Exception e) {
    e.printStackTrace();
    /**Initialiser le composant*/
    private void jbInit() throws Exception {
    //--> Top_Level_Container
    JP_Principal = (JPanel) this.getContentPane();
    JP_Principal.setLayout(new BorderLayout());
    //--> Les deux JPanel + JL_Error
    JP_Fonction = new JPanel();
    JP_Affichage = new JPanel();
    JP_Principal.add(JP_Fonction, BorderLayout.NORTH);
    JP_Principal.add(JP_Affichage, BorderLayout.CENTER);
    JL_Error = new JLabel(" ");
    Font F = new Font("Comic Sans MS", Font.ITALIC, 9);
    JL_Error.setFont(F);
    JL_Error.setForeground(Color.red);
    JP_Principal.add(JL_Error, BorderLayout.SOUTH);
    //--> Le contenu JP_Fonction
    JP_Fonction.setLayout(new FlowLayout());
    //--> BT_Plus
    BT_Plus = new JButton(" + ");
    BT_Plus.setBackground(Color.pink);
    BT_Plus.setToolTipText("Afficher le record suivant");
    BT_Plus.addActionListener(new ActionListener(){
    public void actionPerformed(ActionEvent e){
    Affiche_Next_Record();
    //--> BT_Quitter
    BT_Quitter = new JButton("Quitter");
    BT_Quitter.setBackground(Color.orange);
    BT_Quitter.setToolTipText("Cliquez ici pour Quitter");
    BT_Quitter.addActionListener(new ActionListener(){
    public void actionPerformed(ActionEvent e){
    System.exit(0);
    JP_Fonction.add(BT_Plus);
    JP_Fonction.add(BT_Quitter);
    //--> Le contenu JP_Affichage
    JP_Affichage.setLayout(new GridLayout(9, 2));
    //--> Les JLabel et //--> Les JTextField
    JL_Nom = new JLabel("Nom"); JTF_Nom = new JTextField();
    JP_Affichage.add(JL_Nom);
    JP_Affichage.add(JTF_Nom);
    JL_Prenom = new JLabel("Prenom"); JTF_Prenom = new JTextField();
    JP_Affichage.add(JL_Prenom);
    JP_Affichage.add(JTF_Prenom);
    JL_Rue = new JLabel("Rue"); JTF_Rue = new JTextField();
    JP_Affichage.add(JL_Rue);
    JP_Affichage.add(JTF_Rue);
    JL_CP = new JLabel("CP"); JTF_CP = new JTextField();
    JP_Affichage.add(JL_CP);
    JP_Affichage.add(JTF_CP);
    JL_Ville = new JLabel("Ville"); JTF_Ville = new JTextField();
    JP_Affichage.add(JL_Ville);
    JP_Affichage.add(JTF_Ville);
    JL_Tel = new JLabel("Tel"); JTF_Tel = new JTextField();
    JP_Affichage.add(JL_Tel);
    JP_Affichage.add(JTF_Tel);
    JL_Fax = new JLabel("Fax"); JTF_Fax = new JTextField();
    JP_Affichage.add(JL_Fax);
    JP_Affichage.add(JTF_Fax);
    JL_Mobile = new JLabel("Mobile"); JTF_Mobile = new JTextField();
    JP_Affichage.add(JL_Mobile);
    JP_Affichage.add(JTF_Mobile);
    JL_Email = new JLabel("Email"); JTF_Email = new JTextField();
    JP_Affichage.add(JL_Email);
    JP_Affichage.add(JTF_Email);
    Connect();
    //--> Config Fenetre
    this.setSize(400, 300);
    this.setVisible(true);
    /******************* Connection sur DB *****************************/
    private void Connect(){
    /********* Connection sur la DB avec SQL ************/
    try {
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    connection = DriverManager.getConnection("jdbc:odbc:JAVADB", "", "");
    statement = connection.createStatement();
    catch(ClassNotFoundException err){}
    catch(SQLException err){}
    /************ Requete SQL Select sur la table ADRESSE ******/
    try {
    MaRequete = new StringBuffer(256);
    MaRequete.append("Select * from ADRESSE");
    rs = statement.executeQuery(MaRequete.toString());
    if (rs.next()) {
    JTF_Nom.setText(rs.getString(1));
    JTF_Prenom.setText(rs.getString(2));
    JTF_Rue.setText(rs.getString(3));
    JTF_CP.setText(rs.getString(4));
    JTF_Ville.setText(rs.getString(5));
    JTF_Tel.setText(rs.getString(6));
    JTF_Fax.setText(rs.getString(7));
    JTF_Mobile.setText(rs.getString(8));
    JTF_Email.setText(rs.getString(9));
    catch(SQLException err){}
    public void Affiche_Next_Record(){
    try {
    if (rs.next()) {
    JTF_Nom.setText(rs.getString(1));
    JTF_Prenom.setText(rs.getString(2));
    JTF_Rue.setText(rs.getString(3));
    JTF_CP.setText(rs.getString(4));
    JTF_Ville.setText(rs.getString(5));
    JTF_Tel.setText(rs.getString(6));
    JTF_Fax.setText(rs.getString(7));
    JTF_Mobile.setText(rs.getString(8));
    JTF_Email.setText(rs.getString(9));
    else {JL_Error.setText("Fin de la Table");}
    catch(SQLException err){}
    /**Obtenir les informations d'applet*/
    public String getAppletInfo() {
    return "Information applet";
    /**Obtenir les informations de param�tre*/
    public String[][] getParameterInfo() {
    return null;

    see if this works for you in IE
    http://www.geocities.com/rmlchan/dba.html

  • Can't display videos fromany web site.

    I can't get any video to play from any website; all I get is a black screen with no audio. I am using Firefox V: 3.6.12.
    Any assistance would be greatly appreciated.

    Make sure that you allow the plugin-container process in the firewall.
    See http://kb.mozillazine.org/Plugin-container_and_out-of-process_plugins
    You can start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem.
    * Don't make any changes on the Safe mode start window.
    See
    * [[Troubleshooting extensions and themes]]

  • How can I display sort icons of an af:table column permanently

    Hello all,
    I'm using JDEV 11.1.1.5. Is there a way using skinning or any other mean to make the sort icons of a column in a af:table to be displayed permanently and not only after a mouse over on the column title?

    Can you try with skinning?
    Check the forum post:
    Column Sort image display permanent
    Thanks,
    Navaneeth

  • How can i display a CheckBox in one of the column of ALV?

    Hi All,
    I want to dispaly a one  column  of CHECKBOXes in my ALV  Report.so i take attribute CHK_BOX TYPE CHECKBOX in the context.when i testing it doesn't showing any checkboxes.just i shows a ordinary column with name checkbox.
    How can i resolve it?
    Regards,
    Ravi

    Hi Ravi,
    Do the following to set any alv column as Check box .
    create an instance of ALV component
      DATA:
        lr_salv_wd_table_usage TYPE REF TO if_wd_component_usage,
        lr_column_settings     TYPE REF TO if_salv_wd_column_settings,
        lr_input_field         TYPE REF TO cl_salv_wd_uie_input_field,
        lr_chk_box             TYPE REF TO cl_salv_wd_uie_checkbox,
        lr_table_settings      TYPE REF TO if_salv_wd_table_settings,
        lr_salv_wd_table       TYPE REF TO iwci_salv_wd_table,
        lr_column              TYPE REF TO cl_salv_wd_column.
      lr_salv_wd_table_usage = wd_this->wd_cpuse_alv( ).
      IF lr_salv_wd_table_usage->has_active_component( ) IS INITIAL.
        lr_salv_wd_table_usage->create_component( ).
      ENDIF.
      lr_salv_wd_table = wd_this->wd_cpifc_alv( ).
      wd_this->alv_config_table = lr_salv_wd_table->get_model( ).
      lr_table_settings ?= wd_this->alv_config_table.
    * Set ALV as editable
      lr_table_settings->set_read_only( abap_false ).
    * Get Column reference
      CALL METHOD wd_this->alv_config_table->if_salv_wd_column_settings~get_column
        EXPORTING
          id    = 'CURR_ISO'
        RECEIVING
          value = lr_column.
    * Create a checkboc
      CREATE OBJECT lr_chk_box
        EXPORTING
          checked_fieldname = 'CURR_ISO'.
    * Set the cell editor type to the check box.
      CALL METHOD lr_column->set_cell_editor
        EXPORTING
          value = lr_chk_box.
    and to set the check box as editable, do the following.
    lr_table~IF_SALV_WD_TABLE_SETTINGS~SET_READ_ONLY( abap_false ).
    Hope this helps.
    Regards,
    Sravan Varagani

  • Can't enlarge photos on web page by double-clicking

    Pleaase go to the following page on my web site:
    http://web.mac.com/htopoff/iWeb/Site/SpecialEvents.html
    Double-Click on the photo of Pluto to enlarge it, and you will see instead, a photo of a baby. That baby photo was the default photo inside the frame when I first created the page. When I dragged my Pluto photo (from iPhoto) onto the frame, it replaced the baby picture. But when I publish the page and someone double-clicks to enlarge the photo, the default baby photo reappears.The same thing happens with my other photo of a nebula. This is not a problem if I insert photos into pages that do not have default photo frames. Does any one know why this happens?

    It might have something to do with the fact that there is so much other stuff on this photo template page. I'm wondering if some of the content impinges somehow on the functionality of the template. I guess your pluto and nebula images didn't get uploaded for some reason. The slideshow is missing the thumbnail photos as well.

  • URL and applet

    How can i open an url with applet and view the data it has?
    thank you for help

    /*    <applet code="AppletRead" width="400" height="300"></applet>
    *    use >appletviewer AppletRead.java
    import java.awt.*;
    import java.io.*;
    import java.net.*;
    import javax.swing.*;
    public class AppletRead extends JApplet {
      static boolean isApplet = true;
      public void init() {
        String file = "AppletRead.java";
        String address;
        if(isApplet)
          address = getCodeBase() + file;
        else
          address = "file:" +
                     System.getProperty("user.dir") +
                     System.getProperty("file.separator") +
                     file;
        JEditorPane editorPane = new JEditorPane();
        try {
          URL url = new URL(address);                  // either of these two
    //      URL url = getClass().getResource(file);    // methods works okay
          System.out.println("url = " + url);
          editorPane.setPage(url);
        catch(MalformedURLException murle) {
          System.out.println(murle.getMessage());
        catch(IOException ioe) {
          System.out.println(ioe.getMessage());
        getContentPane().add(new JScrollPane(editorPane));
      public static void main(String[] args) {
        JFrame f = new JFrame();
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        JApplet applet = new AppletRead();
        f.getContentPane().add(applet);
        f.setSize(400,300);
        f.setLocation(300,400);
        isApplet = false;
        applet.init();
        applet.start();
        f.setVisible(true);
    }

  • How can I display some OrdImages using a Applet in html or Jsp?

    hi
    I want to use a applet to display some images retrieved from intermedia OrdImage Object.
    Now ,I know that a applet can display some image objects or some images with their own filepaths. But we can get ordimag objects from Oracle database.And we can image data or image properties by ordimage java mathod. It is in html/Jsp environment. So how can I transform from ordimage to applet?? I appreciate someone who can help me!
    Bill

    Do you mean applet or Servlet?
    An Applet is java code that is downloaded over the web and runs in a web browser environment. Is this what you are doing?
    I suspect you are really talking about servlet/JSP environments, and the ability to include images from the database in a web page.
    In either case (applet or servlet), you want to be able to access images via a URL. For a Servlet/JSP/web page, this URL will be specified in a HTML <IMG> tag with a key as a parameter to the image you wish to view. Images are not in-line downloaded in a web page. They are access after the HTML is loaded, and are accessed with URLs, sometimes relative URLs rather than fully specified URLs.
    To deliver images to the web from the database using the PL/SQL gateway and iAS, where the procedures are generated by a wizard, see:
    http://otn.oracle.com/software/products/intermedia/htdocs/descriptions/imedia_code_wizard.html
    You can create a simple servlet (JSPs can not deliver binary data) that delivers database images using java classes. See:
    http://otn.oracle.com/software/products/intermedia/htdocs/descriptions/servlets_jsp.html
    http://otn.oracle.com/sample_code/products/intermedia/htdocs/intermedia_servlet_jsp_samples/imedia_servlet_jsp_readme.htm
    for a sample.

  • Can Spry display another web page within a detail region?

    I currently have a non-Spry enabled site I would like to add
    Spry to. Basically, it is a story/photo web site and I have
    separate pages created already for each photo "event" that includes
    text, pictures, etc. Right now I have a menu with all of the
    stories that the users clicks on and it takes them to that
    particular story. I also use templates to control a common look and
    feel and header, but basically, one web page per story (they are
    all similar, but varying # of pictures, paragraphs, etc.). It works
    fine, but it does reload the web page for every story.
    So, what I would like to do is have one region defined where
    I have a sorted list of "stories" with dates and brief descriptions
    and when a user clicks on one of the stories I would like it to
    display the web page I have already created in another
    region....kind of like message preview in Outlook. Anyway, I know
    it is easy enough to create an XML data set that defines the title
    of the story, date, etc., and I could even include a relative link
    of the actual web page story in the data set to define where the
    web page is. I guess my main question is, how would I display an
    entire web page inside the detail div "region"? I know if you just
    had a simple picture, it would look something like this: <img
    src="images/{@path}"><br/>Name:{@path}, but what tag could
    you use to pull in an entire web page to preview inside the detail
    div region?
    Thanks in advance!

    Well I don't know if this is exactly what you're looking for, but you can have a browser window pop up from an event in an applet. If you use something like:
    getAppletContext().showDocument(new URL(theUrl), "_blank");
    a new browser window will pop up with whatever URL you want.
    Hope that helps a little.
    -Sheepy.

  • Can't display web page

    Created a Web application with no problem
    Created root site collection and a site under the root with no problem
    Open the sub site and did some work on the site.
    Went to get back in and am now getting  "  The page can be displayed"
    Same with root
    Created another subcollection site with no problem but getting same error.
    All other sites in the farm are working.  
    I have rebooted everything, Sharepoint, IIS .
    Any ideas are appreciated.  
    Dave Kozlowski

    Hi Dave,
    Make sure you have the correct URL, goes without saying, but have to mention it, sorry.
    Look in inetmgr and make sure that IIS web sites are turned on, not sure why they would be off, but stranger things can happen.
    If you have publishing infrastructure turned on for this site:
    insure that the portalsuperuser and portalsuperreader accounts are domain based and not accidentally local.
    Here's a post on how to set those accounts up up
    http://anothersharepointblog.blogspot.com/2013/12/setting-up-your-farm-for-optimal.html
    take a look at <siteUrl>/_layouts/changesitemasterpage.aspx and select a master page that exists (this only works if publishing infrastructure is enabled in your site and site collection)
    or, possibly check in your site recycle bin  <siteUrl>/_layouts/Recyclebin.aspx for the missing pages, in which case this is post is not the answer.
    Stacy Anothersharepointblog.blogspot.com

Maybe you are looking for

  • How do I move the window when the top of the Organizer window is out of reach on a Mac?

    I saw a similar question posted on the forum for a user with a PC.  I'm using dual monitors.  I've already tried going back to one monitor with now luck.  I'm using Mac OS X 10.7.4 - at some point while using the organizer, the top of the window went

  • Some strange after create a new database

    Hi All, I try to create a new database on the Win 2000 ORA8I server (existing have 1 db already), after using the DBCA create it, I try to connect to new DB, but I found that all the control file are point to the old db's. I've check that there are 2

  • Add new field in standard transaction

    Could ou please tell me that can we add material field in standard transaction VF04 selection criteria. if yes then how? regards, Amar

  • BAPI for create material master (SAP version 40b)

    Hi, Anyone know BAPI for create material master for SAP version 40b? There's no BAPI_MATERIAL_SAVEDATA. I try to use BAPI_MATERIAL_MAINTAINDATA_RT, but seems that BAPI only for retail. Kindly advice! Thanks, Victor.

  • Why is my mac behaving differently?

    Help!! Im a fairly new switcher and have been delighted with my Mac mini. However, recently I have encountered 2 annoying problems. I have been unable to download anything including email attachments - I get the error message "cannot create file". Th