Views not shown in browser

In BSP 'ZCRM_BSP_CP' we make use of a tree with nodes showing a business partner (organization), its departments and contact persons.
The tree is shown as expected, meaning that the organization is shown at the highest level, the nodes underneath are related to the departments and within the departments the contact persons are shown.
On selecting the contact person, the detailed data of that employee should be shown at the right-hand side of the screen. However, although the view is called, no output is shown in the browser.
Everything works fine in production, but this problem occured in development since we have implemented SIE-ADDON (CRMIS until SP04) and SUPPORT PACKAGES BASIS 620 56 and ABA 620 56.
Does anybody know what causes this strange behavior?
Regards,
Henry

Hi,
if the click is unresponsive/ not doing anything, then i suspect your db user has insufficient rights (i.e. try dbowner instead)
if you trace the client tool, then you would get more information in the logs as to the root cause.
please search www.service.sap.com/xsearch  for 'how to trace Universe Designer XI3.1" 
regards,
H

Similar Messages

  • Version name is not shown in browser, Aperture 3. I had it, but by accident I removed it.

    Version name is not shown in browser, Aperture 3. I had it, but by accident I removed it.
    I could not find the solution in Aperture Help.
    What is the command / option that makes the version name visible in the browser?
    Best regards,
    b adrian

    View->Metadata Display will show all the oprions and shortcuts.
    Metadata display is very rich in Aperture and appears in a lot of different areas of the display. Getting familiar with it all will make your Aperture experience a lot more rewarding.
    See Working with Metadata in the manual.

  • Modified versions from external editor are not shown in browser, why?

    After I modify an image in Silver Efex and save it , the image is not shown in it's modified form in the browser. When I open the image it shows as modified.

    Remember when you return an image from an external editor/plugin the returned image is made into a new master. Are you sure you're looking at the correct image in Aperture?
    If that's not it post back describing the exact steps you are taking from sending the image to the plugin until you're back in Aperture.
    regards

  • App tabs not shown after browser closes and reopens

    Greetings.
    I tryed to use the new App Tabs future, i pinned some tabs, but after i close the browser and reopen it, the tabs not shown.
    I tryed it with only 1 tab and multiple, but it's the same.
    Anyone have an answer or it's allready a bug?
    Thank you.

    App tabs are only restored if you restore the session. [[Options window - General panel#w_startup]] 'Show my windows and tabs from last time' will always restore your tabs and app tabs.
    Using the history menu item and then 'Restore previous session' or set about:home as your home page and it will have a button to restore your previous session. Will also work.

  • Help! Table not shown in browser!!!!!!

    I never had this problem. The JTable is not shown at all!!! The JTable is embedded in an applet. I had similar program done (posted the code here) for another dataset and it works perfectly well. I'm suspecting the renderers. Here is the relevant code if anyone can please help me sort this mystery out.
    if (k==0) /* sysname column */
                    renderer=new DefaultTableCellRenderer();
                    JComboBox combo= new JComboBox(sys_names);
                    combo.setRequestFocusEnabled(false);
                    combo.setBackground(Color.yellow);
                    combo.setEditable(false);
                    combo.getEditor().getEditorComponent().setBackground(Color.blue)
                    editor=new DefaultCellEditor(combo);
            } else if (k==1) /* sys-ecp-dcs*/
                    renderer=new DefaultTableCellRenderer();
                    editor=new DefaultCellEditor(combo);
                   JComboBox combo= new JComboBox(sys_ecp_dcs_list);
                    combo.setRequestFocusEnabled(false);
                    combo.setBackground(Color.yellow);
                    combo.setEditable(false);
                    combo.getEditor().getEditorComponent().setBackground(Color.blue);       
        } else {
                     renderer = new cbhtol_TextAreaCellRenderer ();  // NEW
                    editor = new cbhtol_TextAreaCellEditor (this,m_table, m_data);
            TableColumn column = new TableColumn (k,
                                                  cbhtol_TrunkReportData.m_columns[k].m_width,
                                                  renderer, editor);
            column.setHeaderRenderer(createDefaultRenderer());
            m_table.addColumn (column); And the renderers:
    protected TableCellRenderer createDefaultRenderer() {
        DefaultTableCellRenderer label = new DefaultTableCellRenderer()
            public Component getTableCellRendererComponent(JTable table, Object valu
    e, boolean isSelected, boolean hasFocus, int row, int column) {
              if (table != null) {
                JTableHeader header = table.getTableHeader();
                if (header != null) {
                  //setForeground(header.getForeground());
                  setForeground(Color.white);
                  Color bg=new Color(200,100,30);
                  //setBackground(header.getBackground());
                  setBackground(bg);
                  setFont(header.getFont());
              setText((value == null) ? "" : value.toString()) ;
               setBorder(UIManager.getBorder("TableHeader.cellBorder"));
              return this;
        label.setHorizontalAlignment(JLabel.CENTER);
        return label;
      } //table cell renderer
    class cbhtol_TextAreaCellRenderer extends JTextArea implements TableCellRenderer
      protected static Border m_noFocusBorder    =    new
      EmptyBorder (1,                1,              1,              1);
      protected static    Border    m_focusBorder =
      UIManager.getBorder("Table.focusCellHighlightBorder");
      public
      cbhtol_TextAreaCellRenderer
        setEditable
          (false);
        setLineWrap
          (true);
        setWrapStyleWord
          (true);
        setBorder
          (m_noFocusBorder);
      public Component
      getTableCellRendererComponent
      (JTable table,
       Object value,
       boolean
       isSelected,
       boolean
       hasFocus,
       int nRow, int nCol)
        Color fg=new Color(255,0,0);
               setForeground(Color.green);
        if (value     instanceof      String)
    setText ((String) value);
        else if (value instanceof Integer)
          setText((String)value.toString());
        setBackground
          (isSelected && !hasFocus ?         table.getSelectionBackground() : table.
    getBackground ());
             setFont (table.getFont ());
        setBorder (hasFocus ? m_focusBorder : m_noFocusBorder);
          causes looping and stops rendering the components surrounding
          the cells
          int rowHeight =     getPreferredSize().height;
        if (table.getRowHeight(nRow) <  rowHeight)
        table.setRowHeight (nRow,  rowHeight);
             return this;}
      // To fix JDK bug
      public String getToolTipText (MouseEvent event)
        return null;
    } //class text area cell renderer
    public Component
      getTableCellRendererComponent
      (JTable table,
       Object value,
       boolean
       isSelected,
       boolean
       hasFocus,
       int nRow, int nCol)
        Color fg=new Color(255,0,0);
        //ColorData cvalue = new ColorData(value);
        if (table.getModel().getValueAt(nRow, 11).toString().trim().equals("Lucent")
          setForeground(fg);
        else if (table.getModel().getValueAt(nRow, 11).toString().trim().equals("Nor
    tel"))
          setForeground(Color.blue);
        else
          setForeground(Color.green);
        setBackground
    (isSelected && !hasFocus ?         table.getSelectionBackground() : table.
    getBackground ());
        //setForeground (isSelected && !hasFocus ?
        //   table.getSelectionForeground() : table.getForeground ());
        setFont (table.getFont ());
        //setBorder (hasFocus ? m_focusBorder : m_noFocusBorder);
        int rowHeight =     getPreferredSize().height;
        if (table.getRowHeight(nRow) <  rowHeight)
          table.setRowHeight (nRow,  rowHeight);
        return this;
      public String getToolTipText (MouseEvent event)
        return null;
    } //class ComboCellRendererPLZ HELP!

    Nothing wrong with the renderers! Silly coding mistake!!

  • SWF Banner works in Live View not in Any Browser? Losing my mind...

    Hello,
    I'm not a pro but have some web building experience. I'm currently building a website for myself in Dreamweaver CS5. I made a simple flash banner where pictures fade in and out. I placed it into my template and it works fine in Live View but not in Chrome, Firefox or IE.
    It has gotten to the point where I am losing my mind.
    I create a new HTML doc. Drag and drop ANY swf file. Saved Swf files as flash 8 and flash 9 even. Updated my flash last night for my browsers. Again... See it fine in Live View and not in the browsers i've mentioned.
    The browsers (except chrome which displays nothing) show this message.
    Content on this page requires a newer version of Adobe Flash Player.
    Even after flash updates and using a swf file saved as an older veriosn of flash (tried 9,8 and 5 for a laugh).
    Here is the html code (all generated by Dreamweaver). I am totally baffled and have spent HOURS scrying the internet to no avail. I even tried this in a trial version of Dreamweaver CS6 but had the same reslut. Please help me. What's going on?
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <script src="/Scripts/swfobject_modified.js" type="text/javascript"></script>
    </head>
    <body>
    <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="860" height="300">
      <param name="movie" value="/homeBanner8.swf" />
      <param name="quality" value="high" />
      <param name="wmode" value="opaque" />
      <param name="swfversion" value="8.0.35.0" />
      <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
      <param name="expressinstall" value="/Scripts/expressInstall.swf" />
      <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
      <!--[if !IE]>-->
      <object type="application/x-shockwave-flash" data="/homeBanner8.swf" width="860" height="300">
        <!--<![endif]-->
        <param name="quality" value="high" />
        <param name="wmode" value="opaque" />
        <param name="swfversion" value="8.0.35.0" />
        <param name="expressinstall" value="/Scripts/expressInstall.swf" />
        <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
        <div>
          <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
          <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
        </div>
        <!--[if !IE]>-->
      </object>
      <!--<![endif]-->
    </object>
    <script type="text/javascript">
    swfobject.registerObject("FlashID");
    </script>
    </body>
    </html>

    SWF (Flash) animations won't work in iPhone, iPad, iTouch, Android or any other web device that lacks support for Flash.  Do yourself & your site visitors a favor.  Use jQuery instead of Flash.
    jQuery Cycle2
    http://www.malsup.com/jquery/cycle2/
    jQuery Wow Slider
    http://wowslider.com/
    jQuery Nivo Slider
    http://dev7studios.com/nivo-slider/
    Nancy O.

  • DB Connection Tables & Views not shown in 9.0.3 for 3rd Pty JDBC

    I am running JDeveloper 9.0.3 under Windows 2000.
    I have configured the 3rd party JDBC libraries under jdev.conf.
    Under connections, database connection, I am able to connect to the database and it does show me the three schema owner names in that database. I am signed on as one of those schema names.
    However, when I attempt to drill-down to the tables and views under those schemas, nothing is shown.
    Under 9.0.2, I was only able to see the schema of the userid I used to sign-on to the database, but I was able to drill-down to the tables and views and use them in generating UML diagrams and such.
    Any help would be appreciated.

    Robert,
    We changed the handling of schemas and catalogs between 9.0.2 and 9.0.3. The purpose of the change was to correct some problems with specific JDBC drivers where the old way was not working. While we tried to test with as many drivers as possible, it seems likely that we inadvertantly introduced an incompatability with your driver. If you can provide me with a few more details, I can try to isolate the problem and hopefully find a resolution.
    First of all, when you created the connection, did you use uppercase, or lowercase. And does the case you use match the case we display in the navigator?
    Second, if you run the code I've enclosed at the bottom of this message (replacing the values in <> with the appropriate values), do you get tables back? What is the value that is printed out for the catalog. If you are seeing a difference in case between the connection definition and the schema node in the navigator, can you try both cases?
    The enclosed code is basically the query we use to get the list of tables. However, we are doing some work internally with the catalog and schema, and see what the raw query returns should point me in the correct direction.
    - John McGinnis
    Oracle JDeveloper Team
    package mypackage1;
    import java.sql.*;
    public class Class1
    public static void main( String[] args )
    try
    DriverManager.registerDriver( ( Driver ) Class.forName( "<your driver>" ).newInstance() );
    Connection conn = DriverManager.getConnection( "<your url>", "<user>", "<password>" );
    DatabaseMetaData dmd = conn.getMetaData();
    String catalog = conn.getCatalog();
    System.out.println( "Catalog = " + catalog );
    ResultSet rs = dmd.getTables( catalog, "<user>", "%", new String[] { "TABLE" } );
    int i = 0;
    while ( rs.next() )
    System.out.println( "Table " + i++ + ": " + rs.getString( 3 ) );
    catch ( SQLException ex )
    System.err.println( ex.getLocalizedMessage() );
    catch ( Exception ex )
    ex.printStackTrace();
    }

  • Custom icons 'unclickable' in icon view & not shown in coverflow

    Hi,
    I just got off the line with Apple support, who couldn't solve my problem and then just told me that Leopard didn't support what I was doeing and thus that it was not there problem. Very un-apple if you ask me...
    Here's the problem:
    I create custom icons for my movies by pasting images (Jpeg's or what have you) onto the icon in the 'Get info' window of a file. This works fine, however when I view the files in icon view I can't select the file by clicking on the icon, only by clicking on the text below. Strangly enough this problem dissapears when I edit the icon size in the 'View options' to a size equal too or smaller then 116x116. At this point I can select the file without any problem.
    The same sort of happens in coverflow. Here I can't see the icon in coverflow if the icons are fairly large. Once I reduce the size of the coverflow bar too the point where the icons are very small the custom icons reappear.
    The make the matter even more strange this problem only occurs with files where I created a custom icon for since I had Leopard installed. All custon icons created under 10.4 work fine.
    This indicates too me that Leopard has problem with handeling the resolution of icons.
    Note also that Leopard stores icon images in different sizes. Try copying an icon image from the 'Get info' window, then launch Preview, then select 'File' and 'New from Clipboard'. You will see that there are multiple images here.
    Anybody know how to solve this?

    Getting the same stupid behavior here!
    I had a lot of customized Tiger folder icons but now i've got no good tools for customizing these new huge Leopard ones.
    I began using *Icon Composer* from the developer tools after doing the graphics in Photoshop, then using IconDroplet to get them into a form where i can copy and paste them between *Get Info* windows. What a pain.
    Now i discover this bit where they're not clickable once i replace them! I didn't know about the behaviors when making them big in *Cover Flow* and small in Icon view until i read this.
    I've been snooping around but i haven't found what needs to be tweaked where to allow them to behave properly.
    !http://img228.imageshack.us/img228/5186/scottdartve1.png!

  • Swing - Design View not shown correctly

    I am using swing Layout Managers to design a JFrame. The problem is that the design view does not show correctly how the components are laid out. But when I run the application, the components are placed properly as expected. Why can't then jdeveloper show the components properly in the design view.
    regards,
    nirvan.

    Just bouncing this one, in case it has eluded expericened eyes.

  • Time Capsule/Machine access (not shown in "Browse")

    I'm on a MacBook Air in Mavericks, but also have two other older MacBooks (10.8.6) and an older Air (also 10.8.6). I recently added a Time Capsule and set up all four Macs to back-up onto it, but I can only access the backed-up files from the Mac that created them. I now need to get at the back-ups from a crashed hard drive of the older Air, but only the Mac I'm using shows up in "Browse" mode. Help?

    I can only access the backed-up files from the Mac that created them
    This is normal and expected.
    Try Migration Assistant on your Mac if you want to transfer files from the backups of another Mac.
    Macintosh HD > Applications > Utilities > Migration Assistant

  • Artists not shown in the "Artists view" on iTunes 11

    On iTunes 11, in the "Artists view", the artists list on the left is only based on the album artists.
    The problem is that the artists themselves are not shown in this list if for example a track is tagged with different "Artist" and "Album artist".
    How to fix this ?

    Go to the Songs view, enable the Column Browser from the menu if needed, then adjust the settings of :
    View > Column Browser > Use Album Artists and
    View > Column Browser > Group Compilations
    to suit your needs. For some more thoughts on iTunes organization see Grouping tracks into albums.
    tt2

  • Problem with Css styles not showing in live view or when i browse

    I am using Mac osx 10.6 and building website with Dreamweaver CS5.  Sometimes div tags i create not showing styles or rendering in live view or when I browse but  showing in design view. I looked in dreamwever faq and they talk about not showing in design view to toggle the display styles. That is not the problem becuase it is check marked and I tried turning off and turning on and made no difference.I am using firefox browser.
    It happened before the other day too. But all of my other pages in this site that i have created the same way building with div tags and css styles. So not sure what the problem is. Maybe someone has a suggestion here.
    Johanna

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Portfolio</title>
    <style type="text/css"></style>
    <link href="css/jbstyles.css" rel="stylesheet" type="text/css" />
    <style type="text/css"></style>
    </head>
    <body>
    <div id="wrapper">
      <div id="mainnav">
        <div id="navbar">
          <ul>
            <li><a href="index.html"><br />
            </a></li>
    <li>
              <ul>
                <li><a href="index.html">          Home</a><a href="about.html">About</a></li>
                <li><a href="portfolio.html">Portfolio</a><a href="contact.html">Contact</a></li>
              </ul>
            </li>
          </ul>
      </div>
        <div id="contentinside">
          <div id="navbar2">
            <ul>
              <li><a href="design.html">Design</a></li>
              <li><a href="multimedia.html">Multimedia</a></li>
              <li><a href="webdesign.html">Web Design</a></li>
            </ul>
          </div>
          <div id="mm1thumb">Content for  id "mm1thumb" Goes Here</div>
          <div id="mm2thumb">Content for  id "mm2thumb" Goes Here</div>
        </div>
        <img src="images/multimsidebar.gif" width="212" height="615" alt="mmsdbr" longdesc="http://multimsidebar" />
      <div id="footer">
        <p> </p>
        <p>Johanna Bresnahan</p>
        <p>Web &amp; Graphic Design - http://www.johannabresnahan.com</p>
        <p> email: [email protected] ....phone....857•991•5717<br />
      </p>
    </div>
    </div>
    <!--end wrapper--></div>
    </body>
    </html> 
    Here is the html code above. not sure how to attach my file so get a visual. This is the first time I have used this forum.
    Johanna

  • Appointment Details are not shown in Outlook 2013 Calendar Schedule View

    In Outlook 2013 Calendar one has got five standard views to view appointments and meetings:
    Day, Work Week, Week, Month and Schedule view.
    When hovering with the mouse over an appointment the details are shown in Day, Work Week, Week and Month view but
    not in Schedule view.
    Is there any configuration setting to turn this feature on in Schedule view?
    Remarks:
    - In Outlook 2010 this problem does not occur.
    - Within the scheduling assistant, the details are shown in Outlook 2013 when hovering with the mouse.

    Hi,
    I tested on my Outlook 2013 and got the same result. When hovering over an appointment, the details are shown in Day, Work Week, Week, Month, but it's not shown in Schedule View.
    I haven't found such a setting to change this, it seems to be a product limitation so far.
    Regards,
    Melon Chen
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • "Search for" results not shown in list view

    Hello,
    I just installed Leopard a few days ago, and so far I'm very happy.
    The ony oddity I noticed today was that "Search for" results (the default searches in the pane on the left side) are not shown in list view.
    What happens is this:
    - I open a finder window in list view.
    - I click e.g. on "Search for" - "All documents".
    - The status bar on the bottom of the finder window says e.g. "1789 objects", but the actual window is empty (although it has a very long scrollbar). If I click somewhere in the empty space, info for an actual file is shown - as if the files were there, just shown in white letters on white background. I can also type in the search field, and the status bar updates accordingly, but again, no files show up.
    Icon and Coverflow views, however, do work.
    - If I switch from Icon to List view, a file list is shown for the fraction of a second, then disappears.
    This is not an end-of-the-world-bug for me, but still pretty annoying.
    Any idea what might be the problem here? I have no exotic software installed that could cause trouble; just QuickSilver and the usual productivity apps.
    Thanks!

    The problem disappeared a few launches later . ..

  • When I open TB, under "Accounts", it only shows the option "Create a new account". Option: "View settings for this account" is NOT shown.

    When I open TB, I no longer see any information about the TB account I've used for years. Instead, the main menu shows only "Accounts" -- "Create a new account - Email, Chat, Newsgroups, Feeds". Option: "View settings for this account" is NOT shown.
    Also the main menu does NOT show "Email - Read messages, Write a New Message" or "Advanced features", etc..
    The actual emails pertaining to the TB account I've used for years are still present under the "Users --> xxxxyyyy --> AppData --> Roaming --> Thunderbird' folder.

    http://kb.mozillazine.org/Recovering_a_profile_that_suddenly_disappeared

Maybe you are looking for